/* ============================================
   NOVO HORIZONTE - Site Estático
   Clínica Veterinária & Pet Shop
   ============================================ */

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

:root {
    --blue: #8fccf4;
    --blue-dark: #5eb3ed;
    --blue-deeper: #2a7fc2;
    --orange: #ff7600;
    --orange-dark: #e06800;
    --green: #9cd16f;
    --green-dark: #7bb84e;
    --black: #1a1a1a;
    --dark: #222;
    --gray: #555;
    --gray-light: #f5f5f7;
    --white: #ffffff;

    --font: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
}

[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="zoom-in"]    { transform: scale(0.9); }

[data-animate].animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ---------- PAW PATTERN (tradicional) ---------- */
.paw-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("../../images/paw.svg");
    background-size: 132px 132px;
    background-repeat: repeat;
    opacity: 0.06;
}

.paw-pattern--light {
    background-image: url("../../images/paw.svg");
    background-size: 132px 132px;
    background-repeat: repeat;
    filter: invert(1);
    opacity: 0.1;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--black);
    color: var(--white);
    font-size: 0.78rem;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar i {
    margin-right: 6px;
    color: var(--green);
}

.top-bar__phone i {
    color: var(--green);
}

.top-bar__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
    transition: opacity var(--transition);
}

.top-bar__whatsapp:hover {
    opacity: 0.8;
}

.top-bar__whatsapp--blue i {
    color: var(--blue);
}

.top-bar__whatsapp--orange i {
    color: var(--orange);
}

/* ---------- HEADER ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--blue-deeper);
    letter-spacing: -0.5px;
}

.logo-text strong {
    font-weight: 800;
    color: var(--orange);
}

.logo-sub {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray);
    font-weight: 500;
}

.header__nav {
    display: flex;
    gap: 4px;
}

.header__link {
    padding: 8px 14px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark);
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
}

.header__link:hover,
.header__link.active {
    color: var(--blue-deeper);
    background: rgba(143, 204, 244, 0.1);
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform var(--transition);
}

.header__link:hover::after,
.header__link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all var(--transition);
}

.header__hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.header__hamburger.open span:nth-child(2) {
    opacity: 0;
}
.header__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- WHATSAPP FLOAT + BACK TO TOP ---------- */
.float-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 9999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    width: 48px;
    height: 48px;
    background: var(--blue-deeper);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(42, 127, 194, 0.35);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 800px;
    animation: fadeInUp 1s ease both;
}

.hero__title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    animation: bounceDown 2s infinite;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--blue {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(143, 204, 244, 0.4);
}
.btn--blue:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(143, 204, 244, 0.5);
}

.btn--orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 118, 0, 0.35);
}
.btn--orange:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 118, 0, 0.45);
}

.btn--green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(156, 209, 111, 0.4);
}
.btn--green:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(156, 209, 111, 0.5);
}

.btn--white {
    background: var(--white);
    color: var(--blue-deeper);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn--large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn--xl {
    padding: 20px 56px;
    font-size: 1.15rem;
    box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

/* ---------- SECTION TAGS / TITLES ---------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
    background: rgba(143, 204, 244, 0.15);
    color: var(--blue-deeper);
}

.section-tag--blue {
    background: rgba(143, 204, 244, 0.15);
    color: var(--blue-deeper);
}
.section-tag--orange {
    background: rgba(255, 118, 0, 0.12);
    color: var(--orange);
}
.section-tag--green {
    background: rgba(156, 209, 111, 0.15);
    color: var(--green-dark);
}
.section-tag--white {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

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

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.section-subtitle--white {
    color: var(--white);
}

/* ---------- SOBRE NÓS ---------- */
.sobre {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

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

.sobre__image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.sobre__image-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 3px solid var(--blue);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.sobre__image-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sobre__image-frame:hover img {
    transform: scale(1.04);
}

.sobre__text p {
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 0.95rem;
}

.sobre__text p strong {
    color: var(--dark);
}

/* ---------- CLÍNICA VETERINÁRIA ---------- */
.clinica {
    background: var(--gray-light);
}

.clinica__banner {
    position: relative;
    height: 420px;
    overflow: hidden;
}

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

.clinica__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 127, 194, 0.75), rgba(143, 204, 244, 0.5));
    z-index: 1;
}

.clinica__banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.clinica__banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.clinica__banner-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 700px;
}

/* Serviços Grid */
.clinica__servicos {
    padding: 80px 0 60px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.servico-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.servico-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(143, 204, 244, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue-deeper);
    transition: all var(--transition);
}

.servico-card:hover .servico-card__icon {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.1);
}

.servico-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.servico-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
}

.servicos-cta {
    text-align: center;
    margin-bottom: 60px;
}

/* Galeria humanizada */
.clinica__galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.clinica__galeria-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}

.clinica__galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.clinica__galeria-item:hover img {
    transform: scale(1.08);
}

/* Planos */
.clinica__planos {
    position: relative;
    background: var(--blue);
    padding: 80px 0;
    overflow: hidden;
}

.planos__intro {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.planos__intro strong {
    font-weight: 800;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.plano-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plano-card--featured {
    transform: scale(1.05);
    border: 3px solid var(--blue-deeper);
    box-shadow: 0 12px 40px rgba(42, 127, 194, 0.2);
}

.plano-card--featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plano-card__badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.plano-card--featured .plano-card__badge {
    background: var(--blue-deeper);
}

.plano-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(143, 204, 244, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--blue-deeper);
}

.plano-card--featured .plano-card__icon {
    background: rgba(42, 127, 194, 0.15);
    color: var(--blue-deeper);
}

.plano-card__name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.plano-card__desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.plano-card__features {
    text-align: left;
}

.plano-card__features li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plano-card__features li:last-child {
    border-bottom: none;
}

.plano-card__features i {
    color: var(--green);
    font-size: 0.8rem;
}

.planos__footer {
    text-align: center;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.planos-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Equipe */
.clinica__equipe {
    padding: 80px 0;
    background: var(--white);
}

.clinica__equipe--with-bg {
    position: relative;
    background: var(--blue);
    overflow: hidden;
}

.clinica__equipe--with-bg .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.clinica__equipe--with-bg .section-subtitle {
    color: var(--white);
}

.clinica__equipe--with-bg .equipe-card {
    background: var(--white);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.equipe-card {
    display: flex;
    gap: 28px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.equipe-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.equipe-card__photo {
    flex-shrink: 0;
    width: 140px;
    height: 170px;
    border-radius: var(--radius);
    overflow: hidden;
}

.equipe-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe-card__info {
    flex: 1;
    min-width: 0;
}

.equipe-card__name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.equipe-card__crmv {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-deeper);
    background: rgba(143, 204, 244, 0.2);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.equipe-card__details li {
    font-size: 0.85rem;
    color: var(--gray);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.equipe-card__details i {
    color: var(--blue);
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

/* ---------- PET SHOP ---------- */
.petshop {
    padding: 100px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.carrossel-wrapper {
    position: relative;
    margin-top: 50px;
}

.carrossel {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carrossel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.carrossel__slide {
    flex: 0 0 calc(33.333% - 14px);
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.carrossel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carrossel__slide:hover img {
    transform: scale(1.08);
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--orange);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrossel-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carrossel-btn--prev { left: -24px; }
.carrossel-btn--next { right: -24px; }

.carrossel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.carrossel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 118, 0, 0.2);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.carrossel-dots .dot.active {
    background: var(--orange);
    transform: scale(1.2);
}

/* ---------- ESTÉTICA ANIMAL ---------- */
.estetica {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.estetica__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.estetica__image::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    left: 12px;
    top: 12px;
    border: 3px solid var(--green);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.estetica__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.estetica__image:hover img {
    transform: scale(1.04);
}

.estetica__content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.estetica__content p strong {
    color: var(--dark);
}

.estetica__features {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.estetica__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(156, 209, 111, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
}

.estetica__feature i {
    font-size: 1rem;
}

/* ---------- DELIVERY BOX ---------- */
.delivery-box {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.delivery-box .paw-pattern--light {
    position: absolute;
    inset: 0;
}

.delivery-box__content {
    position: relative;
    z-index: 1;
}

.delivery-box__icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.delivery-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.delivery-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 64px;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__block h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__block h4 i {
    color: var(--blue);
}

.footer__block ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.footer__block ul li i {
    color: var(--green);
    width: 18px;
    text-align: center;
}

.footer__block ul li a:hover {
    color: var(--blue);
}

.footer__block p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer__map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue);
    transition: color var(--transition);
}

.footer__map-link:hover {
    color: var(--white);
}

.footer__social {
    display: flex;
    gap: 14px;
}

.footer__social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: all var(--transition);
}

.footer__social-link--ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer__social-link--fb:hover {
    background: #1877F2;
}

.footer__bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
    .sobre__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre__image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .plano-card--featured {
        transform: none;
    }
    .plano-card--featured:hover {
        transform: translateY(-8px);
    }

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

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

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

@media (max-width: 768px) {
    .top-bar__inner {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }

    .top-bar__left,
    .top-bar__right {
        justify-content: center;
        gap: 12px;
    }

    .header__hamburger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 4px;
    }

    .header__nav.open {
        right: 0;
    }

    .header__link {
        font-size: 1rem;
        padding: 14px 16px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero__title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .btn--large {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .btn--xl {
        padding: 18px 44px;
        font-size: 1.05rem;
    }

    .clinica__banner {
        height: 300px;
    }

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

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

    .clinica__galeria-item {
        aspect-ratio: 1;
    }

    .equipe-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .equipe-card__photo {
        width: 120px;
        height: 150px;
    }

    .equipe-card__details {
        justify-content: center;
    }

    .carrossel__slide {
        flex: 0 0 calc(50% - 10px);
    }

    .carrossel-btn--prev { left: -12px; }
    .carrossel-btn--next { right: -12px; }

    .delivery-box {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .servicos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .servico-card {
        padding: 20px 16px;
    }

    .servico-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .servico-card h4 {
        font-size: 0.82rem;
    }

    .servico-card p {
        font-size: 0.75rem;
    }

    .carrossel__slide {
        flex: 0 0 100%;
    }

    .estetica__features {
        flex-direction: column;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
}
