/* ═══════════════════════════════════════════
   SEMAVI PSICOLOGIA — PREMIUM DESIGN SYSTEM
   ═══════════════════════════════════════════ */

/* ========== VARIABLES ========== */
:root {
    /* Premium Palette */
    --white: #FFFFFF;
    --cream: #FAFAFA;
    --warm: #F5F3F0;
    --warm-2: #EDE9E3;
    --sage: #26606d;
    --sage-dark: #1d4d58;
    --sage-light: #3a7a87;
    --gold: #C8A97E;
    --gold-light: #D4BC9A;
    --gold-dark: #B8945F;
    --dark: #1a3d47;
    --text-primary: #2C3530;
    --text-secondary: #5A635D;
    --text-muted: #8A918C;
    --text-light: #B0B5B1;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(44, 53, 48, 0.04);
    --shadow-sm: 0 2px 8px rgba(44, 53, 48, 0.06);
    --shadow: 0 4px 16px rgba(44, 53, 48, 0.08);
    --shadow-md: 0 8px 30px rgba(44, 53, 48, 0.10);
    --shadow-lg: 0 16px 48px rgba(44, 53, 48, 0.12);
    --shadow-xl: 0 24px 64px rgba(44, 53, 48, 0.14);
    --shadow-gold: 0 8px 30px rgba(200, 169, 126, 0.15);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s;
    --t-normal: 0.35s;
    --t-slow: 0.5s;

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 999px;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
    background-color: var(--cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--t-normal) var(--ease);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 0;
    max-width: 600px;
}

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0 24px;
    border-radius: 2px;
}

.section-divider.center {
    margin: 20px auto 24px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-title {
    margin: 0 auto;
}

.section-header .section-description {
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all var(--t-normal) var(--ease);
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn svg,
.btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.btn-primary:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--sage);
    border-color: var(--sage-light);
}

.btn-outline:hover {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #1fb855;
    border-color: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 0.95rem;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--t-normal) var(--ease);
    background: transparent;
}

.header.scrolled {
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(110, 127, 115, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: all var(--t-normal) var(--ease);
}

.header.scrolled .logo-img {
    height: 36px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--r-full);
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: all var(--t-normal) var(--ease);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform var(--t-normal) var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--sage);
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--r-full);
    background: var(--sage);
    color: var(--white);
    transition: all var(--t-normal) var(--ease);
    border: 1.5px solid var(--sage);
}

.btn-header i {
    font-size: 1rem;
}

.btn-header:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--t-normal) var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   HERO — PREMIUM LIGHT DESIGN
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    overflow: hidden;
    padding: 140px 0 100px;
}

/* Organic shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(110, 127, 115, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -80px;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(110, 127, 115, 0.04) 0%, transparent 70%);
    top: 40%;
    left: 40%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--warm);
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--sage);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    border: 1px solid var(--warm-2);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.hero-title {
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 40px;
    line-height: 1.85;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: var(--r-xl);
    width: 100%;
    height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.hero-image-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 2px solid var(--gold-light);
    border-radius: var(--r-xl);
    opacity: 0.5;
    z-index: 2;
}

.hero-image-float-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 2;
}

.hero-image-float-card svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.hero-image-float-card span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-white {
    background: var(--white);
}

.section-warm {
    background: var(--warm);
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    border-radius: var(--r-xl);
    width: 100%;
    height: 540px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.about-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    border: 2px solid var(--gold-light);
    border-radius: var(--r-xl);
    opacity: 0.5;
    z-index: 0;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.85;
}

.about-features {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--warm);
    border-radius: var(--r-md);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--t-normal) var(--ease);
    border: 1px solid transparent;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--warm-2);
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

/* ========== CARDS (Psicoterapia) ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xs);
    transition: all var(--t-normal) var(--ease);
    text-align: center;
    border: 1px solid rgba(110, 127, 115, 0.06);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--sage-light));
    opacity: 0;
    transition: opacity var(--t-normal) var(--ease);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(110, 127, 115, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all var(--t-normal) var(--ease-spring);
    border: 1px solid var(--warm-2);
}

.card:hover .card-icon {
    background: var(--sage);
    border-color: var(--sage);
    transform: scale(1.08);
}

.card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--sage);
    stroke-width: 1.5;
    transition: color var(--t-fast) var(--ease);
}

.card:hover .card-icon svg {
    color: var(--white);
}

.card-title {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.75;
}

.section-footer-text {
    text-align: center;
    margin-top: 48px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--sage);
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* Carousel nav — hidden on desktop */
.carousel-nav {
    display: none;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--warm-2);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--sage);
    stroke-width: 2;
}

.carousel-arrow:hover {
    background: var(--sage);
    border-color: var(--sage);
}

.carousel-arrow:hover svg {
    color: var(--white);
}

.carousel-arrow:active {
    transform: scale(0.92);
}

/* ========== ATENDIMENTO ========== */
.atendimento-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.atendimento-content p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.85;
}

.check-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-primary);
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(110, 127, 115, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    color: var(--sage);
    stroke-width: 2.5;
}

.atendimento-note {
    color: var(--text-muted) !important;
    margin-bottom: 32px !important;
}

.atendimento-image-container {
    position: relative;
}

.atendimento-image {
    border-radius: var(--r-xl);
    width: 100%;
    height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.atendimento-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 2px solid var(--gold-light);
    border-radius: var(--r-xl);
    opacity: 0.4;
    z-index: 0;
}

/* ═══════════════════════════════════════════
   COMPROMISSO — SAGE PREMIUM SECTION
   ═══════════════════════════════════════════ */
.section-sage {
    position: relative;
    overflow: hidden;
    background: url('images/compromisso-bg.jpg') center center / cover no-repeat fixed;
}

.section-sage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(38, 96, 109, 0.88);
    pointer-events: none;
    z-index: 0;
}

.section-sage>.container {
    position: relative;
    z-index: 1;
}

.section-sage .section-label {
    color: var(--gold-light);
}

.section-sage .section-title {
    color: var(--white);
}

.section-sage .section-divider {
    background: var(--gold-light);
}

.section-sage .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.compromisso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.compromisso-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 52px 36px;
    border-radius: var(--r-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--t-normal) var(--ease);
}

.compromisso-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.compromisso-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all var(--t-normal) var(--ease-spring);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compromisso-card:hover .compromisso-icon {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

.compromisso-icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold-light);
    stroke-width: 1.5;
    transition: color var(--t-fast) var(--ease);
}

.compromisso-card:hover .compromisso-icon svg {
    color: var(--white);
}

.compromisso-card h3 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.compromisso-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════
   CTA — PREMIUM
   ═══════════════════════════════════════════ */
.section-cta {
    background: linear-gradient(160deg, var(--warm) 0%, var(--cream) 50%, var(--warm) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
    top: -80px;
    right: 10%;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(110, 127, 115, 0.06) 0%, transparent 70%);
    bottom: -60px;
    left: 5%;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.cta-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke-width: 1.5;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text-primary);
    margin-bottom: 24px;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.cta-highlight {
    font-weight: 600;
    color: var(--sage);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 38px;
    margin-bottom: 18px;
    opacity: 0.9;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--t-normal) var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0;
    transition: all var(--t-normal) var(--ease);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact-list svg,
.footer-contact-list i {
    width: 16px;
    height: 16px;
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.map-wrapper {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT — PREMIUM
   ═══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
    transition: all var(--t-normal) var(--ease);
}

.whatsapp-float i {
    font-size: 1.8rem;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
    border-radius: 20px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-normal) var(--ease);
    box-shadow: var(--shadow);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-4px);
}

/* ═══════════════════════════════════════════
   ANIMATIONS — PREMIUM
   ═══════════════════════════════════════════ */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--t-slow) var(--ease),
        transform var(--t-slow) var(--ease);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translate(0);
}

.scroll-animate[data-animation="fade-right"] {
    transform: translateX(-30px);
}

.scroll-animate[data-animation="fade-left"] {
    transform: translateX(30px);
}

.scroll-animate[data-animation="fade-right"].visible,
.scroll-animate[data-animation="fade-left"].visible {
    transform: translate(0);
}

/* Staggered card animation */
.cards-grid.visible .card,
.compromisso-grid.visible .compromisso-card {
    animation: cardFadeUp 0.5s var(--ease) forwards;
    opacity: 0;
}

.cards-grid.visible .card:nth-child(1),
.compromisso-grid.visible .compromisso-card:nth-child(1) {
    animation-delay: 0.05s;
}

.cards-grid.visible .card:nth-child(2),
.compromisso-grid.visible .compromisso-card:nth-child(2) {
    animation-delay: 0.1s;
}

.cards-grid.visible .card:nth-child(3),
.compromisso-grid.visible .compromisso-card:nth-child(3) {
    animation-delay: 0.15s;
}

.cards-grid.visible .card:nth-child(4) {
    animation-delay: 0.2s;
}

.cards-grid.visible .card:nth-child(5) {
    animation-delay: 0.25s;
}

.cards-grid.visible .card:nth-child(6) {
    animation-delay: 0.3s;
}

.cards-grid.visible .card:nth-child(7) {
    animation-delay: 0.35s;
}

@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — PREMIUM
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-image {
        height: 380px;
    }

    .hero-image-float-card {
        left: 10px;
        bottom: 20px;
    }

    .about-grid,
    .atendimento-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image,
    .atendimento-image {
        height: 380px;
    }

    .about-shape,
    .atendimento-shape {
        display: none;
    }

    .compromisso-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .section {
        padding: 90px 0;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        padding: 100px 32px 40px;
        transition: right 0.35s var(--ease);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .nav-link {
        color: var(--text-primary);
        font-size: 0.95rem;
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--r-sm);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--warm);
        color: var(--sage);
    }

    .hamburger {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 110px 0 70px;
        min-height: auto;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .cards-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }

    .cards-grid::-webkit-scrollbar {
        display: none;
    }

    .card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 30px 22px;
    }

    .carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--warm-2);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background: var(--sage);
        width: 24px;
        border-radius: 4px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-features {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .atendimento-content {
        text-align: center;
    }

    .atendimento-content .check-list {
        text-align: left;
    }

    .about-image-wrapper {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .card {
        min-width: 260px;
        max-width: 260px;
    }

    .hero-image {
        height: 280px;
    }

    .hero-image-float-card {
        display: none;
    }

    .about-image,
    .atendimento-image {
        height: 280px;
    }

    .compromisso-card {
        padding: 40px 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .whatsapp-float i {
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}