@font-face {
    font-family: 'Bethia Dastin';
    src: url('fonts/Bethia Dastin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #f69b7c;
    /* Orange/Coral */
    --secondary-color: #28b2b2;
    /* Teal/Green-Blue - Updated */
    --text-dark: #1f2128;
    /* Dark brown/black */
    --text-bg: #4a4a4a;
    /* Gray for paragraph */
    --bg-blue: #28b2b2;
    /* Cyan/Blue - Updated */
    --blob-light-blue: #a8f0ff;

    --font-heading: 'Chewy', cursive;
    /* More playful, marker-style font */
    /* or a bolder rounded font if needed */
    --font-hero: 'Chewy', cursive;
    --font-script: 'Pacifico', cursive;
    /* For "sticker" style text */
    --font-body: 'Nunito', sans-serif;
    --font-logo-main: 'Bethia Dastin', sans-serif;
    --font-logo-sub: 'Myriad Pro', sans-serif;
}

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

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #ffffff;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

body.page-loaded {
    opacity: 1;
}

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* Typography Placeholder */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Sticker Text Effect */
.sticker-text {
    font-family: var(--font-script);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    z-index: 1;
    text-shadow:
        3px 3px 0 #fff,
        -3px -3px 0 #fff,
        3px -3px 0 #fff,
        -3px 3px 0 #fff,
        3px 0 0 #fff,
        -3px 0 0 #fff,
        0 3px 0 #fff,
        0 -3px 0 #fff,
        2px 2px 4px rgba(0, 0, 0, 0.1);
    /* Drop shadow behind outline */
    transform: rotate(-2deg);
    margin: 0 5px;
    font-weight: 400;
    /* Scripts usually don't need bold */
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    /* Centraliza o container interno */
    align-items: center;
    padding: 0;
    /* Remove padding do wrapper externo */
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* Ocupa 100% da tela */
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    /* Mantém o conteúdo centralizado */
    padding: 30px 50px;
    margin: 0 auto;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .navbar-container {
    padding: 15px 50px;
    /* Shrink slightly when scrolled */
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    line-height: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2px;
}

.logo-main {
    font-family: 'Bethia Dastin', sans-serif;
    font-size: 24px;
    font-weight: normal;
    color: #28b2b2;
    /* Teal color from logo - Updated */
    line-height: 1;
}

.logo-sub {
    font-family: 'Myriad Pro', sans-serif;
    font-size: 9px;
    font-weight: normal;
    color: #28b2b2;
    /* Teal color from logo - Updated */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -6px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Nav Styles */

.nav-links a {
    font-size: 15px;
    font-weight: 700;
    color: #1f2128;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links .btn {
    color: white;
    /* Ensure button text is white */
}

.arrow-down {
    font-size: 8px;
    color: #ccc;
    margin-left: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    /* Full pill shape */
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* Prepare for border */
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 120, 84, 0.3);
}

.btn-primary:hover {
    background-color: #e8856a;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #ddd;
    color: var(--text-dark);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    align-items: center;
    padding: 120px 50px 80px;
    /* Increased bottom padding for breathing room */
    position: relative;
    gap: 20px;
    min-height: 85vh;
}

.hero-left {
    flex: 1.2;
    position: relative;
    min-height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Blob background */
.blob-bg {
    position: absolute;
    width: 515px;
    /* Increased for desktop */
    height: 600px;
    /* Increased for desktop */
    /* Updated gradient */
    background: linear-gradient(145deg, #a8f0ff 0%, #28b2b2 55%, #28b2b2 100%);
    border-radius: 42% 58% 65% 35% / 42% 48% 58% 52%;
    z-index: 1;
    top: 50%;
    left: 0;
    /* Centered relative to container */
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%) rotate(10deg);
    /* Slight static rotation */
    /* Updated shadow */
    box-shadow: 0 30px 80px rgba(40, 178, 178, 0.4);
}

.blob-bg::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 8%;
    width: 240px;
    height: 370px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.7;
}

/* Hero photo frame */
.hero-img-wrap {
    position: relative;
    z-index: 2;
    width: 520px;
    /* Increased for desktop */
    height: 590px;
    /* Increased for desktop */
    border-radius: 42% 58% 65% 35% / 42% 48% 58% 52%;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18), 0 0 0 6px rgba(255, 255, 255, 0.6);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.hero-img-wrap:hover .hero-photo {
    transform: scale(1.04);
}

/* Floating badges */
.hero-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 10;
    backdrop-filter: blur(8px);
}

.hero-badge--cro {
    top: 12%;
    right: 2%;
    animation: floatBadgeCro 4s ease-in-out infinite;
}

.hero-badge--reviews {
    bottom: 14%;
    right: -2%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    animation: floatBadgeReviews 4s ease-in-out infinite 0.8s;
}

@keyframes floatBadgeCro {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes floatBadgeReviews {

    0%,
    100% {
        transform: translateY(0px) rotate(1deg);
    }

    50% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

.hero-badge__icon {
    font-size: 26px;
    line-height: 1;
}

.hero-badge__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-badge__text strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-badge__text span {
    font-size: 11px;
    color: #888;
    font-weight: 600;
}

.hero-badge__stars {
    display: flex;
    gap: 2px;
    font-size: 13px;
}

/* Hero right: text content */
.hero-right {
    flex: 1;
    padding-left: 60px;
    z-index: 10;
}

/* Category pill / tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* Updated gradient */
    background: linear-gradient(135deg, rgba(40, 178, 178, 0.12) 0%, rgba(168, 240, 255, 0.12) 100%);
    border: 1px solid rgba(40, 178, 178, 0.3);
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 66px;
    line-height: 1.05;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title .sticker-text {
    font-family: 'Fredoka One', cursive;
    transform: none;
}

.black-text {
    color: var(--text-dark);
}

.gradient-text {
    /* Updated gradient */
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a8f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 17px;
    color: #777;
    margin-bottom: 30px;
    font-weight: 600;
    max-width: 440px;
    line-height: 1.7;
}

/* Trust checklist */
.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #444;
}

.trust-item svg {
    flex-shrink: 0;
    /* Updated color */
    background: rgba(40, 178, 178, 0.15);
    border-radius: 50%;
    padding: 3px;
    width: 24px;
    height: 24px;
    stroke: var(--secondary-color);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
}

.btn-primary.btn-large {
    box-shadow: 0 8px 25px rgba(246, 155, 124, 0.4);
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(246, 155, 124, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ddd;
    color: var(--text-dark);
    box-shadow: none;
}

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

/* Extra decorative orbs */
.orb-teal {
    width: 200px;
    height: 200px;
    /* Updated gradient */
    background: radial-gradient(circle, rgba(40, 178, 178, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    top: 5%;
    right: 8%;
    animation: orbPulse 6s ease-in-out infinite;
}

.orb-coral {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(246, 155, 124, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    right: 22%;
    animation: orbPulse 8s ease-in-out infinite 2s;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
    }
}

/* Decorative Elements */
.decor {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

.star-top {
    top: 15%;
    left: 45%;
    transform: rotate(15deg);
}

.star-btm {
    bottom: 20%;
    left: 5%;
    transform: rotate(-10deg);
}

.star-orange {
    top: 20%;
    right: 15%;
}

.star-yellow {
    bottom: 30%;
    right: 5%;
}

/* ===== Benefits Section ===== */
.benefits {
    background: #e6f5f5;
    /* Teal claro — tom frio, diferente do pêssego anterior */
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

/* Subtle background texture */
.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(40, 178, 178, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Header */
.benefits-header {
    text-align: center;
    margin-bottom: 35px;
}

.benefits-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
}

.benefits-highlight {
    color: var(--secondary-color);
}

.benefits-subtitle {
    font-size: 17px;
    color: #888;
    font-weight: 600;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.benefit-card {
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 30px;
    /* More rounded */
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-color, #f69b7c);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
    border-color: transparent;
}

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

.benefit-card__icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover .benefit-card__icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.benefit-icon {
    font-size: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.benefit-card__desc {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    font-weight: 600;
}

/* Bottom Clouds */
.bottom-clouds {
    width: 100%;
    position: relative;
    margin-top: -100px;
    /* Adjusted overlap to not cover buttons */
    z-index: 5;
    background: transparent;
}

.bottom-clouds svg {
    display: block;
    width: 100%;
    height: 150px;
    position: relative;
    top: 1px;
    background: transparent;
    /* Transparent so it overlays hero cleanly */
}

.bottom-clouds svg path {
    fill: #28b2b2;
    /* Updated fill */
}

.cyan-bg {
    background-color: #28b2b2;
    /* Updated color */
    padding: 60px 50px 100px;
    min-height: 100vh;
    /* Aumentado para cobrir a tela inteira */
    display: flex;
    align-items: center;
    overflow-x: hidden;
    /* Prevent photo bleed on mobile */
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ===== Appliances Section ===== */
.appliances {
    padding: 60px 50px;
    background: #fff5f0; /* Peach */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.appliances-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.appliances-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.appliances-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.appliances-title {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
}

.appliances-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    font-weight: 500;
}

.appliances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.appliance-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.appliance-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.appliance-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid var(--primary-color);
    transition: transform 0.6s ease;
}

.appliance-item:hover img {
    transform: scale(1.05);
}

.appliance-info {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.appliance-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
}

@media (max-width: 900px) {
    .appliances-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .appliance-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 15px);
    }
}
@media (max-width: 600px) {
    .appliances-grid {
        grid-template-columns: 1fr;
    }
    .appliance-item:last-child:nth-child(odd) {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }
}

.appliances-more {
    text-align: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f4fbfb;
    padding: 18px 30px;
    border-radius: 40px;
    width: fit-content;
    margin-inline: auto;
    border: 1px solid rgba(40, 178, 178, 0.2);
    box-shadow: 0 5px 15px rgba(40, 178, 178, 0.08);
}

.appliances-more .icon-star {
    font-size: 24px;
    animation: pulseStar 2s infinite ease-in-out;
}

.appliances-more p {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 0;
}

@keyframes pulseStar {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    .appliances-more {
        flex-direction: column;
        text-align: center;
        width: 100%;
        border-radius: 20px;
        padding: 20px;
    }
}

/* ===== Services Section ===== */
.services {
    padding: 60px 50px;
    /* Beautiful elegant gradient: Seamlessly catches the peach from previous section and fades to a cool premium cyan, then back to white */
    background: linear-gradient(180deg, #fff5f0 0%, #f2f9f9 15%, #e5f4f4 85%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
}

.services-highlight {
    color: var(--primary-color);
}

.services-subtitle {
    font-size: 18px;
    color: var(--text-bg);
    line-height: 1.6;
}

/* ===== Services Slider ===== */
.services-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.services-slider-wrapper {
    overflow-x: clip;
    /* Clip cards horizontally without cutting vertical shadows */
    overflow-y: visible;
    padding: 12px 14px; /* Horizontal padding prevents shadow clipping on sides */
}

.services-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
    will-change: transform;
}

.services-slider:active {
    cursor: grabbing;
}

.service-slide {
    min-width: 33.333%;
    flex: 0 0 33.333%;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    /* Creates visual gap between cards */
    box-sizing: border-box;
}

/* The actual rendered card */
.service-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 48px rgba(40, 178, 178, 0.08), 0 -2px 10px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(40, 178, 178, 0.15), 0 4px 15px rgba(0,0,0,0.05);
}

.service-slide__img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    /* For tag and gradient overlay */
}

/* Dark gradient fading up from bottom — editorial look */
.service-slide__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(20, 20, 30, 0.55) 100%);
    pointer-events: none;
}

/* Category tag — hidden */
.service-slide__tag {
    display: none;
}

.service-slide__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.service-card:hover .service-slide__img img {
    transform: scale(1.06);
}

.service-slide__content {
    padding: 24px 26px 28px;
    text-align: left;
    /* Left-aligned feels more editorial/premium */
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    /* Fill remaining height */
    border-top: 3px solid var(--primary-color);
    /* Coral accent bar */
}

.service-slide h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.25;
}

.service-slide p {
    font-size: 14px;
    color: var(--text-bg);
    line-height: 1.65;
}

/* Slider Controls */
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--secondary-color);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
}

.services-slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

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



/* ===== Blue Section ===== */

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 60px 50px;
    background: #eef6f6; /* Light Teal */
    position: relative;
    overflow: visible;
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimonials-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
}

.testimonials-highlight {
    color: var(--primary-color);
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--text-bg);
    line-height: 1.6;
}

/* ===== Testimonials Slider ===== */
.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    /* Overflow handled by the inner wrapper with overflow-x: clip */
}

.testimonials-slider-wrapper {
    overflow-x: clip;
    /* Clips horizontal overflow without creating scroll container — shadows stay visible */
    overflow-y: visible;
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    /* Espaço entre os cards */
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    align-items: stretch;
}

.testimonials-slider:active {
    cursor: grabbing;
}

.testimonials-slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    /* 2 gaps (48px) ÷ 3 cards = 16px each */
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 155, 124, 0.3);
}

.testimonial-stars {
    color: #ffd166;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    border-top: 1px solid #f9f9f9;
    padding-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #c8eaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    object-fit: cover;
}

.author-avatar.orange {
    background: #ffe3d9;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}


/* ===== Sobre Mim Section (Blue) ===== */
.sobre-mim-inner {
    /* Updated */
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* Updated */
    gap: 40px;
    /* Reduced gap from 80px */
    flex-direction: row-reverse;
}

.sobre-mim-image-wrap {
    flex: 1;
    position: relative;
    /* Updated */
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow removido — corte vertical da foto resolvido; horizontal contido pelo .cyan-bg */
}

.sobre-mim-blob {
    display: none;
    /* Blob removido — substituído por contorno na foto */
}

.sobre-mim-photo {
    width: 500px;
    height: 640px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    /* Contorno estático: anel teal + sombra suave */
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.15),
        0 0 0 10px rgba(40, 178, 178, 0.6),
        0 20px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-mim-photo:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.2),
        0 0 0 12px rgba(40, 178, 178, 0.85),
        0 25px 60px rgba(0, 0, 0, 0.25);
}

.sobre-mim-badge {
    position: absolute;
    bottom: 40px;
    right: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.badge-text small {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.sobre-mim-content {
    flex: 1;
    color: #fff;
    /* Text white on blue bg */
}

.sobre-mim-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.sobre-mim-title {
    font-family: var(--font-heading);
    /* Updated */
    font-size: 80px;
    /* Increased considerably from 56px */
    margin-bottom: 30px;
    color: #fff;
}

.sobre-mim-title .highlight {
    /* Updated */
    color: #fff;
    /* White highlight for better contrast */
}

.sobre-mim-text {
    /* Updated */
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.sobre-mim-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    /* Updated */
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.stat-label {
    /* Updated */
    font-size: 14px;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ===== FAQ Section ===== */
.faq {
    padding: 60px 50px;
    background: #ffffff; /* White */
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.faq-highlight {
    color: var(--primary-color);
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-bg);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    color: #0d6b6b;
    /* Teal escuro — melhor contraste no fundo claro */
    font-weight: 700;
}

.faq-icon {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
    padding: 0 30px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ===== Common Issues Section ===== */
.common-issues {
    background: #ffffff;
    padding: 80px 50px 60px; /* Reduced slightly to bring it closer to Sobre Mim on desktop */
    position: relative;
    overflow: hidden;
}

.common-issues-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.common-issues-header {
    text-align: center;
    margin-bottom: 35px;
}

.common-issues-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.common-issues-title {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
}

.common-issues-subtitle {
    font-size: 17px;
    color: #888;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.common-issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
}

.issue-card {
    background: #fdfdfd;
    border: 1.5px solid #f0f0f0;
    border-radius: 20px;
    padding: 24px 24px; /* Reduced vertical padding, kept horizontal */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: #e0e0e0;
}

.issue-card__icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px; /* Reduced from 20px */
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.issue-card:hover .issue-card__icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.issue-icon {
    font-size: 30px; /* Restored */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.issue-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.issue-card__tag {
    align-self: flex-start;
    padding: 6px 14px; /* Restored */
    border-radius: 20px;
    font-size: 13px; /* Restored */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px; /* Reduced from 20px */
    border: 1px solid rgba(0,0,0,0.05);
}

.issue-card__title {
    font-family: var(--font-heading);
    font-size: 24px; /* Restored */
    color: var(--text-dark);
    margin-bottom: 8px; /* Reduced from 12px */
    line-height: 1.2; /* Tighter line height to save vertical space */
}

.issue-card__problem {
    font-size: 15px; /* Restored */
    color: #666;
    line-height: 1.5; /* Slightly tighter */
    margin-bottom: 16px; /* Reduced from 25px */
    font-weight: 500;
}

.issue-card__solution {
    display: flex;
    flex-direction: column;
    gap: 6px; /* Reduced from 12px */
    margin-top: auto;
    background: linear-gradient(145deg, #f8fcfc 0%, #f1fafa 100%);
    padding: 16px 20px; /* Reduced vertical padding, restored horizontal */
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(40, 178, 178, 0.05);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-header h4 {
    font-size: 16px; /* Restored */
    color: var(--secondary-color);
    font-weight: 800;
}

.solution-icon {
    font-size: 16px;
    line-height: 1;
}

.issue-card__desc {
    font-size: 15px; /* Restored */
    color: #444;
    line-height: 1.5; /* Tighter line height */
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .common-issues {
        padding: 50px 20px 35px; /* Restored more spacing specifically before the title in mobile */
    }
}

/* ===== Location Section ===== */
.location {
    padding: 60px 50px;
    background: #fef2ea; /* Peach */
}

.location-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 35px;
}

.location-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.location-highlight {
    color: var(--primary-color);
}

.location-subtitle {
    font-size: 18px;
    color: var(--text-bg);
}

.location-content {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: stretch;
    height: 480px; /* Fixed height so img/iframe children can use height:100% */
}

/* Single clinic photo — left column */
.location-photo {
    flex: 1.1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    position: relative; /* Anchor for absolutely-positioned img */
}

.location-photo img {
    position: absolute; /* Fills container regardless of flex/min-height */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.location-photo:hover img {
    transform: scale(1.03);
}

/* Subtle gradient overlay at bottom */
.location-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
    border-radius: 0 0 24px 24px;
    pointer-events: none;
}

.location-box-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-info {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.location-address-box {
    background: #fff;
    padding: 20px 24px; /* Reduced from 32px 36px to make box smaller */
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.location-address-box h3 {
    font-size: 20px; /* slightly smaller to fit better */
    color: var(--text-dark);
    margin-bottom: 8px; /* Reduced from 15px */
}

.location-address-box p {
    font-size: 15px; /* slightly smaller */
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px; /* Reduced from 25px */
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.location-phone:hover {
    color: var(--primary-color);
}

.location-map {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative; /* Anchor for absolutely-positioned iframe */
    min-height: 200px;
}

.location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ===== CTA Social Section ===== */
.cta-social {
    padding: 60px 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #7dbdbe 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-social-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 500;
}

.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-instagram {
    background: #fff;
    color: #E1306C;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-instagram:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp-cta {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}


/* ===== Footer ===== */
.footer {
    width: 100%;
    background-color: #545454;
    padding: 60px 20px 30px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-main {
    font-family: 'Bethia Dastin', sans-serif;
    font-size: 32px;
    color: #fff;
    line-height: 1;
}

.footer-logo-sub {
    font-family: 'Myriad Pro', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #ccc;
    text-transform: uppercase;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #ddd;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-copy {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
    width: 100%;
}


/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: left;
        padding-top: 110px;
        /* Conteúdo mais próximo da navbar no mobile */
        height: auto;
    }

    .hero-left {
        order: 2;
        min-height: auto;
        margin-top: 30px;
        transform: scale(1.1);
        /* Make image bigger without layout shift */
        transform-origin: center top;
        /* Grow downwards mostly */
    }

    .hero-right {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        position: relative;
        z-index: 20;
        padding: 0 10px;
    }

    .hero-title {
        font-size: clamp(45px, 12vw, 64px);
        /* Increased for better proportion */
        line-height: 1.05;
        margin-bottom: 20px;
        width: 100%;
    }

    .hero-title br {
        display: none;
        /* Hide breaks to allow flowing */
    }

    .hero-subtitle {
        font-size: 17px;
        padding: 0;
        margin-bottom: 25px;
    }

    .hero-img-wrap {
        width: 85vw;
        max-width: 450px;
        height: 480px;
        margin-top: 0;
        /* Removed margin */
        align-self: center;
        /* Keep image centered */
    }

    .blob-bg {
        width: 86vw;
        max-width: 440px;
        height: 500px;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%) rotate(10deg);
    }

    .hero-buttons {
        justify-content: flex-start;
        /* Left align buttons */
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        /* Left align trust items */
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-slide {
        min-width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 50px;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    /* Hamburger Animation */
    .nav-links.active~.mobile-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-links.active~.mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-links.active~.mobile-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .testimonial-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

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

    .sobre-mim-inner {
        flex-direction: column;
        text-align: center;
    }

    .sobre-mim-stats {
        justify-content: center;
    }

    .sobre-mim-image-wrap {
        height: auto;
        margin-bottom: 40px;
        overflow: visible;
        /* Badge can still show; bleed blocked by cyan-bg overflow-x */
    }

    .sobre-mim-photo {
        width: 100%;
        max-width: 370px;
        height: auto;
        transform: none;
        /* Remove rotation that causes horizontal overflow on mobile */
    }

    .sobre-mim-photo:hover {
        transform: scale(1.02);
    }

    .sobre-mim-title {
        font-size: 48px;
    }

    /* Location section — stack on mobile */
    .location-content {
        flex-direction: column;
        height: auto;      /* Override the 480px fixed desktop height */
        min-height: auto;
    }

    .location-photo {
        height: 360px; /* Increased height to show more of the clinic below the subject */
        min-height: 360px;
    }
    
    .location-photo img {
        object-position: center 20%; /* Fine-tuned from 'top' to just cut off the ceiling and keep the head */
    }

    .location-box-wrapper {
        height: auto;
    }
    .location-map {
        height: 320px; /* Increased map size to make it much more prominent */
    }
}

/* Removed duplicate @media (max-width: 900px) block */

@media (max-width: 768px) {
    .appliances {
        padding: 55px 20px; /* Increased slightly to serve as a better breather */
    }
    .services {
        padding: 65px 20px 35px; /* Increased top padding to move section down on mobile */
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-slider-container {
        flex-direction: column;
    }

    .service-slide {
        min-width: 85%;
        flex: 0 0 85%;
        border-right: none;
    }

    .service-slide__content {
        padding: 30px 20px;
    }

    .service-slide__img {
        height: 200px;
    }

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

    .sobre-mim-inner {
        flex-direction: column;
        gap: 40px;
    }

    .sobre-mim-image-wrap {
        width: 100%;
        height: auto;
    }

    .sobre-mim-photo {
        max-width: 400px;
        width: 100%;
        height: auto;
        transform: none;
        /* Ensure no rotation at 768px */
    }

    .sobre-mim-title {
        font-size: 60px;
        word-break: break-word;
        line-height: 1.1;
    }

    .sobre-mim-text {
        font-size: 18px;
    }

    .cyan-bg {
        padding: 60px 20px;
    }

    .footer-inner {
        padding: 0 20px;
    }

    /* Uniform large section titles for mobile */
    .common-issues-title,
    .benefits-title,
    .appliances-title,
    .services-title,
    .testimonials-title,
    .location-title,
    .faq-title {
        font-size: 42px;
        line-height: 1.1;
        word-break: break-word;
    }
}

@media (max-width: 600px) {
    .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .btn-social {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-img-wrap {
        width: 85vw;
        max-width: 340px;
        height: 400px;
    }

    .blob-bg {
        width: 86vw;
        max-width: 340px;
        height: 420px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .sticker-text {
        display: block;
        transform: rotate(-2deg) translateY(5px);
    }

    .hero-title .sticker-text {
        display: inline-block;
        transform: none;
    }

    .sobre-mim-title .sticker-text {
        display: inline-block;
        /* Mantém "Mim" na mesma linha que "Sobre" */
        transform: rotate(-2deg);
    }

    /* Sobre mim - very small screens */
    .sobre-mim-photo {
        max-width: 320px;
        transform: none;
    }

    .sobre-mim-title {
        font-size: 48px;
    }

    .sobre-mim-stats {
        flex-direction: column;
        gap: 20px;
    }

    .sobre-mim-badge {
        display: flex;
        bottom: 10px;
        right: -10px;
        transform: scale(0.85);
        transform-origin: bottom right;
    }
}

/* ===== Animations ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children if needed */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Scrollable Row for Mobile (Benefits Sections) */
@media (max-width: 900px) {
    .benefits-grid.scrollable-mobile {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 20px;
        scroll-padding-left: 20px;
        padding-left: 20px; /* padding on left so first card is inset */
        margin-left: -20px; /* offset inner padding */
    }
    
    .benefits-grid.scrollable-mobile::after {
        content: ""; /* empty element so right padding works */
        flex: 0 0 1px;
    }

    .benefits-grid.scrollable-mobile::-webkit-scrollbar {
        height: 6px;
    }
    .benefits-grid.scrollable-mobile::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.02);
        border-radius: 10px;
    }
    .benefits-grid.scrollable-mobile::-webkit-scrollbar-thumb {
        background: rgba(40,178,178,0.2);
        border-radius: 10px;
    }

    .benefits-grid.scrollable-mobile .benefit-card {
        flex: 0 0 65vw; /* Reduced from 75vw to show more of next card */
        min-width: 220px; /* Reduced to allow shrinking on tiny screens */
        scroll-snap-align: start; /* Snap to left edge to maximize right-side peeking */
        margin: 0;
    }

    .common-issues-grid {
        grid-template-columns: 1fr;
    }
}