/* CONTATO.CSS - VERSÃO COMPLETA COM MELHORIAS - HGrafica */
/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary: #1b5e20;
    --secondary: #2e7d32;
    --accent: #d32f2f;
    --accent-light: #ef5350;
    --accent-dark: #c62828;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border: #e2e8f0;
    --muted-foreground: #64748b;
    --warning: #ffa726;
    --success: #66bb6a;
}

/* ===== ESTILOS GERAIS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
}

.section-description {
    font-size: 1.8rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== HERO CONTATO ===== */
.contato-hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contato-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-content-contato {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 100%;
}

.hero-text-contato {
    padding-right: 40px;
}

.hero-title-contato {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.title-line {
    display: block;
}

.accent-word {
    color: #ef5350;
    position: relative;
}

.accent-word::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(239, 83, 80, 0.25);
    z-index: -1;
    border-radius: 8px;
}

.hero-description-contato {
    font-size: 1.4rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 550px;
}

.hero-description-contato strong {
    color: #ff8a80;
    font-weight: 700;
}

/* Stats de Atendimento */
.atendimento-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.stat-atendimento {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    flex: 1;
}

.stat-atendimento:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(239, 83, 80, 0.4);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: #ef5350;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(239, 83, 80, 0.4);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.stat-atendimento:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(239, 83, 80, 0.6);
}

.stat-info {
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
    color: #ff8a80;
}

/* Contato Urgente - CARD TRANSPARENTE COM BORDAS CURVAS */
.hero-visual-contato {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 40px;
}

.contato-urgente {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-right: 0;
}

.urgente-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.urgente-header i {
    color: #ffa726;
    font-size: 2.2rem;
}

.urgente-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.contato-urgente p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.btn-whatsapp-urgente {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.btn-whatsapp-urgente:hover {
    background: #20bd5a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.urgente-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.urgente-info i {
    color: #4CAF50;
    font-size: 1.1rem;
}

/* ===== CANAIS DE CONTATO ===== */
.canais-contato {
    padding: 120px 0;
    background: var(--white);
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.canal-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.canal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.03), transparent);
    transition: left 0.6s ease;
}

.canal-card:hover::before {
    left: 100%;
}

.canal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.canal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.3);
    transition: all 0.4s ease;
}

.canal-card:hover .canal-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 18px 45px rgba(211, 47, 47, 0.4);
}

.canal-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.canal-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.canal-info {
    margin-bottom: 35px;
}

.canal-destaque {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    word-break: break-word;
}

.canal-status, .canal-horario {
    font-size: 1.1rem;
    color: var(--muted-foreground);
}

.canal-status.online {
    color: #4CAF50;
    font-weight: 700;
}

.btn-canal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-canal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-canal:hover::before {
    left: 100%;
}

.btn-canal:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

/* ===== ESCRITÓRIOS REGIONAIS ===== */
.escritorios-regionais {
    padding: 120px 0;
    background: var(--light-bg);
}

.escritorios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.escritorio-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.escritorio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.02), transparent);
    transition: left 0.6s ease;
}

.escritorio-card:hover::before {
    left: 100%;
}

.escritorio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

.escritorio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.escritorio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.escritorio-card:hover .escritorio-icon {
    transform: scale(1.1);
}

.escritorio-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.escritorio-tag {
    background: rgba(211, 47, 47, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

.escritorio-info {
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--muted-foreground);
    font-size: 1.1rem;
}

.info-item i {
    color: var(--accent);
    width: 20px;
    font-size: 1.1rem;
}

.escritorio-actions {
    display: flex;
    gap: 15px;
}

.btn-maps, .btn-ligar {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-maps {
    background: var(--accent);
    color: white;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.btn-maps:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

.btn-ligar {
    background: var(--light-bg);
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-ligar:hover {
    background: var(--border);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ===== CTA FINAL ===== */
.cta-final-contato {
    background: linear-gradient(135deg, var(--primary) 0%, #1a0b1a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,0 1000,1000" fill="rgba(211,47,47,0.05)"/></svg>');
    background-size: cover;
}

.cta-content-final {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content-final h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-content-final p {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 50px;
    line-height: 1.7;
}

.cta-actions-final {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-cta-whatsapp, .btn-cta-telefone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: white;
}

.btn-cta-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-cta-telefone {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-telefone:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.cta-garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    opacity: 0.9;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-garantia i {
    color: #ffa726;
    font-size: 1.3rem;
}

/* ===== RESPONSIVIDADE COMPLETA ===== */
@media (max-width: 1200px) {
    .contato-hero .container {
        padding: 0 50px;
    }
    
    .hero-content-contato {
        grid-template-columns: 1fr 380px;
        gap: 60px;
    }
    
    .hero-title-contato {
        font-size: 3.4rem;
    }
    
    .contato-urgente {
        max-width: 380px;
        padding: 45px 35px;
    }
    
    .hero-visual-contato {
        padding-left: 30px;
    }
    
    .section-title {
        font-size: 3.8rem;
    }
    
    .section-description {
        font-size: 1.6rem;
    }
}

@media (max-width: 1024px) {
    .contato-hero .container {
        padding: 0 40px;
    }
    
    .hero-content-contato {
        grid-template-columns: 1fr 350px;
        gap: 50px;
    }
    
    .hero-title-contato {
        font-size: 3rem;
    }
    
    .hero-description-contato {
        font-size: 1.3rem;
    }
    
    .atendimento-stats {
        gap: 20px;
    }
    
    .stat-atendimento {
        padding: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .contato-urgente {
        max-width: 350px;
        padding: 40px 30px;
    }
    
    .hero-visual-contato {
        padding-left: 20px;
    }
    
    .canais-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .escritorios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-description {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contato-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .contato-hero .container {
        padding: 0 30px;
    }
    
    .hero-content-contato {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-text-contato {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title-contato {
        font-size: 2.8rem;
        padding: 0 20px;
    }
    
    .hero-description-contato {
        font-size: 1.2rem;
        margin: 0 auto 40px;
        padding: 0 20px;
    }
    
    .atendimento-stats {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .stat-atendimento {
        padding: 25px;
        justify-content: center;
    }
    
    .contato-urgente {
        max-width: 450px;
        margin: 0 auto;
        padding: 40px 35px;
    }
    
    .hero-visual-contato {
        justify-content: center;
        padding-left: 0;
    }
    
    /* Canais Mobile */
    .canais-contato {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .section-description {
        font-size: 1.4rem;
    }
    
    .canais-grid {
        margin-top: 60px;
        gap: 25px;
    }
    
    .canal-card {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .canal-card h3 {
        font-size: 1.8rem;
    }
    
    .canal-card p {
        font-size: 1.1rem;
    }
    
    .canal-destaque {
        font-size: 1.3rem;
    }
    
    /* Escritórios Mobile */
    .escritorios-regionais {
        padding: 80px 0;
    }
    
    .escritorios-grid {
        margin-top: 60px;
        gap: 25px;
    }
    
    .escritorio-card {
        padding: 35px 30px;
        margin: 0 15px;
    }
    
    .escritorio-header {
        gap: 15px;
    }
    
    .escritorio-header h3 {
        font-size: 1.6rem;
    }
    
    .escritorio-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    /* CTA Final Mobile */
    .cta-final-contato {
        padding: 80px 0;
    }
    
    .cta-content-final h2 {
        font-size: 2.8rem;
        padding: 0 20px;
    }
    
    .cta-content-final p {
        font-size: 1.2rem;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .cta-actions-final {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 20px;
    }
    
    .btn-cta-whatsapp,
    .btn-cta-telefone {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 30px;
    }
}

@media (max-width: 480px) {
    .contato-hero {
        padding: 100px 0 50px;
    }
    
    .contato-hero .container {
        padding: 0 20px;
    }
    
    .hero-title-contato {
        font-size: 2.4rem;
        padding: 0 15px;
    }
    
    .hero-description-contato {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .atendimento-stats {
        padding: 0 15px;
    }
    
    .stat-atendimento {
        padding: 20px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .contato-urgente {
        padding: 35px 25px;
        margin: 0 10px;
    }
    
    .urgente-header h3 {
        font-size: 1.5rem;
    }
    
    .btn-whatsapp-urgente {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
    
    .urgente-info {
        font-size: 0.9rem;
        padding: 14px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-description {
        font-size: 1.3rem;
        padding: 0 15px;
    }
    
    .canal-card {
        padding: 35px 25px;
    }
    
    .canal-card h3 {
        font-size: 1.6rem;
    }
    
    .escritorio-card {
        padding: 30px 25px;
    }
    
    .escritorio-header h3 {
        font-size: 1.4rem;
    }
    
    .cta-content-final h2 {
        font-size: 2.2rem;
    }
    
    .cta-content-final p {
        font-size: 1.1rem;
    }
    
    .btn-cta-whatsapp,
    .btn-cta-telefone {
        padding: 16px 25px;
        font-size: 1.1rem;
    }
}

/* ANIMAÇÕES */
@keyframes pulseSuave {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(211, 47, 47, 0.6);
    }
}