/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header-home {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-animada {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff0066, #ff3399, #ff66cc);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Menu do usuário */
.user-menu {
    position: relative;
    cursor: pointer;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-name:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-dropdown a.active {
    background: rgba(255, 0, 102, 0.2);
    color: #ff0066;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn.destaque {
    background: linear-gradient(45deg, #ff0066, #ff3399);
    color: white;
    border-color: transparent;
}

.btn.destaque:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 102, 0.3);
}

.btn.secundario {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn.secundario:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn.danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border-color: transparent;
}

.btn.danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

.btn.grande {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Main content */
main {
    margin-top: 80px;
}

/* Cadastro Premium */
.cadastro-premium-hero {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(255, 51, 153, 0.1));
    text-align: center;
    padding: 4rem 2rem;
}

.cadastro-premium-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cadastro-premium-descricao {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.premium-preview {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.premium-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    text-align: center;
}

.premium-header {
    margin-bottom: 1.5rem;
}

.premium-header i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.premium-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
}

.premium-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0066;
}

.price-period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.premium-benefits {
    list-style: none;
    text-align: left;
}

.premium-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.premium-benefits i {
    color: #ff0066;
    font-size: 0.8rem;
}

.cadastro-form-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 2rem;
}

.cadastro-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-card > p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2rem;
}

.error-message {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cadastro-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff0066;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-actions {
    margin-top: 1rem;
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-link p {
    color: rgba(255, 255, 255, 0.7);
}

.login-link a {
    color: #ff0066;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 0, 102, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.gradient-text {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff0066, #ff3399, #ff66cc);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

.descricao {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-hearts {
    position: absolute;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-hearts i {
    font-size: 2rem;
    color: #ff0066;
    margin: 0.5rem;
    opacity: 0.7;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Seções gerais */
section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff0066, #ff3399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Painel do Usuário */
.painel-hero {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(255, 51, 153, 0.1));
    text-align: center;
    padding: 4rem 2rem;
}

.painel-content {
    max-width: 800px;
    margin: 0 auto;
}

.painel-descricao {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.painel-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 150px;
}

.stat-item.premium {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.stat-item i {
    font-size: 2.5rem;
    color: #ff0066;
    margin-bottom: 1rem;
}

.stat-item.premium i {
    color: #ffd700;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.painel-actions {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
}

.actions-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.casais-grid {
    background: rgba(255, 255, 255, 0.02);
}

.casais-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.casal-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.casal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 102, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.casal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.casal-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.casal-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.casal-url {
    margin-bottom: 1.5rem;
}

.casal-url label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.url-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
}

.url-display span {
    flex: 1;
    color: #ffffff;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.casal-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.casal-actions .btn {
    flex: 1;
    min-width: 120px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.empty-state h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.upgrade-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.upgrade-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.upgrade-info h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.upgrade-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.upgrade-benefits {
    list-style: none;
}

.upgrade-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upgrade-benefits i {
    color: #ffd700;
}

.upgrade-action {
    text-align: center;
}

/* Como funciona */
.como-funciona {
    background: rgba(255, 255, 255, 0.02);
}

.passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.passo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.passo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 102, 0.3);
}

.passo-icon {
    font-size: 2.5rem;
    color: #ff0066;
    margin-bottom: 1rem;
}

.passo-numero {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff0066, #ff3399);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.passo-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.passo-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Recursos */
.recursos {
    background: rgba(255, 255, 255, 0.02);
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recurso-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 102, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.recurso-card i {
    font-size: 3rem;
    color: #ff0066;
    margin-bottom: 1rem;
}

.recurso-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.recurso-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Preço */
.preco {
    background: rgba(255, 255, 255, 0.02);
}

.preco-container {
    max-width: 500px;
    margin: 0 auto;
}

.preco-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.preco-header {
    margin-bottom: 2rem;
}

.preco-header h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.preco-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.valor {
    font-size: 3rem;
    font-weight: bold;
    color: #ff0066;
}

.periodo {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.preco-descricao {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.preco-beneficios {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.preco-beneficios li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preco-beneficios i {
    color: #ff0066;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
}

/* Depoimentos */
.depoimentos {
    background: rgba(255, 255, 255, 0.02);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.depoimento-texto {
    margin-bottom: 1.5rem;
    position: relative;
}

.depoimento-texto i {
    color: #ff0066;
    font-size: 2rem;
    opacity: 0.5;
    position: absolute;
    top: -10px;
    left: -10px;
}

.depoimento-texto p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    padding-left: 2rem;
}

.depoimento-autor {
    text-align: right;
}

.depoimento-autor strong {
    color: #ffffff;
    display: block;
}

.depoimento-autor span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Estatísticas */
.estatisticas {
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card i {
    font-size: 3rem;
    color: #ff0066;
    margin-bottom: 1rem;
}

.stat-numero {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-descricao {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(255, 51, 153, 0.1));
    text-align: center;
    padding: 5rem 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer-home {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff0066;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-animada {
        font-size: 1.5rem;
    }
    
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .descricao {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-hearts {
        top: 10%;
        right: 5%;
    }
    
    .floating-hearts i {
        font-size: 1.5rem;
    }
    
    .passos {
        grid-template-columns: 1fr;
    }
    
    .recursos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .user-dropdown {
        right: -50px;
    }
    
    .painel-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .casais-container {
        grid-template-columns: 1fr;
    }
    
    .upgrade-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .casal-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .casal-actions {
        flex-direction: column;
    }
    
    .premium-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .form-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gradient-text {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casal-card {
        padding: 1.5rem;
    }
    
    .url-display {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .premium-card {
        padding: 1.5rem;
    }
}

/* Seção de compra para usuários logados */
.comprar-premium-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(255, 51, 153, 0.1));
}

.comprar-premium-container {
    max-width: 600px;
    margin: 0 auto;
}

.comprar-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comprar-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff0066, #ff3399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comprar-header p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.comprar-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.comprar-actions .btn {
    min-width: 250px;
    justify-content: center;
}

@media (max-width: 768px) {
    .comprar-premium-section {
        padding: 2rem 1rem;
    }
    
    .comprar-card {
        padding: 2rem;
    }
    
    .comprar-header h2 {
        font-size: 2rem;
    }
    
    .comprar-actions .btn {
        min-width: 200px;
    }
}

/* Login Page */
.login-hero {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(255, 51, 153, 0.1));
    text-align: center;
    padding: 4rem 2rem;
}

.login-content {
    max-width: 1200px;
    margin: 0 auto;
}

.login-descricao {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.login-preview {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.login-header {
    margin-bottom: 1.5rem;
}

.login-header i {
    font-size: 3rem;
    color: #ff0066;
    margin-bottom: 1rem;
}

.login-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.login-form .form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-form .form-group input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #ff0066;
    background: rgba(255, 255, 255, 0.15);
}

.login-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-form .form-actions {
    margin-top: 1rem;
}

.login-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-links p {
    color: rgba(255, 255, 255, 0.7);
}

.login-links a {
    color: #ff0066;
    text-decoration: none;
    font-weight: 500;
}

.login-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-hero {
        padding: 2rem 1rem;
    }
    
    .login-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
}

/* Criar Casal Page */
.criar-casal-container {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(255, 51, 153, 0.1));
}

.criar-casal-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.criar-casal-card h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.criar-casal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Wizard styles */
.wizard-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

.wizard-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 500;
    flex: 0 0 auto;
    min-width: 140px;
    justify-content: center;
}

.wizard-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.wizard-tab.active {
    background: linear-gradient(45deg, #ff0066, #ff3399);
    color: #ffffff;
    border-color: #ff0066;
}

.wizard-tab i {
    font-size: 1rem;
}

/* Wizard steps */
.wizard-step {
    display: none !important;
}

.wizard-step.active {
    display: block !important;
}

/* Step content */
.step-content {
    margin-bottom: 2rem;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-content h3 i {
    color: #ff0066;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Form fields in wizard */
.wizard-step .form-group {
    margin-bottom: 1.5rem;
}

.wizard-step .form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wizard-step .form-group label i {
    color: #ff0066;
}

.wizard-step .form-group input,
.wizard-step .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wizard-step .form-group input:focus,
.wizard-step .form-group textarea:focus {
    outline: none;
    border-color: #ff0066;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.1);
}

.wizard-step .form-group input::placeholder,
.wizard-step .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.wizard-step .form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* Wizard navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-navigation .btn {
    min-width: 130px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.wizard-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
}

/* Dynamic builders */
.dynamic-builder {
    margin-top: 1.5rem;
}

.builder-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.builder-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.builder-card-header h4 {
    color: #ff0066;
    font-weight: 600;
    font-size: 1.1rem;
}

.builder-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.builder-item .form-group {
    margin-bottom: 1rem;
}

.builder-item .form-group:last-child {
    margin-bottom: 0;
}

.builder-item .btn-danger {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

/* Builder form fields */
.builder-item input,
.builder-item textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.builder-item input:focus,
.builder-item textarea:focus {
    outline: none;
    border-color: #ff0066;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(255, 0, 102, 0.1);
}

.builder-item input::placeholder,
.builder-item textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.builder-item textarea {
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.4;
}

/* Quiz specific styles */
.respostas-container {
    margin-top: 1rem;
}

.resposta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff0066;
}

/* Button variants */
.btn-primary {
    background: linear-gradient(45deg, #ff0066, #ff3399);
    color: #ffffff;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e6005c, #e6338a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-success {
    background: linear-gradient(45deg, #00ff7f, #7fff7f);
    color: #000000;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(45deg, #00e673, #73e673);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-danger {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    color: #ffffff;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: linear-gradient(45deg, #e63e4c, #e65f6d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

/* Footer */
.criar-casal-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* User dropdown fix */
.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Wizard header improvements */
.criar-casal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.criar-casal-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff0066, #ff3399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.criar-casal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .criar-casal-container {
        padding: 1rem;
    }
    
    .criar-casal-card {
        padding: 1.5rem;
    }
    
    .criar-casal-header h1 {
        font-size: 2rem;
    }
    
    .wizard-tabs {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .wizard-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .wizard-navigation .btn {
        width: 100%;
        justify-content: center;
    }
    
    .resposta-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .builder-item .btn-danger {
        position: static;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .criar-casal-card {
        padding: 1rem;
    }
    
    .criar-casal-header h1 {
        font-size: 1.75rem;
    }
    
    .wizard-tab {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .wizard-tab i {
        display: none;
    }
}

/* File input and preview styles */
.file-input {
    width: 100%;
    padding: 15px;
    border: 2px dashed rgba(255, 0, 102, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-input:hover {
    border-color: rgba(255, 0, 102, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.file-input:focus {
    outline: none;
    border-color: #ff0066;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.fotos-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    min-height: 60px;
}

/* ===== NEW PAGES STYLES ===== */

/* Recursos Page */
.recursos-hero {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff66cc);
    padding: 120px 0 80px;
    text-align: center;
}

.recursos-grid {
    padding: 80px 0;
}

.recursos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.recurso-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.recurso-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 102, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.2);
}

.recurso-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff0066, #ff3399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.recurso-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.recurso-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Preços Page */
.precos-hero {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff66cc);
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(255, 0, 102, 0.5);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff0066, #ff3399);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff0066;
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: #ff0066;
    font-size: 1.1rem;
}

.pricing-features .fa-times {
    color: rgba(255, 255, 255, 0.3);
}

.benefits-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff0066, #ff3399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Central de Ajuda Page */
.ajuda-hero {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff66cc);
    padding: 120px 0 80px;
    text-align: center;
}

.search-section {
    padding: 40px 0;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.search-container input:focus {
    outline: none;
    border-color: #ff0066;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.search-btn {
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff0066, #ff3399);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
}

.help-categories {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 102, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff0066, #ff3399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.category-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    color: #ff0066;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #ff3399;
}

.faq-help-section {
    padding: 60px 0;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #ff0066;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-help-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-help-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-method i {
    font-size: 1.5rem;
    color: #ff0066;
}

.contact-method h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff0066;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Contato Page */
.contato-hero {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff66cc);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.2);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0066, #ff3399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.method-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.method-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.method-content span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff0066, #ff3399);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0066;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faq-contact-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-contact-section {
    padding: 60px 0;
    text-align: center;
}

/* FAQ Page */
.faq-hero {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff66cc);
    padding: 120px 0 80px;
    text-align: center;
}

.search-faq-section {
    padding: 40px 0;
}

.faq-main-section {
    padding: 60px 0;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 0, 102, 0.3);
}

.contact-faq-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.contact-faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-faq-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-options .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
}

/* Termos Page */
.termos-hero {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff66cc);
    padding: 120px 0 80px;
    text-align: center;
}

.terms-section {
    padding: 80px 0;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.terms-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.terms-section-content {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.terms-section-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid rgba(255, 0, 102, 0.3);
    padding-bottom: 10px;
}

.terms-section-content h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px 0;
    color: #fff;
}

.terms-section-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-section-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-section-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-section-content a {
    color: #ff0066;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section-content a:hover {
    color: #ff3399;
}

.terms-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.terms-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

/* Privacidade Page */
.privacidade-hero {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff66cc);
    padding: 120px 0 80px;
    text-align: center;
}

.privacy-section {
    padding: 80px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.privacy-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.privacy-section-content {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.privacy-section-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid rgba(255, 0, 102, 0.3);
    padding-bottom: 10px;
}

.privacy-section-content h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px 0;
    color: #fff;
}

.privacy-section-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-section-content a {
    color: #ff0066;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section-content a:hover {
    color: #ff3399;
}

.privacy-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.privacy-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

/* Cookies Page */
.cookies-hero {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff66cc);
    padding: 120px 0 80px;
    text-align: center;
}

.cookies-section {
    padding: 80px 0;
}

.cookies-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookies-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cookies-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cookies-section-content {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cookies-section-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid rgba(255, 0, 102, 0.3);
    padding-bottom: 10px;
}

.cookies-section-content h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px 0;
    color: #fff;
}

.cookies-section-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.cookies-section-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.cookies-section-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookies-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cookies-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .recursos-container,
    .pricing-container,
    .benefits-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-container,
    .contact-help-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .recurso-card,
    .pricing-card,
    .category-card,
    .benefit-card {
        padding: 20px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .contact-info h2,
    .faq-category h2,
    .contact-faq-container h2 {
        font-size: 2rem;
    }
    
    .terms-section-content,
    .privacy-section-content,
    .cookies-section-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .recurso-icon,
    .category-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-form-container,
    .contact-form {
        padding: 20px;
    }
}