/* ============================================
   RESET E VARIÁVEIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e5f8c;
    --primary-dark: #0f3d5c;
    --primary-light: #4a8bc2;
    --secondary-color: #25d366;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --text-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1e5f8c 0%, #4a8bc2 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 95, 140, 0.95) 0%, rgba(15, 61, 92, 0.95) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 247, 250, 1) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 15px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */
.header {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(30, 95, 140, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}


.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 95, 140, 0.85) 0%, rgba(15, 61, 92, 0.85) 100%), url('images/pic-5.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 61, 92, 0.4);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 4rem 0 6rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-online {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    background: var(--secondary-color);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #20ba5a;
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(37, 211, 102, 0.5);
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    color: var(--bg-white);
    overflow: hidden;
    z-index: 2;
}

.hero-waves svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header .highlight {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.9;
}

.section-tagline {
    font-size: 1.375rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(37, 211, 102, 0.1);
    color: var(--secondary-color);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--gradient-card);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    text-align: center;
    border: 1px solid rgba(30, 95, 140, 0.08);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 95, 140, 0.2);
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    transition: var(--transition-slow);
    box-shadow: 0 8px 25px rgba(30, 95, 140, 0.3);
    overflow: hidden;
}

.card-icon.card-icon-image {
    background: white;
    padding: 8px;
    width: 150px;
    height: 150px;
}

.card-icon.card-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(30, 95, 140, 0.4);
}

.card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
}

/* ============================================
   REABILITAÇÃO
   ============================================ */
.reabilitacao {
    background: var(--bg-light);
    padding: 4rem 0;
}

/* ============================================
   INTERNAÇÕES
   ============================================ */
.internacoes {
    background: white;
}

.cta-section {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--gradient-primary);
    border-radius: 25px;
    margin-top: 4rem;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-section p {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
    background: var(--bg-light);
}

.sobre-content {
    max-width: 950px;
    margin: 0 auto;
}

.sobre-text p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.sobre-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================
   TRATAMENTOS
   ============================================ */
.tratamentos {
    background: white;
}

/* ============================================
   VALORES
   ============================================ */
.valores {
    background: var(--bg-light);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.valor-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    position: relative;
}

.valor-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.valor-card:hover::after {
    transform: scaleX(1);
}

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(30, 95, 140, 0.25);
}

.valor-card:hover .valor-icon {
    transform: scale(1.1) rotate(-5deg);
}

.valor-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.valor-card p {
    color: var(--text-light);
    line-height: 1.9;
}

/* ============================================
   ESTRUTURA
   ============================================ */
.estrutura {
    background: white;
}

.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.estrutura-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition-slow);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.estrutura-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 20px;
    transition: var(--transition);
}

.estrutura-item:hover::before {
    opacity: 0.03;
}

.estrutura-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: white;
}

.estrutura-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.75rem;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(30, 95, 140, 0.25);
    position: relative;
    z-index: 1;
}

.estrutura-item:hover .estrutura-icon {
    transform: scale(1.1) rotate(-5deg);
}

.estrutura-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.estrutura-item p {
    color: var(--text-light);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

/* ============================================
   UNIDADES E CARROSSEL
   ============================================ */
.unidades {
    background: var(--bg-light);
    padding: 6rem 0;
}

.carrossel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.carrossel-track {
    position: relative;
}

.unidade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.unidade-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative;
    pointer-events: auto;
}

.unidade-content {
    text-align: center;
}

.unidade-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.unidade-images {
    position: relative;
    margin-bottom: 2.5rem;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrossel-inner {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.carrossel-inner::-webkit-scrollbar {
    height: 8px;
}

.carrossel-inner::-webkit-scrollbar-track {
    background: transparent;
}

.carrossel-inner::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.carrossel-slide-item {
    flex: 0 0 calc(25% - 0.94rem);
    min-width: 220px;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.carrossel-slide-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.carrossel-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.carrossel-slide-item:hover img {
    transform: scale(1.1);
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.carrossel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-xl);
}

.carrossel-btn.prev {
    left: 1.5rem;
}

.carrossel-btn.next {
    right: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(30, 95, 140, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(30, 95, 140, 0.4);
}

.carrossel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.carrossel-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-size: 1rem;
}

.carrossel-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.carrossel-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.4);
    box-shadow: 0 4px 12px rgba(30, 95, 140, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-logo h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer-contact {
    margin: 2rem 0;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-section h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.9;
}

.footer-agencia {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        justify-content: space-between;
        padding: 1rem 0;
    }

    .logo-img {
        height: 50px;
        max-width: 180px;
    }

    .btn-whatsapp span {
        display: none;
    }

    .btn-whatsapp {
        padding: 0.875rem 1.25rem;
        font-size: 1.125rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .cards-grid,
    .valores-grid,
    .estrutura-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .carrossel-wrapper {
        max-width: 100%;
    }

    .carrossel-slide-item {
        flex: 0 0 calc(33.333% - 0.83rem);
        min-width: 200px;
    }

    .carrossel-nav-btn span {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 0.875rem 0;
    }

    .logo-img {
        height: 45px;
        max-width: 160px;
    }

    .btn-whatsapp {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        width: 50px;
        height: 50px;
        justify-content: center;
        border-radius: 50%;
    }

    .hero {
        min-height: 85vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 3rem 0 5rem;
    }

    .status-online {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.875rem;
    }

    .hero-subtitle {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
        margin-bottom: 0.875rem;
    }

    .section-header h3 {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-tagline {
        font-size: 1.125rem;
    }

    .cards-grid,
    .valores-grid,
    .estrutura-grid {
        gap: 1.75rem;
    }

    .card,
    .valor-card {
        padding: 2rem 1.5rem;
    }

    .card-icon,
    .card-icon.card-icon-image {
        width: 80px;
        height: 80px;
    }

    .card-icon.card-icon-image {
        width: 130px;
        height: 130px;
    }

    .card h3,
    .valor-card h3 {
        font-size: 1.375rem;
    }

    .card p,
    .valor-card p {
        font-size: 0.95rem;
    }

    .estrutura-item {
        padding: 1.75rem 1.5rem;
    }

    .estrutura-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .estrutura-item h3 {
        font-size: 1.25rem;
    }

    .estrutura-item p {
        font-size: 0.95rem;
    }

    .carrossel-wrapper {
        margin: 0 -15px;
        max-width: calc(100% + 30px);
    }

    .carrossel-slide-item {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 170px;
    }

    .carrossel-inner {
        padding: 1.25rem;
        gap: 1rem;
    }

    .unidade-slide {
        padding: 2rem 1.5rem;
    }

    .unidade-content h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .unidade-images {
        margin-bottom: 2rem;
        min-height: 350px;
    }

    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carrossel-btn.prev {
        left: 0.75rem;
    }

    .carrossel-btn.next {
        right: 0.75rem;
    }

    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .carrossel-controls {
        flex-direction: column;
        gap: 1.25rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .carrossel-nav-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .carrossel-nav-btn span {
        display: inline;
    }

    .carrossel-indicators {
        gap: 0.75rem;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
        margin-top: 2.5rem;
    }

    .cta-section p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .footer {
        padding: 3.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-whatsapp {
        font-size: 1.125rem;
    }

    .footer-section h4 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .sobre-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-content {
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .logo-img {
        height: 40px;
        max-width: 140px;
    }

    .btn-whatsapp {
        padding: 0.625rem;
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .hero {
        min-height: 75vh;
        padding: 1.5rem 0;
    }

    .hero-content {
        padding: 2rem 0 3.5rem;
    }

    .status-online {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
        margin-bottom: 1.5rem;
    }

    .status-dot {
        width: 8px;
        height: 8px;
    }

    .hero-title {
        font-size: 1.625rem;
        margin-bottom: 0.75rem;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .btn-primary {
        padding: 0.9375rem 1.75rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .section-header h2 {
        font-size: 1.625rem;
        margin-bottom: 0.75rem;
    }

    .section-header h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .section-header .highlight {
        font-size: 1.625rem;
    }

    .section-description {
        font-size: 0.9375rem;
        padding: 0 1rem;
        line-height: 1.7;
    }

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .status-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-top: 1rem;
    }

    .cards-grid,
    .valores-grid,
    .estrutura-grid {
        gap: 1.5rem;
    }

    .card,
    .valor-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }

    .card-icon.card-icon-image {
        width: 110px;
        height: 110px;
    }

    .card h3,
    .valor-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .card p,
    .valor-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .valor-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .estrutura-item {
        padding: 1.5rem 1.25rem;
        border-left-width: 4px;
    }

    .estrutura-icon {
        width: 55px;
        height: 55px;
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .estrutura-item h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .estrutura-item p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .carrossel-wrapper {
        margin: 0 -12px;
        max-width: calc(100% + 24px);
    }

    .carrossel-slide-item {
        flex: 0 0 calc(100% - 1rem);
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
    }

    .carrossel-inner {
        padding: 1rem;
        gap: 0.75rem;
    }

    .unidade-slide {
        padding: 1.5rem 1rem;
    }

    .unidade-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .unidade-images {
        margin-bottom: 1.5rem;
        min-height: 280px;
    }

    .carrossel-btn {
        width: 44px;
        height: 44px;
        font-size: 0.9375rem;
    }

    .carrossel-btn.prev {
        left: 0.5rem;
    }

    .carrossel-btn.next {
        right: 0.5rem;
    }

    .btn-secondary {
        padding: 0.9375rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .carrossel-controls {
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .carrossel-nav-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .carrossel-nav-btn span {
        display: inline;
        font-size: 0.875rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .cta-section {
        padding: 2rem 1.25rem;
        margin-top: 2rem;
        border-radius: 20px;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .cta-section .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
        bottom: 15px;
        right: 15px;
    }

    .footer {
        padding: 3rem 0 1.25rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo h3 {
        font-size: 1.375rem;
    }

    .footer-logo span {
        font-size: 0.875rem;
    }

    .footer-whatsapp {
        font-size: 1rem;
    }

    .footer-section h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.625rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.875rem;
    }

    .footer-agencia {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .status-online {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.375rem;
    }

    .sobre-text p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        line-height: 1.8;
    }

    .reabilitacao {
        padding: 3rem 0;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .btn-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header h3 {
        font-size: 1.125rem;
    }

    .card,
    .valor-card {
        padding: 1.5rem 1rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .card-icon.card-icon-image {
        width: 100px;
        height: 100px;
    }

    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .unidade-content h3 {
        font-size: 1.375rem;
    }

    .carrossel-wrapper {
        margin: 0 -10px;
        max-width: calc(100% + 20px);
    }

    .carrossel-inner {
        padding: 0.875rem;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        bottom: 12px;
        right: 12px;
    }
}

/* ============================================
   ANIMAÇÕES E EFEITOS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Scroll suave melhorado */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading states */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

img[loading="lazy"] {
    transition: opacity 0.3s;
}

/* Melhorias de performance */
.card,
.valor-card,
.estrutura-item {
    will-change: transform;
}

/* Focus states para acessibilidade */
a:focus,
button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Seleção de texto */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}
