:root {
    --primary-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
}

.main-contact-content {
    padding: 80px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 80vh;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Cards de contato - Design Premium */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-option {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hover específico para WhatsApp - verde */
.contact-option.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.5);
}
.contact-option.whatsapp-card::before {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* Hover específico para Premium - amarelo */
.contact-option.premium-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
}
.contact-option.premium-card::before {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.contact-option:hover::before {
    opacity: 1;
}

.contact-option .icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-option:hover .icon-circle {
    transform: scale(1.1);
}

.contact-option .icon-circle.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-option .icon-circle.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.contact-option .icon-circle i {
    color: #fff;
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-option h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-option p {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    line-height: 1.2;
}

.contact-btn i {
    font-size: 1.1em;
    line-height: 1;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.contact-btn.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

.contact-btn.premium:hover {
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.45);
}

@media (max-width: 480px) {
    .contact-option .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    .contact-option h3 {
        font-size: 1.3rem;
    }
    .contact-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

.contact-info-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.contact-info-section h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.info-item i {
    color: #25D366;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
}

.info-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-suporte {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.faq-suporte h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Aumentar ícones dos títulos (Desktop e Geral) */
.contact-info-section h2 i,
.faq-suporte h2 i {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.faq-suporte-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-suporte-item summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-suporte-item summary::-webkit-details-marker {
    display: none;
}

.faq-suporte-item summary::before {
    content: "+";
    font-size: 1.2rem;
    color: #25D366;
    font-weight: bold;
}

.faq-suporte-item[open] summary::before {
    content: "−";
}

.faq-suporte-item .answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .contact-card { padding: 1.5rem; }
    .page-title { font-size: 2rem; }
    .main-contact-content { padding-top: 60px; }
    
    /* FIX: Aumentar ícones dos títulos em mobile */
    .contact-info-section h2 i,
    .faq-suporte h2 i {
        font-size: 1.4em; /* Um pouco maior que o texto */
        vertical-align: middle;
    }
}

/* Estilos do Card E-mail */
.contact-option.email-card:hover {
    border-color: rgba(0, 242, 234, 0.5);
}
.contact-option.email-card::before {
    background: linear-gradient(135deg, #00F2EA 0%, #FF0050 100%);
}
.contact-option .icon-circle.email {
    background: linear-gradient(135deg, #00F2EA 0%, #FF0050 100%);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.3);
}
.contact-btn.email-btn {
    background: linear-gradient(135deg, #00F2EA 0%, #FF0050 100%);
}
.contact-btn.email-btn:hover {
    box-shadow: 0 10px 28px rgba(0, 242, 234, 0.45);
}
