/* ===================================================
   CEDVET - Centro de Especialidades e Diagnóstico Veterinário
   Estilo principal
   =================================================== */

/* ── Variáveis de cor ── */
:root {
    --primary:       #289c25;
    --primary-dark:  #1e7a1b;
    --primary-light: #d3e8ce;
    --secondary:     #4a9e4d;
    --secondary-dark:#35893a;
    --accent:        #f0a500;
    --text-dark:     #1e2d3d;
    --text-muted:    #6b7a8d;
    --bg-light:      #f2f9f1;
    --bg-white:      #ffffff;
    --border:        #c5dfc3;
    --shadow:        0 4px 20px rgba(40,156,37,.12);
    --shadow-hover:  0 8px 32px rgba(40,156,37,.22);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; }

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

section { padding: 80px 0; }

/* ── Botões ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(40,156,37,.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40,156,37,.45);
}

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

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,.12);
}
.btn-white:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ── Section Headers ── */
.section-label {
    display: inline-block;
    margin-bottom: 12px;
}
.section-label span {
    background: var(--primary-light);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-title span { color: var(--primary); }

.section-desc {
    color: var(--text-muted);
    max-width: 560px;
    font-size: 1.02rem;
}

/* ── PAW PRINT DECORATIONS ── */
.paw-decor {
    position: absolute;
    opacity: .07;
    pointer-events: none;
    user-select: none;
}

.paw-svg { fill: var(--primary); }

/* floating paw animation */
@keyframes paw-float {
    0%   { transform: translateY(0) rotate(0deg); }
    50%  { transform: translateY(-15px) rotate(8deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.paw-animate { animation: paw-float 6s ease-in-out infinite; }
.paw-animate-slow { animation: paw-float 9s ease-in-out infinite; }
.paw-animate-fast { animation: paw-float 4s ease-in-out infinite; }

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    transition: background .35s ease, box-shadow .35s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* Transparent state – white text over dark hero */
.navbar:not(.scrolled) .logo-name { color: #fff; }
.navbar:not(.scrolled) .logo-tagline { color: rgba(255,255,255,.8); }
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,.9); }
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active { color: #fff; }
.navbar:not(.scrolled) .nav-link::after { background: rgba(255,255,255,.85); }
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }
.navbar:not(.scrolled) .nav-btn-sistema {
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.5);
    color: #fff;
    backdrop-filter: blur(8px);
}
.navbar:not(.scrolled) .nav-btn-sistema:hover {
    background: #fff;
    color: var(--primary);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 67px;
    width: 78px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.logo-tagline {
    font-size: .65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    left: 16px; right: 16px;
}

.nav-btn-sistema {
    padding: 10px 22px;
    font-size: .85rem;
    border-radius: 50px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    cursor: pointer;
    background: transparent;
    border: none;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1001;
}

/* Área clicável maior invisível */
.nav-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    pointer-events: none;
    position: relative;
    z-index: 0;
}

/* Animação do hamburguer para X */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: .8rem;
    padding: 6px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-info span { display: flex; align-items: center; gap: 6px; }
.top-info a    { color: #fff; transition: var(--transition); }
.top-info a:hover { color: var(--accent); }

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    color: #fff;
    font-size: .75rem;
    transition: var(--transition);
}

.top-social a:hover { background: var(--accent); }

/* ── HERO SECTION ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e4f5e2 50%, #f5fbf4 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(40,156,37,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30,122,27,.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-badge i { font-size: .9rem; }

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 640px;
    line-height: 1.75;
}

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

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-stat span   { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-image-badge {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    font-weight: 600;
}

.hero-image-badge i { color: var(--primary); font-size: 1.3rem; }

.badge-tl { top: -16px; left: -16px; }
.badge-br { bottom: -16px; right: -16px; }
.badge-br i { color: var(--secondary); }

/* ── FEATURES ── */
.features-section {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── ABOUT ── */
.about-section { background: var(--bg-light); position: relative; overflow: hidden; }

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

.about-img-wrap { position: relative; }

.about-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 789px;
    object-fit: cover;
    aspect-ratio: 1;
}

.about-img-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    min-width: 120px;
    box-shadow: var(--shadow);
}

.about-img-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-img-badge span   { font-size: .75rem; opacity: .9; }

.about-text .section-desc { margin-bottom: 32px; }

.about-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .95rem;
}

.about-list-item i { color: var(--secondary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

.dr-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 20px;
}

.dr-card img {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.dr-card-info h4 { font-size: .95rem; font-weight: 700; }
.dr-card-info span { font-size: .8rem; color: var(--text-muted); }

/* ── SERVICES ── */
.services-section { background: var(--bg-white); position: relative; overflow: hidden; }

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--border); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon { background: var(--primary); color: #fff; }

.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ── OPENING HOURS ── */
.hours-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    /* background: #3a9e37; */
    background: #B5C9C0;
    color: black;
    /* background: var(--text-dark); */
        /* background: #E8F4FD; */

    /* background: var(--primary-light); */
}

.hours-wave-bg { display: none; }
.hours-wave-overlay { display: none; }

.hours-wave-top {
    position: absolute;
    top: 0; left: 0;
    width: 100%; line-height: 0; z-index: 1;
}
.hours-wave-top svg { display: block; width: 100%; height: 80px; }

.hours-wave-bottom {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; line-height: 0; z-index: 1;
}
.hours-wave-bottom svg { display: block; width: 100%; height: 80px; }

.hours-section > .container {
    position: relative;
    z-index: 2;
}

.hours-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hours-wave-icon {
    width: 64px; height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: #fff;
}

.hours-label span {
    background: var(--primary) !important;
    color: #fff !important;
    border: 1px solid var(--primary-dark) !important;
}

.hours-title {
    color: var(--text-dark);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.hours-title span { color: var(--primary); }

.hours-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Schedule strip */
.hours-schedule-strip {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 620px;
    margin: 0 auto 36px;
}

.hours-day-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    border: 1px solid rgba(255,255,255,.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.hours-day-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.hours-card-icon {
    width: 52px; height: 52px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
    transition: var(--transition);
}
.hours-day-card:hover .hours-card-icon { background: var(--primary-dark); }
.hours-day-card.emergency .hours-card-icon { background: #6c757d; }

.hours-card-day {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .7px;
}
.hours-card-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}
.hours-day-card.emergency .hours-card-time { color: #6c757d; }

.hours-pill-badge {
    font-size: .65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.hours-pill-badge.open      { background: var(--primary-light); color: var(--primary-dark); }
.hours-pill-badge.emergency { background: #f0f0f0; color: #888; }

/* CTA Buttons */
.hours-cta-btns {
    position: relative; z-index: 2;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-hours,
.btn-cta-whatsapp-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: .95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}
.btn-cta-hours {
    background: #fff;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-cta-hours:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--primary);
}
.btn-cta-whatsapp-hours {
    background: #fff;
    color: #2a7a27;
}
.btn-cta-whatsapp-hours:hover {
    background: rgba(255,255,255,.9);
    color: #2a7a27;
}

/* ── TEAM SECTION ── */
.team-section {
    position: relative;
    padding: 70px 0;
    /* background: #E8F4FD; */
    background: var(--text-dark);
    overflow: hidden;
}

.team-wave-top {
    position: absolute;
    top: 0; left: 0;
    width: 100%; line-height: 0; z-index: 1;
}
.team-wave-top svg { display: block; width: 100%; height: 80px; }

.team-wave-bottom {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; line-height: 0; z-index: 1;
}
.team-wave-bottom svg { display: block; width: 100%; height: 80px; }

.team-section > .container {
    position: relative;
    z-index: 2;
}

.team-label span {
    background: rgba(255,255,255,.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.3) !important;
}

.team-title {
    color: #1e2d3d;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.team-title span { color: #1a7abf; }

.team-card {
    /* display: flex;
    flex-direction: column; */
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(26,122,191,.08);
    display: flex;
    gap: 28px;
    align-items: center;
}

.team-img-wrap {
    flex-shrink: 0;
}
.team-img-wrap img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #E8F4FD;
}

.team-content {
    flex: 1;
    min-width: 0;
}
.team-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e2d3d;
    margin-bottom: 4px;
}
.team-role {
    color: #1a7abf;
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: 18px;
}

.team-credentials {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.team-credentials li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: #6b7a8d;
    line-height: 1.5;
}
.team-credentials i {
    color: #1a7abf;
    font-size: .85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-team-lattes {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    font-size: .85rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    background: #fff;
    color: #1a7abf;
    border: 1px solid #1a7abf;
    transition: all 0.25s ease;
}
.btn-team-lattes:hover {
    background: #1a7abf;
    color: #fff;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg-light); position: relative; overflow: hidden; }

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.btn-deixar-depoimento {
    margin-top: 20px;
}

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

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    min-width: 360px;
    max-width: 360px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.testimonial-author h4 { font-size: 1rem; font-weight: 700; }
.testimonial-author span { font-size: .78rem; color: var(--text-muted); }

.testimonial-stars { color: var(--accent); font-size: .9rem; margin-bottom: 14px; display: flex; gap: 3px; }

.testimonial-text {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-quote {
    position: absolute;
    bottom: 16px; right: 20px;
    color: var(--primary-light);
    font-size: 2.8rem;
    line-height: 1;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    font-size: .9rem;
    transition: var(--transition);
}

.testimonial-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.testimonials-dots { display: flex; gap: 8px; }
.testimonial-dot {
    width: 10px; height: 10px;
    background: var(--border);
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}
.testimonial-dot.active { background: var(--primary); transform: scale(1.2); }

/* ── CTA BANNER ── */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 64px 0;
}

.cta-section h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-section p  { opacity: .85; max-width: 540px; margin: 0 auto 32px; font-size: 1rem; }
.cta-actions    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── LOCATION / MAP ── */
.location-section { background: var(--bg-white); }

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

.location-info { display: flex; flex-direction: column; gap: 24px; }

.location-item {
    display: flex;
    gap: 16px;
    box-shadow: 1px 1px 11px 4px #00000016;
    border-radius:8px ;
    padding: 14px;
    align-items: flex-start;
    background: #fff;
}

.location-item-icon {
    width: 48px; height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-item-text h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.location-item-text p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.location-item-text a  { color: var(--primary); transition: var(--transition); }
.location-item-text a:hover { color: var(--primary-dark); }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 400px;
}

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

/* ── MODAL DE DEPOIMENTO (estilo domlab) ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-depoimento {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    transform: translateY(30px);
    transition: var(--transition);
}

.modal-overlay.active .modal-depoimento { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: .9rem;
    transition: var(--transition);
}

.modal-close:hover { background: #fee2e2; color: #dc2626; }

.modal-depoimento-header { text-align: center; margin-bottom: 30px; }
.modal-depoimento-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 auto 16px;
}
.modal-depoimento-header h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.modal-depoimento-header p  { font-size: .9rem; color: var(--text-muted); }

/* Form Styles */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.contact-form-group.full-width { grid-column: 1 / -1; margin-bottom: 0; }

.contact-form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.contact-input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: .9rem;
    z-index: 1;
}

.contact-input-wrapper input,
.contact-input-wrapper textarea {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: .92rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
}

.contact-input-wrapper input:focus,
.contact-input-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(40,156,37,.12);
}

.contact-input-wrapper textarea { resize: vertical; min-height: 110px; padding-top: 12px; }

.invalid-feedback {
    font-size: .82rem;
    color: #dc2626;
    margin-top: 4px;
}

/* Avatar Selector */
.avatar-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.avatar-option {
    width: 60px; height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    padding: 0;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

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

.avatar-option:hover { border-color: var(--primary); transform: scale(1.1); }
.avatar-option.selected { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(40,156,37,.25); }

.avatar-selected-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: .85rem;
    color: var(--text-muted);
}

.avatar-preview-img {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.btn-submit-depoimento {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    margin-top: 10px;
}

/* ── FOOTER ── */
.footer {
    background: var(--text-dark);
    color: #c2ccd6;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand { }
.footer-brand img { height: 54px; margin-bottom: 16px;  border-radius: 50%; padding: 3px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; color: #c2ccd6; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    color: #c2ccd6;
    font-size: .85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }

.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: #c2ccd6; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; }
.footer-contact-item i { color: var(--primary); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: #c2ccd6; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}

.footer-bottom a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--primary); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 6px 25px rgba(37,211,102,.4);
    transition: var(--transition);
    animation: paw-float 3s ease-in-out infinite;
}

.whatsapp-float:hover { background: #1da756; transform: scale(1.06) !important; }
.whatsapp-float i { font-size: 1.3rem; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SUCCESS ALERT ── */
.alert-success-banner {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ── PAGE INTERNAL HEADER ── */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 120px 0 64px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 60%, rgba(255,255,255,.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 30%, rgba(255,255,255,.06) 0%, transparent 50%);
}

.page-header h1 { position: relative; font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 12px; }
.page-header p  { position: relative; opacity: .85; max-width: 500px; margin: 0 auto; font-size: 1.05rem; }

.breadcrumb {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: .82rem;
    margin-top: 16px;
    opacity: .75;
}
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── VACCINATION TABLE ── */
.vaccine-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin-top: 16px;
}

.vaccine-table th {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.vaccine-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.vaccine-table tr:nth-child(even) td { background: var(--bg-light); }

/* ── CONTACT INFO CARDS ── */
.contact-info-section {
    padding: 80px 0 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary-dark);
    transform: scale(1.08);
}

.contact-info-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-info-detail {
    font-size: 0.8rem !important;
    color: #aaa !important;
    margin-top: 4px !important;
}

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

@media (max-width: 600px) {
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-info-section { padding: 56px 0 24px; }
}

/* ── FAQ SECTION ── */
.faq-section {
    background: #fff;
    padding: 60px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(40,156,37,.08);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 3px 16px rgba(40,156,37,.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-q-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-icon {
    width: 36px; height: 36px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.faq-icon i {
    font-size: .95rem;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    background: var(--primary);
}

.faq-item.active .faq-icon i {
    color: #fff;
}

.faq-q-content span {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-arrow {
    font-size: .75rem;
    color: var(--primary);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 16px 68px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: .9rem;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ── CONTATO FORM STANDALONE ── */
.contato-section { background: var(--bg-light); }

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

/* ── HERO COM VÍDEO ── */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(2,40,2,.82) 0%, rgba(10,65,8,.68) 55%, rgba(0,25,0,.80) 100%);
    z-index: 1;
}
.hero > .container {
    position: relative;
    z-index: 3;
}
.hero-content-video {
    grid-template-columns: 1fr !important;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.hero-content-video .hero-title { color: #ffffff; }
.hero-content-video .hero-title span { color: #aed8a6; }
.hero-content-video .hero-subtitle { color: rgba(255,255,255,.85); margin-left: auto; margin-right: auto; }
.hero-content-video .hero-badge {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
}
.hero-content-video .hero-actions { justify-content: center; }
.hero-content-video .hero-stats { justify-content: center; }
.hero-content-video .hero-stat strong { color: #aed8a6; }
.hero-content-video .hero-stat span { color: rgba(255,255,255,.75); }
.btn-outline-white {
    border-color: rgba(255,255,255,.75);
    color: #fff;
    background: transparent;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ── POSTS INSTAGRAM – ADOÇÃO ── */
.insta-section { background: var(--bg-white); }
.insta-header { text-align: center; margin-bottom: 40px; }
.insta-header .section-desc { margin: 0 auto 8px; }
.insta-track-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.insta-track-wrap::-webkit-scrollbar { display: none; }
.insta-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.insta-post-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform var(--transition), box-shadow var(--transition);
}
.insta-post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(40,156,37,.25); }
.insta-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.insta-post-card:hover img { transform: scale(1.04); }
.insta-post-num {
    position: absolute;
    top: 14px; left: 14px;
    width: 34px; height: 34px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: .82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,.30);
}
.insta-follow-cta {
    text-align: center;
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── RESPONSIVIDADE ── */
@media (max-width: 1024px) {
    .hero-content, .about-grid, .location-grid, .contato-grid {
        grid-template-columns: 1fr;
    }
    .hero-image-wrap { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .insta-track { grid-template-columns: repeat(4, 46vw); }
    
    /* Reorder location section for mobile */
    .location-grid {
        display: flex;
        flex-direction: column;
    }
    .map-wrap {
        order: 1;
        margin-bottom: 24px;
        min-height: 300px;
    }
    .location-info {
        order: 2;
        display: flex;
        flex-direction: column;
    }
    .location-btn {
        order: -1;
        margin-bottom: 20px;
        align-self: stretch !important;
        justify-content: center;
    }
    .location-address {
        order: 1;
    }
    .location-phone {
        order: 2;
    }
    .location-hours {
        order: 3;
    }
}

@media (max-width: 640px) {
    .hours-schedule-strip { 
        grid-template-columns: 1fr; 
        gap: 16px;
    }
    .hours-day-card {
        padding: 24px 20px;
    }
    .hours-schedule-sep   { width: 100%; height: 1px; }
    .hours-schedule-pill:first-child { border-radius: 0; }
    .hours-schedule-pill:last-child  { border-radius: 0; }
    .btn-cta-hours, .btn-cta-whatsapp-hours { width: 100%; justify-content: center; }
    .hours-cta-btns { flex-direction: column; padding: 0 20px; }
}

@media (max-width: 768px) {
    section { padding: 56px 0; }
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,.1);
        transform: translateY(-110%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; }
    
    /* Fix navbar links color in mobile menu */
    .nav-menu .nav-link {
        color: var(--text-dark) !important;
    }
    .nav-menu .nav-link::after {
        background: var(--primary) !important;
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--primary) !important;
    }
    .nav-menu .nav-btn-sistema {
        background: var(--primary) !important;
        color: #fff !important;
        border-color: var(--primary) !important;
    }
    .nav-menu .nav-btn-sistema:hover {
        background: var(--primary-dark) !important;
        color: #fff !important;
    }
    
    /* Fix toggle button color when navbar is transparent */
    .navbar:not(.scrolled) .nav-toggle span {
        background: #fff;
    }
    .navbar.scrolled .nav-toggle span {
        background: var(--primary);
    }
    /* Quando menu está aberto, sempre usar cor primary */
    .nav-toggle.open span {
        background: var(--primary) !important;
    }
    
    /* Hero adjustments for mobile */
    .hero {
        min-height: 100vh;
        padding-top: 72px;
    }
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    .hero-content-video {
        padding: 20px 0;
    }
    .hero-content-video .hero-badge img {
        max-width: 70% !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* About section image */
    .about-img-wrap img {
        height: auto;
        max-height: 500px;
    }
    
    /* Map responsive height */
    .map-wrap {
        min-height: 250px;
    }
    .map-wrap iframe {
        width: 100%;
        height: 100%;
        min-height: 250px;
        border: 0;
        border-radius: var(--radius);
    }
    
    .nav-toggle { display: flex; }
    .contact-form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .testimonial-card { min-width: 280px; max-width: 280px; }
    .top-info { display: none; }
    .modal-depoimento { padding: 28px 20px; }
    .insta-track { grid-template-columns: repeat(4, 84vw); }
    .insta-follow-cta { flex-direction: column; }
    .team-card { flex-direction: column; text-align: center; padding: 28px 24px; }
    .team-img-wrap img { width: 140px; height: 140px; margin: 0 auto; }
    .team-credentials { align-items: center; }
    .team-credentials li { flex-direction: column; gap: 4px; text-align: center; }
    .team-credentials li i { margin: 4px auto; }
    .btn-team-lattes { width: 100%; justify-content: center; }
    .team-section { padding: 60px 0; }
    .team-wave-top svg, .team-wave-bottom svg { height: 60px; }
    .faq-section { padding: 50px 0; }
    .faq-question { padding: 14px 18px; }
    .faq-q-content { gap: 10px; }
    .faq-icon { width: 34px; height: 34px; }
    .faq-icon i { font-size: .9rem; }
    .faq-q-content span { font-size: .9rem; }
    .faq-item.active .faq-answer { padding: 0 18px 14px 58px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem !important; }
    .hero-subtitle { font-size: 0.95rem !important; }
    .hero-content-video .hero-badge img {
        max-width: 80% !important;
    }
    .btn { padding: 12px 20px; font-size: .9rem; }
    .faq-section { padding: 40px 0; }
    .faq-accordion { gap: 10px; }
    .faq-question { padding: 12px 16px; }
    .faq-q-content { gap: 10px; }
    .faq-icon { width: 32px; height: 32px; }
    .faq-icon i { font-size: .85rem; }
    .faq-q-content span { font-size: .88rem; }
    .faq-answer p { font-size: .88rem; }
    .faq-item.active .faq-answer { padding: 0 16px 12px 54px; }
    
    /* Further adjustments for small screens */
    .section-title {
        font-size: 1.5rem;
    }
    .feature-card {
        padding: 24px 20px;
    }
    .hours-day-card {
        padding: 20px 16px;
    }
}
