/* ==================== PÁGINA DE CONTATO - ESTILOS MODERNOS ==================== */

/* Hero Contato */
.contato-hero {
    min-height: 50vh;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Overlay escuro para legibilidade */
.contato-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

.contato-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at top,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.contato-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contato-hero .hero-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contato-hero .hero-title .highlight {
    color: #00B5E2;
    filter: drop-shadow(0 2px 8px rgba(0, 181, 226, 0.4));
}

.contato-hero .hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==================== INFORMAÇÕES DE CONTATO ==================== */
.info-contato {
    padding: 5rem 0;
    background: #ffffff;
}

.info-contato .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #0096BF;
    font-size: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00B5E2 0%, #0096BF 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: #00B5E2;
    box-shadow: 0 20px 40px rgba(180, 201, 224, 0.15),
                0 10px 20px rgba(180, 201, 224, 0.1);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(180, 201, 224, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 28px rgba(180, 201, 224, 0.4);
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0096BF;
    margin-bottom: 1rem;
}

.info-card p {
    color: #4b5563;
    margin: 0.5rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-card a {
    color: #00B5E2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-card a:hover {
    color: #0096BF;
    transform: translateX(3px);
}

.info-horario {
    font-size: 0.9rem !important;
    color: #6b7280 !important;
    font-style: italic;
}

.info-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

/* ==================== FORMULÁRIO DE CONTATO ==================== */
.formulario-contato {
    padding: 5rem 0;
    background: #f9fafb;
}

.formulario-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.formulario-info .section-title {
    color: #0096BF;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.formulario-description {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.formulario-beneficios {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.formulario-beneficios .beneficio-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #00B5E2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.formulario-beneficios .beneficio-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(180, 201, 224, 0.15);
}

.formulario-beneficios .beneficio-item i {
    font-size: 1.5rem;
    color: #00B5E2;
    flex-shrink: 0;
}

.formulario-beneficios .beneficio-item span {
    color: #1f2937;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Formulário melhorado */
.formulario-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
                0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.formulario-form:hover {
    border-color: rgba(180, 201, 224, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12),
                0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0096BF;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    border-color: #00B5E2;
    box-shadow: 0 0 0 4px rgba(180, 201, 224, 0.1),
                0 4px 12px rgba(180, 201, 224, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ==================== MAPA ==================== */
.mapa {
    padding: 5rem 0;
    background: white;
}

.mapa .section-title {
    text-align: center;
    color: #0096BF;
    margin-bottom: 3rem;
}

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

.mapa-placeholder {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 3px dashed #b4c9e0;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mapa-placeholder:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-style: solid;
    transform: scale(1.02);
}

.mapa-placeholder i {
    font-size: 4rem;
    color: #00B5E2;
    margin-bottom: 1.5rem;
    display: block;
}

.mapa-placeholder h3 {
    font-size: 1.75rem;
    color: #0096BF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mapa-placeholder p {
    color: #4b5563;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 5rem 0;
    background: #f9fafb;
}

.faq .section-title {
    text-align: center;
    color: #0096BF;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00B5E2;
    box-shadow: 0 8px 24px rgba(180, 201, 224, 0.1);
}

.faq-item.active {
    border-color: #00B5E2;
    box-shadow: 0 10px 30px rgba(180, 201, 224, 0.15);
}

.faq-question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #eff6ff;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0096BF;
    margin: 0;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1.25rem;
    color: #00B5E2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    border-top: 2px solid #e5e7eb;
}

.faq-answer p {
    padding: 1.75rem 2rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* ==================== RESPONSIVIDADE ==================== */

/* Tablets */
@media (max-width: 1024px) {
    .formulario-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contato-hero {
        min-height: 40vh;
        padding: 6rem 0 3rem;
    }
    
    .contato-hero .hero-title {
        font-size: 2.25rem;
    }
    
    .contato-hero .hero-description {
        font-size: 1rem;
    }
    
    .info-contato,
    .formulario-contato,
    .mapa,
    .faq {
        padding: 3rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .formulario-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .mapa-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .mapa-placeholder i {
        font-size: 3rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .contato-hero .hero-title {
        font-size: 1.875rem;
    }
    
    .info-icon {
        width: 70px;
        height: 70px;
    }
    
    .info-icon i {
        font-size: 1.75rem;
    }
    
    .formulario-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
    }
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

/* ==================== PRINT STYLES ==================== */
@media print {
    .contato-hero,
    .faq {
        display: none;
    }
    
    .info-card,
    .formulario-form {
        box-shadow: none;
        border: 1px solid #000;
    }
}
