/* Variáveis CSS para a Paleta de Cores */
:root {
    --color-primary: #A91D5A; /* Magenta Escuro */
    --color-secondary: #C72C57; /* Magenta Mais Escuro */
    --color-tertiary: #E6C3B6; /* Rosa Claro/Bege para CTA */
    --color-dark-bg: #464646; /* Cinza Escuro */
    --color-light-text: #FFFFFF; /* Branco */
    --color-dark-text: #333333; /* Quase Preto */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

.btn-primary {
    background-color: var(--color-tertiary);
    color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: #f0d8cd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-header {
    background-color: var(--color-primary);
    color: var(--color-light-text);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85em;
}

.btn-header:hover {
    background-color: var(--color-tertiary);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-light-text);
    text-align: center;
    padding: 5px 0;
    font-size: 0.95em;
    font-weight: 500;
}

/* Header Principal */
.main-header {
    background-color: var(--color-light-text);
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: auto;
    width: 150px;
}

.logo-text {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--color-primary);
}

/* Menu Checkbox (escondido) */
.menu-checkbox {
    display: none;
}

/* Menu Icon (Hamburger) */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Animação do hamburger quando ativo */
.menu-checkbox:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-checkbox:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navegação */
.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav li {
    position: relative;
}

/* Labels escondidos no desktop */
.main-nav label {
    display: none;
}

.main-nav a {
    color: var(--color-dark-text);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.9em;
    display: block;
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 2.3em;
}

.social-links a {
    color: var(--color-dark-text);
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 150px;
    color: var(--color-light-text);
    overflow: hidden;
    background-image: url('static/image/bg_top.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: var(--color-primary); */
    opacity: 0.88;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15em;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Seções de Conteúdo */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    color: var(--color-secondary);
    margin-bottom: 60px;
    font-weight: 800;
}

.cta-center {
    margin-top: 50px;
    text-align: center;
}

/* Benefícios (4 Colunas) */
.benefits-section {
    padding-top: 80px;
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
}

.benefit-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-image-wrapper.border-blue {
    border-color: #4A90E2;
}

.benefit-image-wrapper.border-purple {
    border-color: #9B59B6;
}

.benefit-image-wrapper.border-orange {
    border-color: #E67E22;
}

.benefit-image-wrapper.border-pink {
    border-color: #E91E63;
}

.benefit-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.4;
}

/* Depoimentos */
.testimonials-section {
    background-image: url('static/image/bg_central.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-light-text);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-top: 5px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--color-dark-text);
}

.testimonial-card small {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9em;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.3;
}

.testimonial-dots .dot:nth-child(1) {
    opacity: 1;
}

/* Público-Alvo (Fundo Escuro) */
.target-section {
    background-image: url('static/image/bg_final.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: var(--color-light-text);
    padding: 100px 0;
    text-align: left;
    position: relative;
}

.target-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(70, 70, 70, 0.85);
    z-index: 0;
}

.target-section .container {
    position: relative;
    z-index: 1;
}

.target-section h2 {
    color: var(--color-light-text);
    margin-bottom: 50px;
    text-align: center;
}

.target-list {
    max-width: 700px;
    margin: 0 auto;
}

.target-list li {
    font-size: 1.3em;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    font-weight: 600;
}

.target-list li::before {
    content: '◆';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

/* Início Rápido (3 Colunas) */
.quick-start-section {
    background-color: var(--color-primary);
    color: var(--color-light-text);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    padding-top: 120px;
}

.quick-start-section h2 {
    color: var(--color-light-text);
}

.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.quick-start-item {
    text-align: center;
}

.quick-start-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-start-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quick-start-image-wrapper.border-blue {
    border-color: #4A90E2;
}

.quick-start-image-wrapper.border-orange {
    border-color: #E67E22;
}

.quick-start-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-start-item h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--color-light-text);
    line-height: 1.4;
}

/* CTA Final */
.final-cta-section {
    background-color: var(--color-secondary);
    color: var(--color-light-text);
    padding: 80px 0;
}

.final-cta-section h2 {
    color: var(--color-light-text);
    margin-bottom: 15px;
    font-size: 2.8em;
}

.final-cta-section h3 {
    color: var(--color-light-text);
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: 600;
}

.final-cta-section p {
    font-size: 1.2em;
    margin-bottom: 35px;
}

/* Footer */
footer {
    background-color: #f1f1f1;
    padding: 40px 0;
    text-align: center;
}

footer .logo-text {
    font-size: 1.5em;
}

footer p {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVIDADE - MENU MOBILE
   ======================================== */

@media (max-width: 992px) {
    /* Mostra o ícone hamburger */
    .menu-icon {
        display: flex;
        order: 3;
    }

    /* Esconde labels no desktop, mostra no mobile */
    .main-nav label {
        display: block;
        font-size: 0.75em;
        color: #999;
        margin-bottom: 5px;
        font-weight: 500;
        text-transform: uppercase;
    }

    /* Menu mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-light-text);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        padding: 100px 30px 30px;
        z-index: 99;
        overflow-y: auto;
    }

    /* Menu aberto */
    .menu-checkbox:checked ~ .main-nav {
        right: 0;
    }

    /* Previne scroll quando menu aberto */
    .menu-checkbox:checked ~ body {
        overflow: hidden;
    }

    /* Lista vertical */
    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 20px;
    }

    .main-nav a {
        font-size: 1em;
        display: block;
        padding: 5px 0;
    }

    /* Remove a linha de baixo do hover no mobile */
    .main-nav a::after {
        display: none;
    }

    /* Ajusta header actions */
    .header-actions {
        gap: 15px;
    }

    .social-links {
        font-size: 1.1em;
    }

    /* Grids responsivos */
    .benefits-grid,
    .quick-start-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-section {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .quick-start-section {
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    }
}

@media (max-width: 768px) {
    .main-nav {
        width: 280px;
        padding: 80px 25px 25px;
    }

    .btn-header {
        padding: 8px 18px;
        font-size: 0.8em;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8em;
    }

    .benefits-grid,
    .testimonials-grid,
    .quick-start-grid {
        grid-template-columns: 1fr;
    }

    .benefit-image-wrapper,
    .quick-start-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .section h2 {
        font-size: 2em;
    }

    .hero-section {
        padding: 80px 0 100px;
    }

    .btn-header {
        padding: 8px 15px;
        font-size: 0.75em;
    }

    .target-list li {
        font-size: 1.1em;
    }

    .main-nav {
        width: 100%;
        right: -100%;
    }

    .menu-checkbox:checked ~ .main-nav {
        right: 0;
    }

    .social-links {
        gap: 10px;
        font-size: 1em;
    }
}

/* Estilos Específicos para a Página Sobre */
.about-section {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: left;
}

.about-section h1 {
    text-align: center;
    font-size: 3em;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 2em;
    color: var(--color-secondary);
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.about-section h3 {
    font-size: 1.5em;
    color: var(--color-primary);
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-section p {
    margin-bottom: 15px;
}

.about-section ul {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 20px;
}

.about-section ul li {
    margin-bottom: 10px;
}

.mission-vision {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.mission, .vision {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.cta-block {
    text-align: center;
    padding: 40px 0;
}

/* Responsividade para a página Sobre */
@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
    }
}

/* Estilos Específicos para a Página Revendedor */

.hero-revendedor-section {
    padding: 80px 0 100px;
    background-color: #f9f9f9;
}

.hero-revendedor-section h1 {
    color: var(--color-primary);
    font-size: 3.5em;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 40px;
}

.btn-cta-hero {
    font-size: 1.2em;
    padding: 18px 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.how-it-works-section {
    padding: 80px 0;
    background-color: var(--color-light-text);
}

.how-it-works-section h2 {
    color: var(--color-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    padding: 30px;
    background-color: var(--color-tertiary); /* Cor de fundo solicitada */
    border-radius: 15px;
    text-align: center;
    color: var(--color-dark-text);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); /* Sombra */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--color-primary);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: pulse-shadow 1.5s infinite; /* Animação pulse suave */
}

.step-card-highlight {
    background-color: var(--color-tertiary); /* Mantém a cor de fundo */
    border-top: 5px solid var(--color-secondary);
}

.step-number-lg {
    font-size: 3.5em; /* Aumentado para maior visibilidade */
    font-weight: 900;
    color: var(--color-primary);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.step-card-highlight .step-number-lg {
    color: var(--color-secondary);
}

.step-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--color-secondary);
}

.step-card p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #666;
}

.cta-block-center {
    margin-top: 60px;
    text-align: center;
}

.btn-cta-bottom {
    background-color: var(--color-primary);
    color: var(--color-light-text);
    font-size: 1.1em;
    padding: 15px 40px;
}

.btn-cta-bottom:hover {
    background-color: var(--color-secondary);
}

/* Animação Pulse Suave */
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Responsividade para a página Revendedor */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr; /* 1 coluna em mobiles */
    }
    
    .hero-revendedor-section h1 {
        font-size: 2.5em;
    }
    
    .lead-text {
        font-size: 1.1em;
    }
    
    .btn-cta-hero {
        font-size: 1.1em;
        padding: 15px 40px;
    }
}
/* .revendedor-section {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.revendedor-section h1 {
    font-size: 3em;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.revendedor-section h2 {
    font-size: 2em;
    color: var(--color-secondary);
    margin-top: 30px;
    margin-bottom: 20px;
}

.revendedor-section p {
    margin-bottom: 15px;
}

.revendedor-section ul {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 20px;
    text-align: left;
}

.revendedor-section ul li {
    margin-bottom: 10px;
} */


/* ===================================
   ESTILOS DO FORMULÁRIO DE CONTATO
   =================================== */

.contato-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-form-box {
    background-color: var(--color-light-text);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contato-form-box h2 {
    color: var(--color-secondary);
    font-size: 2em;
    margin-bottom: 15px;
    text-align: left;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95em;
}

.contato-form .form-group {
    margin-bottom: 25px;
}

.contato-form label {
    display: block;
    font-weight: 600;
    color: var(--color-dark-text);
    margin-bottom: 8px;
    font-size: 0.95em;
}

.contato-form input[type="text"],
.contato-form input[type="tel"],
.contato-form input[type="email"],
.contato-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-light-text);
    box-shadow: 0 0 0 3px rgba(169, 29, 90, 0.1);
}

.contato-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.contato-form .btn {
    min-width: 200px;
    font-size: 1em;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.95em;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contato-info-box {
    background-color: var(--color-light-text);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contato-info-box h3 {
    color: var(--color-secondary);
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon svg {
    color: var(--color-secondary);
}

.info-content h4 {
    color: var(--color-secondary);
    font-size: 1.1em;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-content p {
    color: var(--color-dark-text);
    font-size: 0.95em;
    margin: 0;
}

.social-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.social-contact h4 {
    color: var(--color-secondary);
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-links-contact {
    display: flex;
    gap: 20px;
}

.social-links-contact a {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links-contact a svg {
    color: var(--color-light-text);
}

@media (max-width: 968px) {
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-form-box,
    .contato-info-box {
        padding: 30px 25px;
    }
}

@media (max-width: 600px) {
    .contato-form-box h2,
    .contato-info-box h3 {
        font-size: 1.5em;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon svg {
        width: 20px;
        height: 20px;
    }
}
