* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


header.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #00529b; /* Azul escuro da marca */
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-container img {
    height: 40px;
    margin-right: 10px;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #eaf4fb;
    color: #00529b;
}

.btn-agendar {
    background-color: #0056b3;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-agendar:hover {
    background-color: #004494;
}

/* --- Mobile Menu Styles --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #00529b;
    cursor: pointer;
    padding: 10px;
}

@media screen and (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
        order: 2; /* Mantém o ícone entre logo e contato */
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-agendar {
        order: 1; /* Opcional: ajustar a ordem se necessário para caber bem */
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}
@media screen and (max-width: 600px) {
  header.topo {
        flex-wrap: wrap; 
  }
}

.hero {
    background-image: url('../image/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 74px); /* Fallback height */
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 74px; /* Compensa a altura do header fixo */
}

.hero-content {
    max-width: 50%;
    color: white;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ========================================================================= */
/* PÁGINA ESPECIALIDADES                                                       */
/* ========================================================================= */

.especialidades-page {
    margin-top: 74px; /* Compensa header */
    background-color: #f7f9fc;
}

.especialidades-hero {
    background: linear-gradient(135deg, #0056b3 0%, #00a0e3 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-content-esp h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content-esp p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.esp-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.esp-tab-btn {
    padding: 12px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056b3;
    background-color: white;
    border: 2px solid #0056b3;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.esp-tab-btn:hover {
    background-color: #eaf4fb;
}

.esp-tab-btn.active {
    background-color: #0056b3;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.esp-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.esp-lists {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.esp-tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.esp-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.esp-list li {
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background-color: #f8fafc;
    transition: transform 0.2s, box-shadow 0.2s;
}

.esp-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background-color: #fff;
    border-left: 4px solid #0056b3;
}

.esp-list li i {
    width: 30px;
    color: #00a0e3;
    font-size: 1.3rem;
}

.badge {
    font-size: 0.75rem;
    background-color: #e2e8f0;
    color: #475569;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 600;
}

.esp-list li .badge:contains("Coparticipação") {
    background-color: #fef3c7;
    color: #b45309;
}

.esp-image-placeholder {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.medico-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 86, 179, 0.9));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.img-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

@media (max-width: 900px) {
    .esp-content-wrapper {
        flex-direction: column;
    }
    .esp-image-placeholder {
        min-height: 300px;
    }
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.price-card {
    background-color: white;
    border-radius: 15px;
    padding: 15px 25px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    border-left: 8px solid #38b2ac; /* Cor verde/ciano na lateral esquerda */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #333;
}

.price-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    display: flex;
    align-items: baseline;
    font-weight: bold;
}

.currency {
    font-size: 1.8rem;
    color: #004494; /* Azul escuro */
}

.amount {
    font-size: 3rem;
    color: #004494;
}

.period {
    font-size: 1.1rem;
    color: #0088cc; /* Azul mais claro */
    margin-left: 5px;
    font-weight: normal;
}

.btn-cta {
    display: table;
    background-color: #f77017;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(247, 112, 23, 0.3);
}

.btn-cta:hover {
    background-color: #d85c0b;
}

/* Specialties Section */
.specialties {
    padding: 60px 5%;
    background-color: #ffffff;
    text-align: center;
}

.specialties-header {
    margin-bottom: 40px;
}

.specialties-header h2 {
    font-size: 2.2rem;
    color: #004494;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.specialties-header p {
    font-size: 1.1rem;
    color: #00a0e3;
    font-weight: 600;
}

.specialties-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 1;
}

/* Plans Section */
.plans {
    padding: 60px 5%;
    background-color: #f8fbff;
    text-align: center;
}

.plans-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.plans-header h2 {
    font-size: 2.2rem;
    color: #004494;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.plans-header p {
    font-size: 1.1rem;
    color: #00a0e3;
    font-weight: 600;
}

.plan-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e1ecf4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.plan-card.highlighted {
    border: 2px solid #f77017;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(247, 112, 23, 0.15);
}

.plan-card.highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f77017;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.plan-card-header h3 {
    color: #00529b;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1ecf4;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.plan-features li i {
    color: #38b2ac;
    margin-right: 10px;
}

.plan-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #004494;
    margin-bottom: 5px;
}

.plan-price small {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

.plan-lives {
    color: #00a0e3;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-plan-blue {
    display: inline-block;
    background-color: #0056b3;
    color: #ffffff;
    padding: 12px 0;
    width: 100%;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-plan-blue:hover {
    background-color: #004494;
}

.btn-plan-orange {
    display: inline-block;
    background-color: #f77017;
    color: white;
    padding: 12px 0;
    width: 100%;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(247, 112, 23, 0.3);
}

.btn-plan-orange:hover {
    background-color: #d85c0b;
}

/* Responsividade básica para os cards de planos */
@media (max-width: 1024px) {
    .plan-cards-container {
        flex-wrap: wrap;
    }
    .plan-card {
        flex: 1 1 45%; /* Ocupa 45% do espaço, permitindo 2 por linha */
        margin-bottom: 20px;
    }
    .plan-card.highlighted {
        transform: none; /* Remove o scale em telas menores para melhor fluxo */
    }
    .plan-card.highlighted:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    header.topo {
        flex-direction: column;
        padding: 10px 5%;
        text-align: center;
    }
    header.topo nav ul {
        flex-direction: column;
        gap: 10px;
        margin: 15px 0;
    }
    header.topo .logo-container {
        margin-bottom: 10px;
    }
    
    .hero {
        background-image: url('../image/hero-bg-mobile.png');
        padding-top: 470px; /* Ajuste para o aumento de altura do header no mobile */
        padding-bottom: 50px;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        background-color: rgba(0, 86, 179, 0.8);
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 25px; 
        font-weight: 900;
        -webkit-text-stroke: 1px #0056b3;;
    }

    .hero-content p {
        background-color: rgba(0, 86, 179, 0.8);
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
         line-height: 1.1; 
    }

    .price-card {
        margin: 0 auto 20px auto;
        display: inline-block;
    }

    .btn-cta {
        margin-left: auto;
        margin-right: auto;
    }

    .plan-card {
        flex: 1 1 100%; /* Ocupa 100% do espaço, 1 por linha */
    }
}

.specialty-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0088cc;
    border: 2px solid #eaf4fb;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.specialty-item:hover .icon-box {
    background-color: #0088cc;
    color: white;
    border-color: #0088cc;
}

.specialty-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #004494;
}

.see-more .icon-box {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0088cc;
    border-color: transparent;
}

.see-more a {
    font-size: 0.85rem;
    color: #7b5b9c;
    text-decoration: underline;
    font-weight: 600;
}

.specialties-image {
    flex: 1;
    max-width: 50%;
}

.specialties-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .specialties-content {
        flex-direction: column;
    }
    .specialties-image {
        max-width: 100%;
        margin-top: 30px;
    }
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .hero-content-esp {
        padding-top: 90px;
    }
}

/* CTA Planos Empresariais Moderno */
.business-banner-wrapper {
    padding: 0 5%;
    margin: 4rem 0;
}

.business-plans-cta {
    background: linear-gradient(135deg, #00529b 0%, #38b2ac 100%);
    border-radius: 20px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 82, 155, 0.2);
    color: white;
}

.business-cta-content {
    max-width: 60%;
}

.business-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.business-cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.btn-business {
    background-color: white;
    color: #00529b;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-business:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

@media (max-width: 900px) {
    .business-plans-cta {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
        gap: 2rem;
    }
    .business-cta-content {
        max-width: 100%;
    }
    .business-cta-content h2 {
        font-size: 2rem;
    }
}

/* Empresas Page Styles duplicado removido */

/* ====== B2B Layout Rules ====== */
.b2b-main-layout {
    display: flex;
    flex-direction: column;
    padding: 80px 0 0 0; /* Espaço para o header fixo */
    margin: 0 auto;
    background-color: #f4f6f9;
}

.b2b-hero {
    background: linear-gradient(135deg, #00529b 0%, #0088cc 100%);
    padding: 80px 5%;
    text-align: center;
    color: #ffffff;
}

.b2b-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.b2b-hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.b2b-hero-content p {
    color: #e0f2fe;
    line-height: 1.6;
    font-size: 1.2rem;
}

.b2b-solution {
    padding: 60px 5%;
    background-color: #ffffff;
    text-align: center;
}

.b2b-solution h2 {
    color: #004494;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.b2b-solution p {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 82, 155, 0.15);
}

.benefit-card i {
    font-size: 3rem;
    color: #0088cc;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.4;
}

.b2b-contact {
    padding: 60px 5%;
    background-color: #f9fbff;
    display: flex;
    justify-content: center;
}

.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.form-container h2 {
    color: #00529b;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-container p {
    color: #666;
    margin-bottom: 25px;
}

.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0088cc;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.2);
    background-color: #ffffff;
}

.btn-orcamento-submit {
    background-color: #0088cc;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-orcamento-submit:hover {
    background-color: #00529b;
    transform: scale(1.02);
}

.b2b-solution h2 {
    color: #0056b3;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.b2b-solution p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: #38b2ac; /* Cor verde/ciano de destaque */
    margin-right: 15px;
    font-size: 1.2rem;
}

.btn-orcamento {
    display: inline-block;
    background-color: #f77017;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-orcamento:hover {
    background-color: #d85c0b;
}

/* Responsive adjust for B2B layout */
@media (max-width: 768px) {
    .b2b-main-layout {
        flex-direction: column;
    }
}

/* ====== How to Hire ====== */
.how-to-hire {
    padding: 160px 5%;
    background-color: #f4f6f9;
    text-align: center;
}

.how-to-header {
    margin-bottom: 40px;
}

.how-to-header h2 {
    font-size: 2.2rem;
    color: #004494;
    font-weight: 800;
    margin-bottom: 10px;
}

.how-to-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.how-to-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Discrete shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-to-icon {
    font-size: 3.5rem;
    color: #0088cc; /* Vibrant blue */
    margin-bottom: 20px;
}

.how-to-card h3 {
    color: #00529b;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.how-to-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .how-to-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }

    .how-to-hire {
        margin-bottom: -50px;
    }
}

/* Footer */
.main-footer {
    background-color: #00529b; /* Azul igual à paleta da marca */
    color: #ffffff;
    padding: 2rem 1rem;
    text-align: center;
    font-family: sans-serif;
}

.main-footer .footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.main-footer p {
    margin: 0;
}

.main-footer .legal-notice {
    font-size: 0.8rem;
    color: #e0e0e0; /* Ajustado para melhor contraste no fundo azul */
    line-height: 1.4;
}

.main-footer .social-links a {
    color: #e0e0e0;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.main-footer .social-links a:hover {
    color: #007bff; /* Ou a cor primária do seu site */
}

@media (max-width: 768px) {
    .main-footer {
        padding: 1.5rem 1rem;
    }
    .main-footer .legal-notice {
        font-size: 0.75rem;
    }
}

