:root {
    --primary-color: #027882;
    --secondary-color: #1FB3BE;
    --accent-color: #F5A623;
    --light-gray: #D9D9D9;
    --lighter-gray: #EBEBEB;
    --text-color: #333333;
    --light-text: #666666;
    --background-color: #FFFFFF;
    --light-background: var(--lighter-gray);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 72px;
    width: auto;
    max-width: 160px;
    margin-right: 12px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #1a3a4a;
    letter-spacing: 1px;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-size: 1.08rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

/* Ocultar botão mobile-close em desktop */
.nav-menu .mobile-close {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #0a5a61);
    color: white;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hero-waves svg {
    width: 100%;
    height: auto;
    display: block;
}
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    animation: blink 1s infinite;

  
}

@keyframes blink {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0;
    }
}

.cta-button:hover {
    transform: translateY(-3px);

    /* Sombra ainda mais intensa no hover */
    
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    background-color: var(--lighter-gray);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 4px 24px rgba(2,120,130,0.10);
    transform: translateY(-2px) scale(1.02);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.service-card-link:focus {
    outline: none;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 1rem;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: stretch;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.waves-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Styles - padrão index */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 0 0 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding: 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p,
.footer-section ul,
.footer-section form {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: scale(1.15);
}

.footer-section.newsletter form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.7rem;
}

.footer-section.newsletter input[type="email"] {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    width: 60%;
}

.footer-section.newsletter button {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    border: none;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-section.newsletter button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    background: #01525a;
    text-align: center;
    padding: 1.2rem 0;
    color: #fff;
    font-size: 1rem;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.footer-description {
    font-size: 6px;
    line-height: 1.2;
    color: #444;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    .footer-section.newsletter form {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-section.newsletter input[type="email"] {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        width: 90vw;
        height: 90vh;
        box-shadow: 0 8px 32px rgba(2,120,130,0.13);
        border-radius: 18px;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        z-index: 1202;
        transition: all 0.3s;
        overflow-y: auto;
    }
    .nav-menu.open {
        display: flex;
    }
    
    /* Padronizar tamanho da fonte do menu mobile */
    .nav-menu a {
        font-size: 1.2rem !important;
        font-weight: 500;
    }
    
    .nav-menu .dropdown-toggle {
        font-size: 1.2rem !important;
        font-weight: 500;
    }
    .nav-menu .mobile-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid var(--primary-color);
        font-size: 1.5rem;
        color: var(--text-color);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: none;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s;
        z-index: 2002;
        font-weight: bold;
    }
    
    /* Mostrar mobile-close apenas quando menu estiver aberto */
    .nav-menu.open .mobile-close {
        display: flex;
    }
    
    /* Ocultar botão de fechar em telas maiores */
    @media (min-width: 1025px) {
        .nav-menu .mobile-close {
            display: none !important;
        }
    }
    .hamburger {
        display: block !important;
        position: absolute;
        top: 22px;
        right: 24px;
        z-index: 2001;
    }
    .logo h1 {
        display: none;
    }
    .logo-img {
        height: 48px;
        max-width: 100px;
    }
    .logo h1 {
        font-size: 1.5rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .features-container {
        grid-template-columns: 1fr;
    }
    .header {
        min-height: 70px;
    }
    
    /* Ocultar botão de leitura no mobile */
    #toggleLeitura {
        display: visible !important;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2001;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(.4,2,.6,1);
    position: relative;
}

/* Removendo a transformação do hamburger em X quando ativo */
/* O botão mobile-close já fornece a funcionalidade de fechar */
.hamburger.active .bar:nth-child(1) {
    /* Mantém a aparência original - removendo transformação em X */
}

.hamburger.active .bar:nth-child(2) {
    /* Mantém a aparência original - removendo opacidade 0 */
}

.hamburger.active .bar:nth-child(3) {
    /* Mantém a aparência original - removendo transformação em X */
}

/* Ocultar o hamburger quando o menu estiver ativo */
.hamburger.active {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* About Page Styles */
.about-hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text h3 {
    color: grey;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ABA Therapy Section */
.aba-therapy {
    background-color: var(--lighter-gray);
    padding: 4rem 1rem;
}

.aba-therapy h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.aba-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aba-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.aba-card:hover {
    transform: translateY(-5px);
}

.aba-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.aba-card ul {
    list-style: none;
    padding: 0;
}

.aba-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.aba-card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Statistics Section */
.statistics {
    padding: 4rem 1rem;
    background: var(--background-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Mission Vision Section */
.mission-vision {
    padding: 4rem 1rem;
    background-color: var(--lighter-gray);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card,
.values-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-card ul {
    list-style: none;
    padding: 0;
}

.values-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-card ul li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .aba-content {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */
.services-hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    
    padding: 0 1rem;
}

.services-hero-content {
    max-width: 800px;
}

@media (max-width: 768px) {
    .services-hero {
        height: 75vh;
    }
  }
.services-hero h1 {
    margin-top: 2rem;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.service-item {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Treatment Process Section */
.treatment-process {
    background-color: var(--lighter-gray);
    padding: 4rem 1rem;
}

.treatment-process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 1rem;
    text-align: center;
    color: white;
}

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

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

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        grid-template-columns: 1fr;
    }
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Team Page Styles */
.team-hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.team-hero-content {
    max-width: 800px;
}
@media (max-width: 768px) {
    .team-hero {
        height: 75vh;
    }
  }

.team-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.team-member {
    background: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social .social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.member-social .social-link:hover {
    color: var(--accent-color);
}

/* Team Values Section */
.team-values {
    background-color: var(--lighter-gray);
    padding: 4rem 1rem;
}

.team-values h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    
    margin: 0 auto;
}

.value-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Join Team Section */
.join-team {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 1rem;
    text-align: center;
    color: white;
}

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

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Responsive Design for Team Page */
@media (max-width: 768px) {
    .team-hero h1 {
        font-size: 2rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .join-content h2 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
}

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

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--light-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.info-text h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-text p {
    margin: 0;
    color: var(--text-color);
}

.contact-form {
    background: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--lighter-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--background-color);
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-color);
}

.map-section {
    padding: 80px 20px;
    background: var(--light-background);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilos para mosaico das unidades */
.unidade-mosaico-section {
    padding: 80px 20px;
    background: var(--background-color);
}

.unidade-mosaico-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.unidade-mosaico-container {
    max-width: 1200px;
    margin: 0 auto;
}

.unidade-mosaico-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.unidade-mosaico-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--background-color);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.unidade-mosaico-item:nth-child(1) { animation-delay: 0.1s; }
.unidade-mosaico-item:nth-child(2) { animation-delay: 0.2s; }
.unidade-mosaico-item:nth-child(3) { animation-delay: 0.3s; }
.unidade-mosaico-item:nth-child(4) { animation-delay: 0.4s; }
.unidade-mosaico-item:nth-child(5) { animation-delay: 0.5s; }
.unidade-mosaico-item:nth-child(6) { animation-delay: 0.6s; }
.unidade-mosaico-item:nth-child(7) { animation-delay: 0.7s; }
.unidade-mosaico-item:nth-child(8) { animation-delay: 0.8s; }

.unidade-mosaico-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.unidade-mosaico-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.unidade-mosaico-item:hover img {
    transform: scale(1.1);
}

.unidade-mosaico-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 120, 130, 0.8), rgba(31, 179, 190, 0.6));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unidade-mosaico-item:hover .unidade-mosaico-overlay {
    opacity: 1;
}

.unidade-mosaico-zoom {
    color: white;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.unidade-mosaico-zoom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Modal para visualização das imagens */
.unidade-mosaico-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.unidade-mosaico-modal.active {
    opacity: 1;
    visibility: visible;
}

.unidade-mosaico-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.unidade-mosaico-modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.unidade-mosaico-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.unidade-mosaico-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .unidade-mosaico-section h2 {
        font-size: 2rem;
    }
    
    .unidade-mosaico-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .unidade-mosaico-item img {
        height: 200px;
    }
    
    .unidade-mosaico-modal-content {
        max-width: 95%;
    }
    
    .unidade-mosaico-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .unidade-mosaico-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .unidade-mosaico-item img {
        height: 180px;
    }
}

/* Estilos para Newsletter */
.newsletter-hero {
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #0a5a61);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-hero-overlay {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.newsletter-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.newsletter-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Carrossel de Notícias */
.newsletter-carousel-section {
    padding: 80px 0;
    background: var(--background-color);
}

.newsletter-carousel-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.newsletter-carousel-container {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.newsletter-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 120, 130, 0.8), rgba(31, 179, 190, 0.6));
    transition: all 0.3s ease;
}

.carousel-slide:hover::before {
    background: linear-gradient(135deg, rgba(2, 120, 130, 0.9), rgba(31, 179, 190, 0.7));
}

.carousel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.carousel-slide.active .carousel-content {
    transform: translateY(0);
    opacity: 1;
}

.carousel-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.carousel-btn-link {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.carousel-btn-link:hover {
    background: #e6941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Navegação do Carrossel */
.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Blog Section */
.newsletter-blog-section {
    padding: 80px 20px;
    background: var(--light-background);
}

.newsletter-blog-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.newsletter-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--background-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
}

.blog-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(31, 179, 190, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.blog-card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-subtitle {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-card-excerpt {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.blog-card-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.newsletter-load-more {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 179, 190, 0.3);
}

.load-more-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 179, 190, 0.4);
}

.load-more-btn i {
    margin-right: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .newsletter-hero h1 {
        font-size: 2.5rem;
    }
    .convenios-menu {
       
        top: 12%;
        flex-direction: column;
    }
    
    .newsletter-hero p {
        font-size: 1rem;
    }
    
    .carousel-slide {
        height: 400px;
    }
    
    .carousel-content h3 {
        font-size: 1.8rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .newsletter-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
    }
    
    .carousel-navigation {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .newsletter-hero {
        height: 30vh;
    }
    
    .newsletter-hero h1 {
        font-size: 2rem;
    }
    
    .carousel-slide {
        height: 350px;
    }
    
    .newsletter-blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Estilos para mapa das unidades */
.unidade-map-section {
    padding: 80px 20px;
    background: var(--light-background);
}

.unidade-map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.unidade-map-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.unidade-map-info {
    background: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.unidade-map-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.unidade-address {
    margin-bottom: 20px;
}

.unidade-address p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.unidade-address i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.unidade-map-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.unidade-map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .unidade-map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .unidade-map-section h2 {
        font-size: 2rem;
    }
    
    .unidade-map-info {
        padding: 20px;
    }
    
    .unidade-map-frame {
        height: 300px;
    }
}

.faq-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    .contact-hero p {
        font-size: 1rem;
    }
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
    background-color: #fff8f8;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2);
}

.success-message {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

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

/* ABA Page Styles */
.aba-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.aba-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.aba-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.aba-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Timeline ABA - Alternada e Animada */
.aba-timeline {
    position: relative;
    padding: 80px 0 80px 0;
    background: var(--lighter-gray);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    width: 50%;
    padding: 2rem 0;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInTimeline 0.8s forwards;
}

.timeline-item.left {
    left: 0;
    flex-direction: row-reverse;
    text-align: right;
    animation-delay: 0.2s;
}

.timeline-item.right {
    left: 50%;
    flex-direction: row;
    text-align: left;
    animation-delay: 0.4s;
}

.timeline-icon {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(2,120,130,0.13);
    margin: 0 1.5rem;
    z-index: 2;
    border: 4px solid #fff;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(2,120,130,0.10);
    min-width: 220px;
    max-width: 320px;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s;
}

.timeline-item.left .timeline-content {
    margin-right: 0;
    margin-left: auto;
}

.timeline-item.right .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-color);
    opacity: 0.95;
}

@keyframes fadeInTimeline {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .timeline-container::before {
        left: 20px;
    }
    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0;
        flex-direction: row;
        text-align: left;
        padding-left: 60px;
        margin-bottom: 2rem;
    }
    .timeline-icon {
        margin: 0 1rem 0 0;
    }
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin: 0;
    }
}

/* Principles Section */
.aba-principles {
    padding: 80px 20px;
    background: white;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.principle-card {
    background: var(--lighter-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

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

.principle-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Benefits Section */
.aba-benefits {
    padding: 80px 20px;
    background: var(--lighter-gray);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Process Section */
.aba-process {
    padding: 80px 20px;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

/* CTA Section */
.aba-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

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

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

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .timeline-container::before {
        display: none;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .timeline-icon {
        position: static;
        transform: none;
        margin-bottom: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
        width: 100%;
        max-width: 400px; /* Para melhor leitura */
    }

    .aba-hero h1 {
        font-size: 2.5rem;
    }
}

/* Scrollbar Customizada */
/* Para navegadores baseados em Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
    background: var(--lighter-gray);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
::-webkit-scrollbar-corner {
    background: var(--lighter-gray);
}

/* Para Firefox */
body, .convenios-lista {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--lighter-gray);
}

/* Modal de Convênios inspirado no desenho - com SVG decorativo na lateral direita */
.convenios-menu {
    position: fixed;
    top: 40%;
    left: 0;
    z-index: 2002;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: auto;
    min-height: 120px;
    pointer-events: none;
}

.convenios-puxador-vertical {
    width: 48px;
    height: 120px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 0 30px 30px 0;
    box-shadow: 2px 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, width 0.3s;
    position: relative;
    font-size: 1.7rem;
    margin-left: 0;
    margin-right: -8px;
    border: none;
    outline: none;
    box-sizing: border-box;
    will-change: box-shadow, width;
    z-index: 2003;
    pointer-events: auto;
    border-left: 3px solid var(--accent-color);
}

.convenios-puxador-vertical::after {
    content: '';
    display: block;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    width: 18px;
    height: 18px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-radius: 3px;
    opacity: 0.7;
}

.convenios-puxador-vertical:hover,
.convenios-menu.open .convenios-puxador-vertical {
    background: var(--secondary-color);
    box-shadow: 4px 8px 24px rgba(0,0,0,0.22);
    width: 56px;
}

.convenios-lista {
    background: #fff;
    color: var(--text-color);
    min-width: 340px;
    max-width: 520px;
    box-shadow: 2px 4px 32px rgba(2,120,130,0.18);
    border-radius: 0 60px 60px 0;
    padding: 2rem 1.5rem 2rem 2rem;
    margin-left: -540px;
    opacity: 0;
    pointer-events: none;
    transition: margin 0.6s cubic-bezier(.77,0,.18,1), opacity 0.5s, box-shadow 0.3s, transform 0.6s cubic-bezier(.77,0,.18,1);
    position: relative;
    top: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2001;
    max-height: 80vh;
   
    overscroll-behavior: contain;
    transform: scaleX(0.85) scaleY(0.97);
    filter: blur(2px);
}

.convenios-lista::after {
    content: '';
    position: absolute;
    top: 0;
    right: -60px;
    width: 80px;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="80" height="400" viewBox="0 0 80 400" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 Q60,60 80,200 Q60,340 0,400 L80,400 L80,0 Z" fill='%23027882' fill-opacity='0.12'/></svg>') no-repeat right center/cover;
    pointer-events: none;
    z-index: 2;
}

.convenios-menu.open .convenios-lista {
    margin-left: 0;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 4px 12px 40px rgba(2,120,130,0.22);
    transform: scaleX(1) scaleY(1);
    filter: blur(0);
}

.convenios-lista h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    text-align: left;
    width: 100%;
    font-weight: 700;
    letter-spacing: 1px;
}

.convenios-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
    width: 100%;
}

@media (min-width: 700px) {
    .convenios-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .convenios-lista {
        min-width: 420px;
        max-width: 700px;
    }
    .convenios-lista::after {
        width: 100px;
        right: -80px;
        background-size: 100px 100%;
    }
}
@media (min-width: 1100px) {
    .convenios-cards {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .convenios-lista {
        min-width: 520px;
        max-width: 900px;
    }
    .convenios-lista::after {
        width: 140px;
        right: -120px;
        background-size: 140px 100%;
    }
}
@media (max-width: 600px) {
    .convenios-cards {
        grid-template-columns: 1fr 1fr;
    }
    .convenios-lista {
        min-width: 90vw;
        max-width: 98vw;
        overflow-y: auto;
        max-height: 65vh;
    }
    .convenios-menu {
       
        top: 12%;
        flex-direction: column;
    }
    .convenios-lista::after {
        display: none;
    }
    .convenios-puxador-vertical {
        height: 70px;
        width: 36px;
        font-size: 1.2rem;
    }
}

.convenio-card {
    background: var(--lighter-gray);
    border-radius: 18px 40px 18px 18px/18px 60px 18px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    min-height: 110px;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    border: 1px solid var(--light-gray);
    position: relative;
}

.convenio-card:hover {
    box-shadow: 0 6px 18px rgba(2,120,130,0.13);
    transform: translateY(-4px) scale(1.04);
    background: #fff;
}

.convenio-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    filter: grayscale(1) brightness(0.85);
    transition: filter 0.4s, box-shadow 0.3s;
}

.convenio-card:hover img {
    filter: grayscale(0) brightness(1);
    box-shadow: 0 4px 16px rgba(2,120,130,0.13);
}

.convenio-card span {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    word-break: break-word;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(2, 120, 130, 0.98);
    color: #fff;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 2000;
    font-size: 1rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    transition: transform 0.4s;
}

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: underline;
}

.accept-cookies {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.accept-cookies:hover {
    background: var(--secondary-color);
}

.cookie-banner.hide {
    transform: translateY(120%);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.95rem;
        padding: 1rem 1rem;
        gap: 0.7rem;
    }
    .accept-cookies {
        width: 100%;
        padding: 0.7rem 0;
    }
}

/* Dropdown Filiais Styles */
.nav-menu .dropdown-unidades {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-toggle:hover {
    color: var(--secondary-color);
}

.dropdown-menu-filiais {
    position: absolute;
    top: 100%;
    left: -100px;
    transform: translateX(-50%);
    min-width: 350px;
    max-width: 95vw;
    max-height: 75vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(2,120,130,0.13);
    z-index: 3000;
    padding: 1.5rem 1rem 1rem 1rem;
    display: none;
}
.dropdown-unidades.open .dropdown-menu-filiais,
.dropdown-unidades:focus-within .dropdown-menu-filiais {
    display: block;
}
.close-filiais-modal {
    display: none;
}
@media (max-width: 768px) {
    .dropdown-menu-filiais {
        z-index: 4000 !important;
    }
    .dropdown-unidades.open .dropdown-menu-filiais,
    .dropdown-unidades:focus-within .dropdown-menu-filiais {
        display: block !important;
    }
    .close-filiais-modal {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 2.2rem;
        color: var(--primary-color);
        background: none;
        border: none;
        z-index: 5100;
        cursor: pointer;
        transition: color 0.2s;
    }
    .close-filiais-modal:hover {
        color: var(--accent-color);
    }
}

.filiais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.filial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--lighter-gray);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1rem 0.5rem 0.7rem 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    cursor: pointer;
    border: 1px solid var(--light-gray);
    min-width: 140px;
}

.filial-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.7rem;
    filter: grayscale(1) brightness(0.85);
    transition: filter 0.4s, box-shadow 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.filial-card:hover img,
.filial-card:focus img {
    filter: grayscale(0) brightness(1);
    box-shadow: 0 4px 16px rgba(2,120,130,0.13);
}

.filial-card span {
    text-align: center;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.2rem;
}

.filial-card:hover,
.filial-card:focus {
    background: #fff;
    box-shadow: 0 8px 24px rgba(2,120,130,0.13);
    transform: translateY(-4px) scale(1.04);
}

@media (max-width: 900px) {
    .dropdown-menu-filiais {
        min-width: 320px;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .filiais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .dropdown-menu-filiais {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 90vw !important;
        height: 100vh !important;
        min-width: unset !important;
        max-width: unset !important;
        border-radius: 0 !important;
        box-shadow: 0 8px 32px rgba(2,120,130,0.13);
        background: #fff;
        z-index: 3000 !important;
        display: none;
        opacity: 1;
        pointer-events: auto;
        padding: 2.5rem 1rem 1rem 1rem;
        transform: none !important;
        transition: none;
        overflow-y: auto;
        justify-content: center;
        align-items: center;
    }
    .dropdown-unidades.open .dropdown-menu-filiais,
    .dropdown-unidades:focus-within .dropdown-menu-filiais {
        display: block !important;
    }
    .close-filiais-modal {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 2.2rem;
        color: var(--primary-color);
        background: none;
        border: none;
        z-index: 3100;
        cursor: pointer;
        transition: color 0.2s;
    }
    .close-filiais-modal:hover {
        color: var(--accent-color);
    }
    .filiais-grid {
        grid-template-columns: 2fr;
    }
    .filial-card img {
        width: 70px;
        height: 70px;
    }
}

/* Hero Parallax para Filiais */
.filial-hero.parallax {
    min-height: 50vh;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filial-hero-overlay {
    background: rgba(2, 120, 130, 0.55);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.filial-hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.25);
    z-index: 2;
    position: relative;
    text-align: center;
}

.filial-hero .filial-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .filial-hero-overlay h1 {
        font-size: 2rem;
    }
    .filial-hero.parallax {
        min-height: 30vh;
    }
}

.filial-content {
    padding: 4rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.filial-content .container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(2,120,130,0.07);
    padding: 2rem;
}

/* === MOSAICO DINÂMICO CENTRALIZADO === */
.galeria-mosaico {
  padding: 48px 0 64px 0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mosaico-grid.masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 120px);
  grid-gap: 18px;
  grid-template-areas:
    "a a b b c c"
    "d e b b f f"
    "d e g h f f"
    "i i g h j j";
  justify-content: center;
  align-content: center;
  min-width: 320px;
  max-width: 1100px;
  margin: 0 auto;
}
.mosaico-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,40,90,0.08);
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: mosaicoFadeIn 0.8s cubic-bezier(.4,1.4,.6,1) both;
  z-index: 1;
}
.mosaico-item.large { grid-area: a; }
.mosaico-item.wide { grid-area: b; }
.mosaico-item.tall { grid-area: c; }
.mosaico-item:nth-child(4) { grid-area: d; }
.mosaico-item:nth-child(5) { grid-area: e; }
.mosaico-item:nth-child(6) { grid-area: f; }
.mosaico-item:nth-child(7) { grid-area: g; }
.mosaico-item:nth-child(8) { grid-area: h; }
.mosaico-item:nth-child(9) { grid-area: i; }
.mosaico-item:nth-child(10) { grid-area: j; }
.mosaico-item img,
.mosaico-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: filter 0.3s, transform 0.3s;
}
.mosaico-item:hover img,
.mosaico-item:hover video {
  filter: brightness(0.8) blur(1px);
  transform: scale(1.04) rotate(-1deg);
}
.mosaico-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 120, 130, 0.92);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.mosaico-item:hover .mosaico-overlay {
  opacity: 1;
  pointer-events: all;
}
.mosaico-zoom {
  background: #fff;
  color: #1a237e;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30,40,90,0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.mosaico-zoom:hover {
  background: #1a237e;
  color: #fff;
  transform: scale(1.1);
}
@media (max-width: 900px) {
  .mosaico-grid.masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(8, 100px);
    grid-template-areas:
      "a a b"
      "d e b"
      "d e f"
      "g h f"
      "g h j"
      "i i j"
      "i i j"
      "i i j";
  }
}
@media (max-width: 600px) {
  .mosaico-grid.masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(10, 90px);
    grid-template-areas:
      "a b"
      "d b"
      "d f"
      "g f"
      "g j"
      "i j"
      "i j"
      "i j"
      "e h"
      "c h";
  }
}

.mosaico-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0 top: 0; width: 100vw; height: 100vh;
  background: rgba(20,30,50,0.92);
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.4s;
}
.mosaico-modal.active {
  display: flex;
}
.mosaico-modal-content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mosaico-modal-content img,
.mosaico-modal-content video,
.mosaico-modal-content iframe {
  max-width: 80vw;
  max-height: 70vh;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(30,40,90,0.18);
  background: #fff;
}
.mosaico-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.mosaico-close:hover {
  color: #ff5252;
}
@media (max-width: 700px) {
  .mosaico-modal-content img,
  .mosaico-modal-content video,
  .mosaico-modal-content iframe {
    max-width: 98vw;
    max-height: 50vh;
  }
  .mosaico-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
  }
}

.upload-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #027882;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 6px;
  margin-bottom: 0;
}
.upload-label i {
  font-size: 1.2em;
}
.upload-label:hover {
  background: #015c63;
  color: #fff;
}

.styled-privacy {
  background: #f8fafc;
  padding: 48px 0 64px 0;
  min-height: 60vh;
}
.privacy-container {
  background: #fff;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(30,40,90,0.08);
  padding: 40px 32px 32px 32px;
}
.privacy-container h1 {
  font-size: 2.2rem;
  color: #1a237e;
  margin-bottom: 18px;
  margin-top: 20px;
  text-align: center;
}
.privacy-intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 28px;
  text-align: center;
}
.privacy-content h2 {
  color: #027882;
  font-size: 1.25rem;
  margin-top: 28px;
  margin-bottom: 8px;
}
.privacy-content p {
  color: #333;
  margin-bottom: 16px;
  line-height: 1.7;
}
.privacy-content a {
  color: #027882;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .privacy-container {
    padding: 24px 8px 18px 8px;
  }
  /* Ocultar botão mobile-close em desktop */

  .privacy-container h1 {
    font-size: 1.3rem;
  }
}

.familia-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(2,120,130,0.07);
}
.familia-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}
.accordion {
  width: 100%;
}
.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.accordion-title {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: none;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.accordion-title:hover,
.accordion-title.active {
  background: #f0f8fa;
}
.accordion-icons {
  display: flex;
  align-items: center;
  position: relative;
}
.accordion-icons .fa-chevron-down {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 10px;
  font-size: 0.9em;
  color: #666;
}
.accordion-icons .fa-times {
  display: none;
  margin-left: 10px;
  font-size: 1.1em;
  color: #666;
  transition: color 0.2s;
}
.accordion-item.open .accordion-icons .fa-chevron-down {
  display: none;
}
.accordion-item.open .accordion-icons .fa-times {
  display: inline-block;
}
.accordion-item.open .accordion-content {
  max-height: 600px;
  opacity: 1;
  padding: 1rem;
  background-color: #f0f8fa;
  animation: slide-reveal 1s ease forwards;
  opacity: 1;
}
.accordion-content a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}
.accordion-content a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

@keyframes slide-reveal {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0% 0);
  }
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #f9f9f9;
  transition: max-height 1s cubic-bezier(.4,2,.6,1), opacity 0.9s cubic-bezier(.4,2,.6,1), padding 0.4s;
}
.accordion-item.open .accordion-content {
  max-height: 600px;
  opacity: 1;
  padding: 1rem;
  background-color: #f0f8fa;
  animation: slide-reveal 1s ease forwards;
}

.aba-title {
  text-align: center;
  color: #1a3a4a;
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  margin-top: 2.2rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float img {
    width: 34px;
    height: 34px;
    display: block;
}
.whatsapp-float:hover {
    box-shadow: 0 8px 24px rgba(37,211,102,0.25);
    transform: scale(1.07);
    background: #1ebe5d;
}
@media (max-width: 600px) {
    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
    }
    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}

/* Ocultar botão de leitura no mobile */
#toggleLeitura {
    display: none !important;
}

/* Ocultar botão mobile-close em telas maiores */
@media (min-width: 1025px) {
    .mobile-close {
        display: none !important;
    }
}

/* Mostrar botão mobile-close apenas no mobile quando menu estiver aberto */
@media (max-width: 1024px) {
    .nav-menu.open .mobile-close {
        display: flex !important;
    }
}
