/* ============================================================
   MEDCLIN — Clínica Veterinária
   Design inspirado no Creature Comforts (creaturecomforts.co.uk)
   Paleta suave · Tipografia amigável · Cantos arredondados
   ============================================================ */

/* ============================
   CSS VARIABLES
   ============================ */
:root {
    /* Primary - Azul Turquesa (Turquoise) */
    --primary: #00acc1;
    --primary-dark: #0097a7;
    --primary-darker: #00838f;
    --primary-light: #26c6da;
    --primary-lighter: #4dd0e1;
    --primary-50: #e0f7fa;
    --primary-100: #b2ebf2;
    --primary-200: #80deea;

    /* Accent - Azul Marinho (Navy Blue) */
    --accent: #1e3a5f;
    --accent-dark: #152a45;
    --accent-light: #2d4a6f;
    --accent-lighter: #3d5a7f;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic */
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Surfaces */
    --bg: #ffffff;
    --bg-soft: #e0f7fa;
    --bg-muted: #f8fafc;
    --bg-dark: #1e3a5f;

    /* Typography */
    --font-primary: 'Nunito', sans-serif;
    --font-display: 'Quicksand', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-py: 80px;
    --section-py-lg: 100px;

    /* Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,172,193,.06);
    --shadow: 0 4px 20px rgba(0,172,193,.10);
    --shadow-md: 0 8px 30px rgba(0,172,193,.14);
    --shadow-lg: 0 12px 40px rgba(0,172,193,.18);
    --shadow-xl: 0 20px 60px rgba(0,172,193,.22);

    /* Transition */
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --transition-fast: .15s ease;
    --transition-slow: .5s cubic-bezier(.4,0,.2,1);

    /* Navbar */
    --navbar-h: 80px;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: var(--navbar-h); 
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--bg);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
a:hover { color: var(--primary); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-800);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
    color: var(--gray-800);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-header.center { text-align: center; }

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--primary-50);
    border-color: var(--primary-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,.3);
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    transition: all var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    height: 70px;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    transition: color var(--transition);
}
.nav-logo img {
    height: 48px;
    transition: height var(--transition);
}
.scrolled .nav-logo { color: var(--primary); }
.scrolled .nav-logo img { height: 42px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.12);
}
.scrolled .nav-link { color: var(--gray-600); }
.scrolled .nav-link:hover,
.scrolled .nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-actions-mobile {
    display: none;
}

.btn-action {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.btn-resultado {
    background: var(--primary);
    color: var(--white);
}
.btn-resultado:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,148,136,.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    padding: 8px 4px;
    /* Reset completo para Safari/iOS */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    position: relative;
    z-index: 1001;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    pointer-events: none;
}
.scrolled .nav-toggle span { background: var(--gray-700); }

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.70) 50%, rgba(13,148,136,.55) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding-left: 5%;
}

.hero-content {
    max-width: 780px;
    padding: 140px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,.20);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.25);
    text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-lighter), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,1);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0,0,0,.35);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-actions .btn {
    padding: 16px 32px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-stats .stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(255,255,255,.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,.35);
    border-radius: var(--radius-lg);
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.hero-stats .stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.35);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 26px;
}
.hero-stats .stat-info { display: flex; flex-direction: column; }
.hero-stats .stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,.4);
}
.hero-stats .stat-label {
    font-size: 15px;
    color: rgba(255,255,255,1);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
    margin-top: 4px;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.hero-dots .dot.active {
    background: var(--white);
    transform: scale(1.25);
}

/* ============================
   FEATURES BAR
   ============================ */
.features-bar {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    padding: 0 24px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid #e6ebea;
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}
.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-800);
}
.feature-text p {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    padding: var(--section-py-lg) 0;
    background: var(--bg);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
}
.image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.experience-badge .years {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .85;
}

.about-content { display: flex; flex-direction: column; }
.about-content .section-title { font-size: clamp(26px, 3.5vw, 36px); }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--primary-50);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.about-feature:hover {
    background: var(--primary-100);
    transform: translateX(4px);
}
.about-feature i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.about-feature strong {
    display: block;
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 2px;
}
.about-feature span {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================
   SERVICES SECTION (Index)
   ============================ */
.services-section {
    padding: var(--section-py-lg) 0;
    background: var(--bg-soft);
    position: relative;
}
.services-bg {
    position: absolute;
    inset: 0;
    opacity: .02;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9488'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}
.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}
.service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition-fast);
}
.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}
.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================
   PEACE OF MIND SECTION
   ============================ */
.peace-section {
    padding: var(--section-py) 0;
    background: var(--white);
}
.peace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.peace-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.peace-item:hover {
    background: var(--primary-50);
    transform: translateY(-4px);
}
.peace-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 32px;
}
.peace-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
.peace-item p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}
.cta-text h2 {
    font-size: clamp(24px, 3vw, 34px);
    color: var(--white);
    margin-bottom: 12px;
}
.cta-text p {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    max-width: 500px;
    margin: 0 auto 24px;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================
   LOCATION SECTION
   ============================ */
.location-section {
    padding: var(--section-py-lg) 0;
    background: var(--bg);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.location-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
}
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.info-card:hover {
    background: var(--primary-100);
    transform: translateX(4px);
}
.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}
.info-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.info-content p,
.info-content a {
    font-size: 14px;
    color: var(--gray-500);
}
.info-content a:hover { color: var(--primary); }
.info-content .small {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 2px;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ============================
   PAGE HEADER (inner pages)
   ============================ */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v22H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-header-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 12px;
}
.page-header-content p {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    max-width: 500px;
    margin: 0 auto;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
}
.breadcrumb a {
    color: rgba(255,255,255,.65);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,.4);
}
.breadcrumb span {
    color: var(--accent-light);
    font-weight: 600;
}

/* Page Hero (exames) */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 12px;
}
.page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    max-width: 500px;
    margin: 0 auto 20px;
}
.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}
.page-breadcrumb a {
    color: rgba(255,255,255,.65);
}
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,.4);
}
.page-breadcrumb span {
    color: var(--accent-light);
    font-weight: 600;
}

/* ============================
   ABOUT INTRO (Sobre)
   ============================ */
.about-intro {
    padding: var(--section-py-lg) 0;
    background: var(--white);
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-intro-content .section-title {
    font-size: clamp(26px, 3.5vw, 38px);
}
.about-text p { margin-bottom: 16px; color: var(--gray-600); }
.about-text .lead {
    font-size: 18px;
    color: var(--gray-700);
    font-weight: 600;
    line-height: 1.7;
}
.about-intro-image { position: relative; }
.image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 3px solid var(--primary-200);
    border-radius: var(--radius-xl);
    z-index: -1;
}
.experience-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}
.experience-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius);
    font-size: 24px;
}
.experience-text .number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.experience-text .label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .85;
}

/* ============================
   MVV SECTION (Sobre)
   ============================ */
.mvv-section {
    padding: var(--section-py) 0;
    background: var(--bg-soft);
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mvv-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-top: 4px solid transparent;
}
.mvv-card.mission { border-top-color: var(--primary); }
.mvv-card.vision { border-top-color: var(--accent); }
.mvv-card.values { border-top-color: var(--success); }
.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.mvv-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 26px;
    margin-bottom: 20px;
}
.mvv-card.mission .mvv-icon { background: var(--primary-50); color: var(--primary); }
.mvv-card.vision .mvv-icon { background: #fffbeb; color: var(--accent); }
.mvv-card.values .mvv-icon { background: #f0fdf4; color: var(--success); }
.mvv-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}
.mvv-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}
.mvv-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.mvv-card ul li {
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--gray-600);
}
.mvv-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ============================
   DIFFERENTIALS SECTION (Sobre)
   ============================ */
.differentials-section {
    padding: var(--section-py-lg) 0;
    background: var(--white);
}
.differentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.differentials-content .section-title {
    font-size: clamp(26px, 3.5vw, 36px);
}
.differentials-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}
.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.differential-item:hover {
    background: var(--primary-50);
    transform: translateX(4px);
}
.differential-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}
.differential-text strong {
    display: block;
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 2px;
}
.differential-text span {
    font-size: 14px;
    color: var(--gray-500);
}

.differentials-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.differentials-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ============================
   STATS SECTION (Sobre + Hero)
   ============================ */
.stats-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stats-carousel {
    overflow: hidden;
}
.stats-section .stat-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}
.stats-section .stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    margin: 0 auto 14px;
    color: var(--white);
    font-size: 24px;
}
.stats-section .stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.stats-section .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

/* ============================
   COMMITMENT SECTION (Sobre)
   ============================ */
.commitment-section {
    padding: var(--section-py) 0;
    background: var(--bg-soft);
}
.commitment-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.commitment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 32px;
}
.commitment-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 16px;
}
.commitment-content p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
}
.commitment-quote {
    margin-top: 28px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    font-style: italic;
    font-size: 17px;
    color: var(--gray-600);
    box-shadow: var(--shadow-sm);
}

/* ============================
   SERVICES PAGE (Full)
   ============================ */
.services-intro {
    padding: 64px 0;
    background: var(--bg-soft);
    text-align: center;
}
.services-intro-content { max-width: 600px; margin: 0 auto; }
.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary-50);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.intro-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
}
.intro-stat {
    text-align: center;
}
.intro-stat .number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}
.intro-stat .label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.services-main {
    padding: var(--section-py) 0;
    background: var(--white);
}

.services-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
}
.filter-btn:hover {
    color: var(--primary);
    background: var(--primary-50);
}
.filter-btn.active {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-full {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}
.service-card-full:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}
.service-card-header {
    padding: 28px 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}
.service-icon-large {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 26px;
    flex-shrink: 0;
    transition: all var(--transition);
}
.service-card-full:hover .service-icon-large {
    background: var(--primary);
    color: var(--white);
}
.service-card-header h3 {
    font-size: 18px;
    font-weight: 700;
}
.service-card-body {
    padding: 16px 24px;
    flex-grow: 1;
}
.service-card-body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 14px;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.service-features li {
    font-size: 13px;
    color: var(--gray-600);
    padding-left: 16px;
    position: relative;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
}
.service-card-footer {
    padding: 16px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}
.delivery-time {
    font-size: 12px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 4px;
}
.service-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: var(--primary-50);
    color: var(--primary);
}
.service-badge.urgencia {
    background: #fef2f2;
    color: #ef4444;
}

/* ============================
   WORKFLOW SECTION (Servicos)
   ============================ */
.workflow-section {
    padding: var(--section-py) 0;
    background: var(--bg-soft);
}
.workflow-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
    position: relative;
}
.workflow-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--primary-200);
    z-index: 1;
}
.workflow-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    flex: 1;
    max-width: 220px;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.step-icon {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}
.workflow-step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.workflow-step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}
.workflow-connector {
    display: none;
}
.workflow-step:last-child .workflow-connector { display: none; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-info-section {
    padding: var(--section-py) 0;
    background: var(--bg-soft);
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-info-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.contact-info-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 24px;
}
.contact-info-detail h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.contact-info-detail p,
.contact-info-detail a {
    font-size: 14px;
    color: var(--gray-500);
}
.contact-info-detail a:hover { color: var(--primary); }

/* Contact Main (FAQ + Map) */
.contact-main-section {
    padding: var(--section-py) 0;
    background: var(--white);
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-form-wrapper {
    padding: 4px 0;
}
.contact-form-desc {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}
.faq-item.active {
    border-color: var(--primary-200);
    background: var(--primary-50);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    text-align: left;
    background: none;
    border: none;
    font-family: inherit;
    transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
    font-size: 12px;
    transition: transform var(--transition);
    color: var(--gray-400);
}
.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Contact Map */
.contact-map-wrapper {}
.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}
.contact-map iframe {
    width: 100%;
    height: 360px;
    border: none;
}
.contact-map-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.map-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
}
.map-info-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials-section {
    padding: var(--section-py) 0;
    background: var(--bg-soft);
}

.btn-deixe-depoimento {
    margin-top: 16px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    margin: 0 8px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-100);
}
.testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
}
.testimonial-author small {
    font-size: 12px;
    color: var(--gray-400);
}
.testimonial-stars {
    color: var(--accent);
    font-size: 13px;
    display: flex;
    gap: 2px;
    margin-top: 2px;
}
.testimonial-text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    min-height: 80px;
}
.testimonial-quote {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    font-style: italic;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 14px;
}
.testimonial-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Contact CTA */
.contact-cta-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.contact-cta {
    text-align: center;
}
.contact-cta-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--white);
    margin-bottom: 12px;
}
.contact-cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    max-width: 500px;
    margin: 0 auto 24px;
}
.contact-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================
   MODAL (Generic + Resultado)
   ============================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalIn .3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-decor {
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    z-index: 2;
}
.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-content {
    padding: 40px 32px 32px;
    text-align: center;
}
.modal-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
}
.modal-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}
.modal-content p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.modal-form .form-group {
    margin-bottom: 16px;
    text-align: left;
}
.modal-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
}
.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 16px;
}
.input-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    transition: all var(--transition-fast);
    background: var(--gray-50);
    color: var(--gray-700);
}
.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================
   MODAL DEPOIMENTO (estilos base)
   ============================ */

.contact-form {
    padding: 0 32px 32px;
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.contact-form-group {
    margin-bottom: 14px;
}
.contact-form-group.full-width {
    grid-column: span 2;
}
.contact-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.contact-input-wrapper {
    position: relative;
}
.contact-input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 15px;
}
.contact-input-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    transition: all var(--transition-fast);
    background: var(--gray-50);
    color: var(--gray-700);
}
.contact-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}

.is-invalid {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}
.contact-input-wrapper:has(.is-invalid) {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
.invalid-feedback { font-size: 12px; color: var(--danger); margin-top: 4px; }
.invalid-feedback.d-block { display: block; min-height: 16px; }

/* Avatar Selector */
.avatar-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}
.avatar-option {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-fast);
    opacity: .6;
}
.avatar-option:hover {
    opacity: .85;
    border-color: var(--gray-300);
}
.avatar-option.selected {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(13,148,136,.2);
}
.avatar-selected-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.avatar-preview-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.avatar-preview-label {
    font-size: 13px;
    color: var(--gray-500);
}
.avatar-selected-preview.has-avatar .avatar-preview-label {
    color: var(--primary);
    font-weight: 600;
}

.textarea-wrapper { position: relative; }
.textarea-wrapper i {
    position: absolute;
    left: 14px;
    top: 14px;
    color: var(--gray-400);
    font-size: 15px;
}
.textarea-wrapper textarea {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    transition: all var(--transition-fast);
    background: var(--gray-50);
    color: var(--gray-700);
    font-family: inherit;
}
.textarea-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}

.btn-submit-depoimento {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit-depoimento:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #00838f;
    color: #ffffff;
    position: relative;
    z-index: 10;
    margin-top: 0;
    padding-top: 0;
}

/* Onda Superior do Footer */
.footer-wave-top {
    position: absolute;
    top: -59px;
    left: 0;
    width: 100%;
    line-height: 0;
    color: #00838f;
    pointer-events: none;
}

.footer-wave-top svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-main {
    padding: 60px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer Brand */
.footer-brand {}
.footer-logo-img {
    height: 50px;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,.95);
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 16px;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--white);
    color: var(--primary-darker);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links ul li a,
.footer-services ul li a {
    font-size: 14px;
    color: rgba(255,255,255,.95);
    transition: all var(--transition-fast);
}
.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.95);
}
.contact-list li i {
    color: #ffffff;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.25);
}
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}
.footer-bottom-row span { color: rgba(255,255,255,.9); }
.bensvet-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    transition: all var(--transition-fast);
    font-size: 14px;
    font-weight: 600;
}
.bensvet-link img {
    height: 26px;
    opacity: 1;
    transition: opacity var(--transition-fast);
    filter: brightness(1.2);
}
.bensvet-link:hover {
    color: var(--white);
    transform: scale(1.05);
}
.bensvet-link:hover img {
    opacity: 1;
    filter: brightness(1.3);
}

/* Footer Responsivo */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-wave-top {
        top: -39px;
    }
    
    .footer-wave-top svg {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 400px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-services,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        align-items: center;
    }
    
    .contact-list {
        align-items: center;
    }
    
    .contact-list li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-wave-top {
        top: -29px;
    }
    
    .footer-wave-top svg {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-wave-top {
        top: -24px;
    }
    
    .footer-wave-top svg {
        height: 25px;
    }
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: all var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,.5);
    color: var(--white);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,.6); }
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   ALERT SUCCESS
   ============================ */
.alert-success-float {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    padding: 16px 24px;
    background: #22c55e;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 30px rgba(34,197,94,.3);
    animation: slideInRight .4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================
   TOAST NOTIFICATIONS
   ============================ */
.toast-erro,
.toast-sucesso {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight .3s ease;
    max-width: 400px;
}
.toast-erro {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    box-shadow: 0 8px 30px rgba(220,38,38,.15);
}
.toast-sucesso {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    box-shadow: 0 8px 30px rgba(34,197,94,.15);
}
.toast-erro .fechar,
.toast-sucesso .fechar {
    margin-left: auto;
    cursor: pointer;
    opacity: .6;
}
.toast-erro .fechar:hover,
.toast-sucesso .fechar:hover { opacity: 1; }

@keyframes slideOut {
    to { transform: translateX(120%); opacity: 0; }
}

/* Toast de Validação */
.toast-validation {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10001;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: var(--radius);
    padding: 16px 20px;
    max-width: 420px;
    width: calc(100vw - 48px);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
    animation: slideInRight 0.4s ease;
}
.toast-validation-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #dc2626;
    font-size: 15px;
}
.toast-validation-header i {
    font-size: 18px;
}
.toast-validation-header .fechar {
    margin-left: auto;
    cursor: pointer;
    font-size: 20px;
    opacity: 0.6;
    line-height: 1;
    transition: opacity 0.2s;
}
.toast-validation-header .fechar:hover {
    opacity: 1;
}
.toast-validation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.toast-validation-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #991b1b;
    line-height: 1.4;
}
.toast-validation-list li i {
    font-size: 5px;
    margin-top: 6px;
    color: #ef4444;
    flex-shrink: 0;
}

/* ============================
   SOLICITAÇÃO (Exames Form)
   ============================ */
.solicitacao-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}
.solicitacao-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-aviso {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius);
    margin-bottom: 32px;
    color: #92400e;
    font-size: 14px;
}
.form-aviso i { font-size: 20px; color: var(--accent); flex-shrink: 0; }

.form-section {
    margin-bottom: 28px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}
.form-section-header i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 18px;
}
.form-section-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-grid .col-2 { /* already 1fr 1fr, col-2 is default */ }
.form-grid .col-full { grid-column: 1 / -1; }

.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray-700);
    background: var(--gray-50);
    transition: all var(--transition-fast);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-group textarea { resize: vertical; min-height: 60px; }

/* Exam Checkboxes Grid */
.exames-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 8px;
}
.exame-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    font-size: 14px;
}
.exame-check:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
}
.exame-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}
.exame-check span { color: var(--gray-700); font-size: 13px; }

/* Conditional Extra Fields */
.exame-extra.condicional {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .3s ease, margin .3s ease;
    margin-top: 0;
}
.exame-extra.condicional.visivel {
    max-height: 300px;
    opacity: 1;
    margin-top: 14px;
    padding: 16px;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
}
.exame-extra label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    display: block;
    margin-bottom: 4px;
    margin-top: 10px;
}
.exame-extra label:first-child { margin-top: 0; }
.exame-extra input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 13px;
    background: var(--white);
    transition: all var(--transition-fast);
}
.exame-extra input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.radio-group {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}
.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 0;
}
.radio-group input { accent-color: var(--primary); cursor: pointer; }

/* Form Summary */
.form-resumo {
    background: var(--primary-50);
    border-color: var(--primary-200);
}
.resumo-lista { margin-bottom: 20px; }
.resumo-vazio {
    font-size: 14px;
    color: var(--gray-400);
    font-style: italic;
    text-align: center;
    padding: 12px;
}
.resumo-grupo { margin-bottom: 12px; }
.resumo-grupo strong {
    font-size: 14px;
    color: var(--gray-700);
    display: block;
    margin-bottom: 6px;
}
.resumo-grupo ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 4px;
}
.resumo-grupo ul li {
    font-size: 13px;
    color: var(--gray-600);
    padding-left: 14px;
    position: relative;
}
.resumo-grupo ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.resumo-total {
    font-size: 14px;
    color: var(--primary-dark);
    text-align: right;
    margin-top: 8px;
}

.form-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================
   SWIPER OVERRIDES
   ============================ */
.swiper { overflow: hidden; }
.swiper-wrapper { display: flex; }
.swiper-slide { flex-shrink: 0; }

/* ============================
   RESPONSIVE: TABLET
   ============================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid,
    .about-intro-grid,
    .differentials-grid,
    .location-grid,
    .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid-full { grid-template-columns: repeat(2, 1fr); }
    .peace-grid { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .workflow-timeline { 
        flex-wrap: wrap;
        gap: 24px;
    }
    .workflow-timeline::before {
        display: none;
    }
    .workflow-step {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    .workflow-connector { display: none; }

    .testimonial-card { flex: 0 0 calc(50% - 16px); }

    .about-image { max-width: 500px; margin: 0 auto; }
    .about-intro-image { max-width: 500px; margin: 0 auto; }
    .differentials-image { max-width: 500px; margin: 0 auto; }
    
    .hero-content { max-width: 560px; }
    .hero-stats { flex-wrap: wrap; }

    .nav-menu { display: none; }
    .nav-actions { display: none; }
    .nav-toggle { display: flex; }
}

/* ============================
   RESPONSIVE: MOBILE MENU
   ============================ */
@media (max-width: 1024px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 24px 24px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        z-index: 1000;
        gap: 4px;
    }
    .nav-menu.active > li {
        width: 100%;
    }
    .nav-menu.active .nav-link {
        display: block;
        color: var(--gray-700);
        padding: 12px 16px;
        border-radius: var(--radius);
        width: 100%;
    }
    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link.active {
        background: var(--primary-50);
        color: var(--primary);
    }
    .nav-menu.active .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        margin-top: 12px;
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid var(--gray-200);
    }
    .nav-menu.active .nav-actions-mobile .btn-action {
        width: 100%;
        justify-content: center;
    }
    
    /* Hamburguer animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ============================
   RESPONSIVE: MOBILE
   ============================ */
@media (max-width: 768px) {
    :root {
        --section-py: 56px;
        --section-py-lg: 72px;
        --navbar-h: 70px;
    }

    .container { padding: 0 16px; }

    .hero { min-height: auto; }
    .hero-content { padding: 100px 0 60px; }
    .hero-title { font-size: clamp(28px, 7vw, 42px); }
    .hero-desc { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-direction: column; }
    .hero-stats .stat-card { min-width: 100%; }

    .features-bar { margin-top: -24px; padding: 0 16px; }
    .features-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-item { padding: 18px; }

    .services-grid { grid-template-columns: 1fr; }
    .services-grid-full { grid-template-columns: 1fr; }

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

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

    .contact-info-grid { grid-template-columns: 1fr; }

    .workflow-timeline { 
        flex-direction: column;
        align-items: center;
    }
    .workflow-step {
        flex: none;
        max-width: 280px;
        width: 100%;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .page-header { padding: 130px 0 60px; }
    .page-hero { padding: 130px 0 60px; }

    .testimonial-card { flex: 0 0 calc(100% - 16px); }

    .section-header { margin-bottom: 32px; }

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

    .form-grid { grid-template-columns: 1fr; }
    .form-grid .col-2 { grid-column: 1; }

    .contact-form-row { grid-template-columns: 1fr; }
    .contact-form-group.full-width { grid-column: 1; }

    .avatar-selector { grid-template-columns: repeat(5, 1fr); gap: 6px; }

    .cta-actions { flex-direction: column; align-items: center; }
    .contact-cta-actions { flex-direction: column; align-items: center; }

    .intro-stats { flex-direction: column; gap: 16px; }

    .experience-badge,
    .experience-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .image-accent { display: none; }
}

@media (max-width: 480px) {
    .hero-dots { bottom: 16px; }
    .hero-dots .dot { width: 8px; height: 8px; }
    
    .modal,
    .modal-depoimento {
        margin: 12px;
        max-height: 92vh;
        overflow-y: auto;
    }
    .modal-content { padding: 28px 20px 24px; }
    .contact-form { padding: 0 20px 24px; }
    
    .form-section { padding: 16px; }
    .form-section-header h3 { font-size: 16px; }
    
    .btn { padding: 12px 22px; font-size: 14px; }
    
    .footer-main { padding: 60px 0 32px; }
    
    .services-filter { gap: 6px; }
    .filter-btn { padding: 8px 16px; font-size: 13px; }
}

/* ============================
   PRINT STYLES
   ============================ */
@media print {
    .navbar, .footer, .whatsapp-float, .modal-overlay,
    .hero-dots, .cta-section, .contact-cta-section { display: none !important; }
    body { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
    .page-header, .page-hero { padding-top: 20px; }
}

/* ============================
   SELECTION & SCROLLBAR
   ============================ */
::selection {
    background: var(--primary-200);
    color: var(--primary-darker);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb {
    background: var(--primary-200);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================
   UTILITY: ANIMATION DELAYS
   ============================ */
.reveal:nth-child(1) { transition-delay: .05s; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .15s; }
.reveal:nth-child(4) { transition-delay: .2s; }
.reveal:nth-child(5) { transition-delay: .25s; }
.reveal:nth-child(6) { transition-delay: .3s; }

/* ============================
   DICAS DA VETERINÁRIA PAGE
   ============================ */
.dicas-section {
    padding: 5rem 0;
    background: var(--light);
}

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

.dica-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.dica-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.dica-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dica-icon i {
    font-size: 1.5rem;
    color: white;
}

.dica-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.dica-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.dica-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dica-lista li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.dica-lista li i {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* Emergência Section */
.dicas-emergencia-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
}

.emergencia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.emergencia-item {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 3px solid var(--accent);
}

.emergencia-item i {
    color: var(--accent-dark);
    font-size: 1rem;
}

.emergencia-item span {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.emergencia-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.emergencia-cta p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.emergencia-cta .btn-lg {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}

.emergencia-info {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--primary) !important;
    font-weight: 600;
}

/* Responsivo Dicas */
@media (max-width: 1024px) {
    .dicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .emergencia-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dicas-grid {
        grid-template-columns: 1fr;
    }
    .emergencia-grid {
        grid-template-columns: 1fr;
    }
    .dicas-section {
        padding: 3rem 0;
    }
}

/* ============================
   NOVO DESIGN DIRETO E IMPACTANTE
   ============================ */

/* Hero com Vídeo */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-fallback {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(13, 148, 136, 0.7) 100%); */
    background: linear-gradient(135deg, #0f172a38 0%, #0d948830 100%);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-badge-urgent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

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

.hero-title-impact {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title-impact span {
    color: var(--primary-lighter);
}

.hero-desc-short {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-dark);
}

/* Quick Features */
.quick-features {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.quick-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.quick-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.quick-feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.quick-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.quick-feature p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 991px) {
    .quick-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-feature {
        padding: 25px 15px;
    }
    
    .quick-feature i {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .quick-features {
        padding: 40px 0;
    }
    
    .quick-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .quick-feature {
        padding: 20px 12px;
    }
    
    .quick-feature i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .quick-feature h4 {
        font-size: 0.95rem;
    }
    
    .quick-feature p {
        font-size: 0.8rem;
    }
}

/* Emergency Section */
.emergency-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.emergency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--danger);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.emergency-content .section-title-bold {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.emergency-text {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.emergency-text strong {
    color: var(--gray-800);
}

.emergency-address {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border-left: 4px solid var(--danger);
}

.emergency-address i {
    color: var(--danger);
    font-size: 1.2rem;
}

.emergency-address span {
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
}

.emergency-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--danger);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: #dc2626;
    transform: translateY(-2px);
    color: white;
}

.btn-emergency-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-emergency-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    color: white;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-location:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

.emergency-map {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 400px;
    border: 4px solid white;
}

.emergency-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.emergency-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.emergency-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: white;
}

.section-title-center {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 48px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: var(--primary-50);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: white;
}

.why-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Services Direct */
.services-direct {
    padding: 80px 0;
    background: var(--primary-50);
}

.services-direct-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-direct-item {
    text-align: center;
    padding: 32px 16px;
    background: white;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-direct-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-direct-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.service-direct-item span {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 15px;
}

.services-cta-center {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-banho-tosa {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border: none;
}

.btn-banho-tosa:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #c2410c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.review-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-100);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    margin-bottom: 16px;
}

.review-stars i {
    color: var(--accent);
    font-size: 18px;
}

.review-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-card strong {
    color: var(--gray-800);
    font-size: 15px;
}

/* Indicadores do Carrossel */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot:hover {
    background: var(--gray-400);
}

.review-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .reviews-section .container {
        padding: 0 16px;
    }
    
    .reviews-carousel {
        overflow: hidden;
    }
    
    .reviews-grid {
        gap: 16px;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 32px);
        min-width: calc(100% - 32px);
        padding: 24px;
    }
}

/* Botão Deixar Depoimento */
.reviews-cta-center {
    text-align: center;
    margin-top: 40px;
}

.btn-leave-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-leave-review:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-leave-review i {
    font-size: 18px;
}

/* Modal Depoimento - Design Final */
.modal-depoimento {
    background: var(--white);
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    animation: modalIn .3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-depoimento .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    z-index: 2;
}

.modal-depoimento .modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
    transform: scale(1.1);
}

.modal-depoimento-header {
    padding: 32px 32px 20px;
    text-align: center;
    background: transparent;
    color: var(--gray-800);
}

.modal-depoimento-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.modal-depoimento-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.modal-depoimento-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Form dentro do modal */
.modal-depoimento .contact-form {
    padding: 24px;
}

.modal-depoimento .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-depoimento .contact-form-group {
    margin-bottom: 16px;
}

.modal-depoimento .contact-form-group.full-width {
    grid-column: 1 / -1;
}

.modal-depoimento .contact-form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 13px;
}

.modal-depoimento .contact-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-depoimento .contact-input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--gray-400);
    font-size: 14px;
    z-index: 1;
}

.modal-depoimento .contact-input-wrapper input,
.modal-depoimento .contact-input-wrapper textarea {
    width: 100%;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    padding: 12px 14px 12px 42px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--gray-50);
}

.modal-depoimento .contact-input-wrapper textarea {
    border-radius: var(--radius-lg);
}

.modal-depoimento .contact-input-wrapper input:focus,
.modal-depoimento .contact-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.modal-depoimento .contact-input-wrapper input::placeholder,
.modal-depoimento .contact-input-wrapper textarea::placeholder {
    color: var(--gray-400);
}

.modal-depoimento .textarea-wrapper {
    align-items: flex-start;
}

.modal-depoimento .textarea-wrapper i {
    top: 14px;
}

.modal-depoimento .textarea-wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

/* Avatar Selector - Compacto */
.avatar-selector {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.avatar-option {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    max-width: 60px;
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option:hover {
    border-color: var(--primary);
    transform: scale(1.08);
}

.avatar-option.selected {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.avatar-selected-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    min-height: 44px;
}

.avatar-preview-label {
    color: var(--gray-500);
    font-size: 13px;
}

.avatar-selected-preview img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-selected-preview .avatar-name {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 13px;
}

/* Botão Submit */
.btn-submit-depoimento {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
}

.btn-submit-depoimento:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35);
}

/* Responsivo Modal Depoimento */
@media (max-width: 768px) {
    .modal-depoimento {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-depoimento-header {
        padding: 24px 20px;
    }
    
    .modal-depoimento-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .modal-depoimento-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-depoimento .contact-form {
        padding: 20px;
    }
    
    .modal-depoimento .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .avatar-selector {
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
    }
    
    .avatar-option {
        max-width: 42px;
    }
}

@media (max-width: 480px) {
    .btn-leave-review {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .modal-depoimento .contact-form {
        padding: 16px;
    }
    
    .avatar-selector {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .avatar-option {
        max-width: 50px;
    }
}

/* ============================================================
   LOCATION DROPDOWN (Como Chegar - Google Maps / Waze)
   ============================================================ */
.location-dropdown {
    position: relative;
    display: inline-block;
}

.location-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 8px 0;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.location-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

.location-dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.location-option:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.location-option.google-maps i {
    color: #4285F4;
}

.location-option.waze {
    color: var(--gray-700);
}

.location-option.waze svg {
    fill: #33ccff;
}

.location-option.waze:hover svg {
    fill: var(--primary);
}

/* Ajuste para CTA Final (menu abre para cima) */
.final-cta .location-dropdown-menu {
    bottom: 100%;
    top: auto;
}

/* Responsivo */
@media (max-width: 480px) {
    .location-dropdown-menu {
        min-width: 160px;
    }
    
    .location-option {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
}

.final-cta-content {
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-final-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-final-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-final-location:hover {
    background: white;
    color: var(--primary-dark);
}

/* Responsivo Novo Design */
@media (max-width: 1024px) {
    .emergency-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-direct-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-video {
        min-height: 100vh;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .quick-features-grid {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .services-direct-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-actions {
        flex-direction: column;
    }
    
    .btn-emergency,
    .btn-location {
        width: 100%;
        justify-content: center;
    }
    
    .final-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-final-whatsapp,
    .btn-final-location {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================
   ABOUT HIGHLIGHT SECTION (Com Ondas)
   ============================ */
.about-highlight-section {
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-highlight-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.92) 0%, rgba(0, 151, 167, 0.95) 100%);
}

/* Ondas SVG */
.about-wave-top,
.about-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.about-wave-top {
    top: 0;
}

.about-wave-bottom {
    bottom: 0;
}

.about-wave-top svg,
.about-wave-bottom svg {
    width: 100%;
    height: 60px;
    display: block;
}

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

.about-highlight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.about-highlight-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-highlight-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Responsivo - About Highlight */
@media (max-width: 992px) {
    .about-highlight-section {
        padding: 100px 0;
    }

    .about-highlight-title {
        font-size: 2rem;
    }

    .about-highlight-subtitle {
        font-size: 1.05rem;
    }

    .about-wave-top svg,
    .about-wave-bottom svg {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .about-highlight-section {
        padding: 90px 0;
    }

    .about-highlight-title {
        font-size: 1.6rem;
    }

    .about-highlight-subtitle {
        font-size: 1rem;
    }

    .about-wave-top svg,
    .about-wave-bottom svg {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .about-highlight-section {
        padding: 80px 0;
    }

    .about-highlight-title {
        font-size: 1.4rem;
    }

    .about-wave-top svg,
    .about-wave-bottom svg {
        height: 25px;
    }
}

/* ============================
   CLINIC SHOWCASE SECTION
   ============================ */
.clinic-showcase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
}

.clinic-showcase-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.clinic-showcase-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.clinic-showcase-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.clinic-showcase-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.clinic-showcase-content .section-badge {
    margin-bottom: 15px;
}

.clinic-showcase-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.clinic-showcase-description {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: left;
}

.clinic-showcase-description:last-of-type {
    margin-bottom: 0;
}

.clinic-showcase-description strong {
    color: var(--primary);
}

/* Área inferior: Foto + Ícones lado a lado */
.clinic-showcase-bottom {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.clinic-showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    min-height: 400px;
}

.clinic-showcase-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.clinic-showcase-image:hover img {
    transform: scale(1.03);
}

.clinic-showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35);
}

.clinic-showcase-badge i {
    font-size: 1.1rem;
}

/* Sidebar com ícones ao lado da foto */
.clinic-showcase-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* História da Clínica - Destaques */
.clinic-history-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.history-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.history-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.history-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.history-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.history-text p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Fundadora */
.clinic-founder {
    margin-top: 5px;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(15, 118, 110, 0.15) 100%);
    border-radius: 12px;
    border: 2px solid var(--primary);
    width: 100%;
}

.founder-badge i {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.founder-badge span {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.4;
}

.founder-badge strong {
    color: var(--primary);
}

.clinic-showcase-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.clinic-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.clinic-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clinic-feature i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.clinic-feature strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.clinic-feature p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

.clinic-showcase-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-clinic-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-clinic-map:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

.btn-clinic-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-clinic-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsivo - Clinic Showcase */
@media (max-width: 992px) {
    .clinic-showcase-section {
        padding: 70px 0;
    }

    .clinic-showcase-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .clinic-showcase-image {
        max-width: 600px;
        min-height: auto;
        margin: 0 auto;
    }

    .clinic-showcase-image img {
        min-height: auto;
        max-height: 420px;
    }

    .clinic-showcase-badge {
        top: auto;
        bottom: 15px;
        right: 50%;
        transform: translateX(50%);
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .clinic-showcase-title {
        font-size: 1.9rem;
    }

    .founder-badge {
        flex-direction: column;
        text-align: center;
        padding: 18px 22px;
    }
}

@media (max-width: 768px) {
    .clinic-showcase-section {
        padding: 50px 0;
    }

    .clinic-showcase-image {
        max-width: 100%;
    }

    .clinic-showcase-image img {
        max-height: 350px;
    }

    .clinic-showcase-badge {
        top: auto;
        bottom: 12px;
        right: 33%;
        transform: translateX(50%);
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .clinic-showcase-title {
        font-size: 1.6rem;
    }

    .clinic-showcase-description {
        font-size: 1rem;
    }

    .history-item {
        padding: 14px 16px;
    }

    .history-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .clinic-feature {
        padding: 15px;
    }

    .clinic-feature i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .clinic-showcase-actions {
        flex-direction: column;
    }

    .btn-clinic-map,
    .btn-clinic-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .clinic-showcase-section {
        padding: 40px 0;
    }

    .clinic-showcase-image img {
        max-height: 280px;
    }

    .clinic-showcase-title {
        font-size: 1.4rem;
    }

    .clinic-showcase-badge {
        top: auto;
        bottom: 10px;
        right: 34%;
        transform: translateX(50%);
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .history-text strong {
        font-size: 0.95rem;
    }

    .history-text p {
        font-size: 0.85rem;
    }

    .founder-badge {
        padding: 14px 18px;
    }

    .founder-badge span {
        font-size: 0.85rem;
    }

    .clinic-feature strong {
        font-size: 0.95rem;
    }

    .clinic-feature p {
        font-size: 0.85rem;
    }
}

/* ============================
   EMERGENCY HIGHLIGHT SECTION (Com Ondas - Estilo About)
   ============================ */
.emergency-highlight-section {
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.emergency-highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.emergency-highlight-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.emergency-highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.92) 0%, rgba(185, 28, 28, 0.95) 100%);
}

/* Ondas SVG - Emergency */
.emergency-wave-top,
.emergency-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.emergency-wave-top {
    top: 0;
}

.emergency-wave-bottom {
    bottom: 0;
}

.emergency-wave-top svg,
.emergency-wave-bottom svg {
    width: 100%;
    height: 60px;
    display: block;
}

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

.emergency-highlight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.emergency-highlight-section .emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    animation: pulse-badge 2s infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.emergency-highlight-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.emergency-highlight-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.emergency-highlight-subtitle strong {
    color: white;
}

.emergency-highlight-section .emergency-address {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.emergency-highlight-section .emergency-address i {
    color: white;
    font-size: 1.2rem;
}

.emergency-highlight-section .emergency-address span {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.emergency-highlight-section .emergency-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.emergency-highlight-section .btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--danger);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.emergency-highlight-section .btn-emergency:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    color: var(--danger);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.emergency-highlight-section .btn-emergency-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.emergency-highlight-section .btn-emergency-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsivo - Emergency Highlight */
@media (max-width: 992px) {
    .emergency-highlight-section {
        padding: 100px 0;
    }

    .emergency-highlight-title {
        font-size: 2rem;
    }

    .emergency-highlight-subtitle {
        font-size: 1.05rem;
    }

    .emergency-wave-top svg,
    .emergency-wave-bottom svg {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .emergency-highlight-section {
        padding: 90px 0;
    }

    .emergency-highlight-title {
        font-size: 1.6rem;
    }

    .emergency-highlight-subtitle {
        font-size: 1rem;
    }

    .emergency-wave-top svg,
    .emergency-wave-bottom svg {
        height: 35px;
    }

    .emergency-highlight-section .btn-emergency,
    .emergency-highlight-section .btn-emergency-whatsapp {
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .emergency-highlight-section {
        padding: 80px 0;
    }

    .emergency-highlight-title {
        font-size: 1.4rem;
    }

    .emergency-wave-top svg,
    .emergency-wave-bottom svg {
        height: 25px;
    }

    .emergency-highlight-section .emergency-actions {
        flex-direction: column;
        align-items: center;
    }

    .emergency-highlight-section .btn-emergency,
    .emergency-highlight-section .btn-emergency-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ============================
   ONE-PAGE SECTIONS - ABOUT
   ============================ */
.about-onepage {
    padding: 100px 0;
    background: var(--bg-soft);
}

.about-onepage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-onepage-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-onepage-content .section-badge {
    width: fit-content;
}

.about-onepage-content .section-title-bold {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 8px;
}

.about-onepage-content p {
    color: var(--gray-600);
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 1.05rem;
    font-weight: 500;
}

.about-feature-item i {
    color: var(--primary);
    font-size: 1.3rem;
}

.about-onepage-image {
    position: relative;
}

.about-onepage-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

/* ============================
   ONE-PAGE SECTIONS - SERVICES
   ============================ */
.services-onepage {
    padding: 100px 0;
    background: var(--white);
}

.services-onepage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.service-onepage-card {
    background: var(--bg-soft);
    padding: 30px 20px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.service-onepage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.service-onepage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-onepage-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-onepage-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.service-onepage-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.services-cta-center {
    text-align: center;
}

/* ============================
   ONE-PAGE SECTIONS - TIPS
   ============================ */
.tips-onepage {
    padding: 100px 0;
    background: var(--bg-soft);
}

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

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tip-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tip-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.tip-card h4 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tips-alert {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--danger), #dc2626);
    padding: 25px 35px;
    border-radius: var(--radius-xl);
    color: var(--white);
}

.tips-alert-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tips-alert-icon i {
    font-size: 1.5rem;
}

.tips-alert-content {
    flex: 1;
}

.tips-alert-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.tips-alert-content span {
    font-size: 0.95rem;
    opacity: 0.95;
}

.tips-alert-btn {
    background: var(--white);
    color: var(--danger);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tips-alert-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ============================
   ONE-PAGE SECTIONS - CONTACT
   ============================ */
.contact-onepage {
    padding: 100px 0;
    background: var(--white);
}

.contact-onepage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-onepage-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-onepage-info .section-title-bold {
    margin-bottom: 10px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.contact-info-item:hover {
    border-color: var(--primary-200);
    box-shadow: 0 8px 24px rgba(13,148,136,.1);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13,148,136,.25);
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.contact-info-item > div:last-child {
    flex: 1;
    padding-top: 2px;
}

.contact-info-item strong {
    display: block;
    color: var(--gray-800);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.contact-info-item p {
    color: var(--gray-600);
    line-height: 1.55;
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item p strong {
    color: var(--primary);
    font-size: 0.9rem;
    display: inline;
    margin: 0;
}

.contact-info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color var(--transition-fast);
}

.contact-info-item a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-onepage-map {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 400px;
}

.contact-onepage-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ============================
   SECTION BADGES & TITLES
   ============================ */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-bold {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-800);
    line-height: 1.2;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-800);
    text-align: center;
    margin-top: 15px;
}

/* ============================
   SCROLL INDICATOR
   ============================ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* ============================
   RESPONSIVE - ONE-PAGE
   ============================ */
@media (max-width: 991px) {
    .about-onepage-grid,
    .contact-onepage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-onepage-image {
        order: -1;
    }
    
    .services-onepage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-onepage-card {
        padding: 25px 15px;
    }
    
    .service-onepage-icon {
        width: 52px;
        height: 52px;
    }
    
    .service-onepage-icon i {
        font-size: 1.3rem;
    }
    
    .tips-onepage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-alert {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title-bold,
    .section-title-center {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-onepage,
    .services-onepage,
    .tips-onepage,
    .contact-onepage {
        padding: 60px 0;
    }
    
    .services-onepage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-onepage-card {
        padding: 20px 12px;
    }
    
    .service-onepage-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .service-onepage-icon i {
        font-size: 1.2rem;
    }
    
    .service-onepage-card h4 {
        font-size: 0.95rem;
    }
    
    .service-onepage-card p {
        font-size: 0.8rem;
    }
    
    .tips-onepage-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features-list {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-actions a {
        width: 100%;
        justify-content: center;
    }
    
    .section-title-bold,
    .section-title-center {
        font-size: 1.7rem;
    }
}

/* ============================
   FIX OVERFLOW - GLOBAL
   ============================ */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

main, section, footer {
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: var(--container-max);
    overflow: hidden;
}

.about-onepage,
.services-onepage,
.contact-onepage,
.emergency-section,
.reviews-section,
.final-cta,
.quick-features {
    overflow: hidden;
    max-width: 100%;
}

/* Fix para grids não vazarem */
.about-onepage-grid,
.contact-onepage-grid,
.emergency-grid,
.services-onepage-grid,
.footer-grid {
    max-width: 100%;
    overflow: hidden;
}

/* Carrossel de reviews - overflow no container pai */
.reviews-carousel {
    max-width: 100%;
}


.about-onepage-image img,
.emergency-image img,
.contact-onepage-map iframe {
    max-width: 100%;
}

/* Fix footer wave */
.footer-wave-top {
    max-width: 100%;
    overflow: hidden;
}

.footer-wave-top svg {
    max-width: 100%;
}

/* ============================
   RESPONSIVE: iPhone SE & Small Screens (≤ 375px)
   ============================ */
@media (max-width: 480px) {
    /* Nav toggle mais visível em mobile */
    .nav-toggle {
        width: 40px;
        padding: 10px 8px;
        gap: 6px;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 8px;
        -webkit-appearance: none;
        appearance: none;
    }
    .scrolled .nav-toggle {
        background: rgba(0, 0, 0, 0.05) !important;
    }
    .nav-toggle span {
        height: 3px;
        width: 100%;
        display: block !important;
    }
}

@media (max-width: 375px) {
    /* Hero banner compacto para iPhone SE */
    .hero-video {
        min-height: 100svh;
    }
    
    .hero-video-content {
        padding: 1.25rem 1rem;
        max-width: 100%;
    }
    
    .hero-badge-urgent {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 16px;
        gap: 6px;
        letter-spacing: 0.5px;
    }
    
    .hero-badge-urgent i {
        font-size: 13px;
    }
    
    .hero-title-impact {
        font-size: clamp(26px, 7.5vw, 38px);
        margin-bottom: 14px;
        line-height: 1.15;
    }
    
    .hero-desc-short {
        font-size: 14px;
        margin-bottom: 22px;
        line-height: 1.5;
    }
    
    .hero-cta-group {
        gap: 12px;
    }
    
    .btn-cta-primary {
        padding: 14px 26px;
        font-size: 16px;
        gap: 8px;
    }
    
    .btn-cta-secondary {
        padding: 12px 22px;
        font-size: 16px;
        gap: 8px;
    }
    
    /* Navbar ajuste */
    .nav-container {
        padding: 0 12px;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .nav-logo {
        font-size: 18px;
    }
}
