/* Estilos da Página de Contato - Design Moderno */

/* Hero Section */
.hero-contato {
    background: white;
    padding: 40px 0 20px;
    text-align: center;
    color: transparent;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.hero-contato::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-contato h1 {
    font-size: 0;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0;
    color: transparent;
}

.hero-contato p {
    font-size: 0;
    max-width: 0;
    margin: 0 auto;
    line-height: 0;
    opacity: 0;
}

/* Menu ativo */
.nav-menu a.active {
    color: #1e4a72;
    font-weight: 600;
}

/* Seção Principal */
.contato-principal {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Cards de Informações Rápidas */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 1.5rem 1.2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 74, 114, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 74, 114, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e4a72, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(30, 74, 114, 0.25);
}

/* WhatsApp card - ícone com cor verde oficial do WhatsApp */
.info-card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.info-card:nth-child(4):hover .card-icon {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.info-card h3 {
    font-size: 1.2rem;
    color: #1e4a72;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.card-btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: #1e4a72;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.card-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 74, 114, 0.25);
}

.card-status {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.card-status.open {
    background: #27ae60;
    color: white;
}

.card-status.closed {
    background: #e74c3c;
    color: white;
}

.card-status.opening-soon {
    background: #f39c12;
    color: white;
}

/* Conteúdo Principal */
.contato-content {
    display: flex;
    justify-content: center;
    align-items: start;
    max-width: 650px;
    margin: 0 auto;
}

/* Formulário Principal */
.contato-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(30, 74, 114, 0.1);
    width: 100%;
    max-width: 600px;
}

/* Informações Laterais - Ocultas */
.contato-info-lateral {
    display: none;
}

.form-header h2 {
    font-size: 1.8rem;
    color: #1e4a72;
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-align: center;
}

.form-header p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e4a72;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e4a72;
    box-shadow: 0 0 0 3px rgba(30, 74, 114, 0.08);
    background: white;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #1e4a72, #2980b9);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 74, 114, 0.25);
}

.info-block {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(30, 74, 114, 0.1);
}

.info-block h3 {
    font-size: 1.3rem;
    color: #1e4a72;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-detail div:last-child {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 0.95rem;
    color: #1e4a72;
    font-weight: 600;
    margin-top: 0.2rem;
}

/* Botões de Ação */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: linear-gradient(135deg, #1e4a72, #2980b9);
    color: white;
}

.action-btn.primary:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 74, 114, 0.3);
}

.action-btn.secondary {
    background: white;
    color: #1e4a72;
    border: 2px solid #1e4a72;
}

.action-btn.secondary:hover {
    background: #1e4a72;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 74, 114, 0.2);
}

.action-btn.secondary:hover svg {
    fill: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-contato {
        padding: 20px 0 10px;
        min-height: 30px;
    }
    
    .contato-principal {
        padding: 40px 0;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 30px;
    }
    
    .contato-content {
        padding: 0 1rem;
    }
    
    .contato-form-container {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-contato {
        padding: 15px 0 5px;
        min-height: 20px;
    }
    
    .contato-principal {
        padding: 30px 0;
    }
    
    .info-card {
        padding: 1.2rem 1rem;
    }
    
    .contato-form-container {
        padding: 1.2rem;
    }
    
    .contato-content {
        padding: 0 0.5rem;
    }
}

/* Animações Suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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