/* ===========================
   BODY INFINITY - STYLES
   Centre d'Estètica i Benestar
   =========================== */

/* --- VARIABLES --- */
:root {
    --bg-primary: #F5F0EB;
    --bg-secondary: #FEFCFA;
    --bg-dark: #2D2926;
    --text-primary: #2D2926;
    --text-secondary: #6B6560;
    --text-light: #9B9590;
    --accent-rose: #D4A5A5;
    --accent-coral: #D4917B;
    --accent-gold: #C4A35A;
    --accent-sage: #8A9A7B;
    --accent-pink-light: #E8CFC9;
    --accent-nude: #D6C5B8;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.06);
    --shadow-md: 0 8px 30px rgba(45, 41, 38, 0.08);
    --shadow-lg: 0 16px 50px rgba(45, 41, 38, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

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

/* --- ACCESSIBILITY --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-logo {
    max-width: 160px;
    height: auto;
    margin: 0 auto 12px;
    border-radius: 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

em {
    font-style: italic;
    color: var(--accent-coral);
}

/* --- SECTION COMMON --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-coral);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(254, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 64px;
    width: auto;
    transition: var(--transition);
    border-radius: 4px;
}

.navbar.scrolled .nav-logo img {
    height: 50px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text-primary);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-coral);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-coral) !important;
    color: var(--white) !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 145, 123, 0.35);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 145, 123, 0.5);
    background: var(--accent-rose) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 41, 38, 0.55), rgba(212, 145, 123, 0.2));
    z-index: 0;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 41, 38, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-pink-light);
    border: 1px solid rgba(232, 207, 201, 0.4);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 8px;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-content h2 em {
    color: var(--accent-pink-light);
    font-weight: 500;
}

.hero-content>p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

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

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

.btn-primary {
    background: var(--accent-coral);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 145, 123, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 145, 123, 0.55);
    background: #c9836b;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    margin: 8px auto 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* --- ABOUT --- */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.about-image {
    position: relative;
    overflow: hidden;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.02);
}



.about-accent-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--accent-gold);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    opacity: 0.3;
    z-index: -1;
}

.about-content .section-tag {
    display: block;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content>p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-coral);
    background: rgba(212, 145, 123, 0.1);
}

.feature h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- SERVICES --- */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.cat-tab {
    padding: 10px 24px;
    border: 1.5px solid var(--accent-nude);
    background: transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cat-tab:hover {
    border-color: var(--accent-coral);
    color: var(--accent-coral);
    background: rgba(212, 145, 123, 0.06);
}

.cat-tab.active {
    background: var(--accent-coral);
    color: var(--white);
    border-color: var(--accent-coral);
    box-shadow: 0 4px 15px rgba(212, 145, 123, 0.3);
}

.category-content {
    display: none;
    animation: fadeInServices 0.4s ease;
}

.category-content.active {
    display: block;
}

@keyframes fadeInServices {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    gap: 16px;
}

.service-card:hover {
    border-color: var(--accent-pink-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.service-card.highlight {
    background: linear-gradient(135deg, rgba(196, 163, 90, 0.08), rgba(212, 145, 123, 0.08));
    border: 1px solid rgba(196, 163, 90, 0.2);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.service-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-coral);
    white-space: nowrap;
}

/* --- PRODUCTS --- */
.products {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.products-brands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.brand-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(214, 197, 184, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.brand-logo-area {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(214, 197, 184, 0.3);
}

.brand-logo-area h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-products {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(214, 197, 184, 0.15);
    font-size: 0.9rem;
    gap: 12px;
}

.product-item:last-child {
    border-bottom: none;
}

.product-item span:first-child {
    color: var(--text-secondary);
}

.product-price {
    font-weight: 700;
    color: var(--accent-coral);
    white-space: nowrap;
}

.brand-cta {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 14px;
    background: rgba(212, 145, 123, 0.08);
    border-radius: var(--radius-sm);
    color: var(--accent-coral);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.brand-cta:hover {
    background: var(--accent-coral);
    color: var(--white);
}

.product-hidden {
    display: none;
}

.brand-products.expanded .product-hidden {
    display: flex;
}

.brand-toggle {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    background: none;
    border: 1px dashed rgba(214, 197, 184, 0.4);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.brand-toggle:hover {
    color: var(--accent-coral);
    border-color: var(--accent-coral);
}

/* --- RESULTS --- */
.results {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

.result-card {
    text-align: center;
}

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

.reel-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(214, 197, 184, 0.3);
    transition: var(--transition);
}

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

.reel-embed {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.reel-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.reel-info {
    padding: 20px 24px;
}

.reel-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.reel-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- GIFT SECTION --- */
.gift-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FDF6F0 0%, #F5EDE6 100%);
}

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

.gift-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

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

.gift-description h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gift-description p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.gift-highlights {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gift-highlights li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.gift-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-coral);
    font-weight: 700;
}

.gift-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.gift-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* --- LOYALTY SECTION --- */
.loyalty-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.loyalty-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

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

.loyalty-description h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.loyalty-description p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.loyalty-highlights {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loyalty-highlights li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.loyalty-highlights li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.loyalty-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent-gold);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.loyalty-btn:hover {
    background: #b3924f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 163, 90, 0.4);
}

/* Before/After Slider */
.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: col-resize;
    box-shadow: var(--shadow-md);
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.ba-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
    filter: grayscale(100%);
}

.ba-after {
    z-index: 0;
}

.ba-container::before,
.ba-container::after {
    position: absolute;
    top: 16px;
    z-index: 3;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: rgba(45, 41, 38, 0.6);
    backdrop-filter: blur(6px);
    padding: 5px 14px;
    border-radius: 50px;
}

.ba-container::before {
    content: attr(data-label-before);
    left: 16px;
}

.ba-container::after {
    content: attr(data-label-after);
    right: 16px;
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--white);
    z-index: 2;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.ba-handle svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.ba-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.ba-handle span {
    font-size: 0.65rem;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.ba-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.result-label {
    display: block;
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* --- INSTAGRAM SECTION --- */
.instagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3a3530 100%);
}

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

.insta-content .section-tag {
    color: var(--accent-gold);
}

.insta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.insta-content h2 em {
    color: var(--accent-pink-light);
}

.insta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.45);
}

.insta-feed-widget {
    margin-top: 48px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* --- LOCATION --- */
.location {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

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

.info-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
}

.info-icon {
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-card p,
.info-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-link:hover {
    color: var(--accent-coral);
}

.schedule-card {
    padding: 24px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
}

.schedule-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(214, 197, 184, 0.2);
}

.schedule-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-row .closed {
    color: var(--accent-rose);
    font-weight: 600;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 450px;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    border-radius: 4px;
    filter: brightness(1.2);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-phone {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: all 0.3s ease;
    animation: phoneFloat 3s ease-in-out infinite;
}

.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes phoneFloat {

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

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

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- METHODS SECTION --- */
.methods-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.method-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(214, 197, 184, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.method-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.method-card:hover .method-image img {
    transform: scale(1.05);
}

.method-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 145, 123, 0.15), rgba(196, 163, 90, 0.15));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-placeholder span {
    font-size: 3rem;
}

.method-placeholder p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.method-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-coral);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 145, 123, 0.4);
}

.method-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.method-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.method-subtitle {
    font-size: 1rem;
    color: var(--accent-coral);
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 400;
}

.method-content>p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.method-includes {
    margin: 16px 0;
    padding: 20px;
    background: rgba(212, 145, 123, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-coral);
}

.method-includes h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.method-includes ul {
    list-style: none;
    padding: 0;
}

.method-includes li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Extra spacing for method 1 to balance heights */
.method-card-spacious .method-content {
    padding: 40px;
    gap: 4px;
}

.method-card-spacious .method-content>p {
    line-height: 1.9;
    margin-bottom: 18px;
}

.method-card-spacious .method-includes {
    margin: 24px 0;
    padding: 24px;
}

.method-card-spacious .method-includes li {
    margin-bottom: 14px;
    line-height: 1.7;
}

.method-includes li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-coral);
    font-size: 0.7rem;
    top: 2px;
}

.method-includes li:last-child {
    margin-bottom: 0;
}

.method-includes p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.method-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 24px;
}

.method-benefits span {
    background: rgba(196, 163, 90, 0.1);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.method-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(214, 197, 184, 0.3);
}

.method-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-coral);
}

.method-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-coral);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 145, 123, 0.35);
}

.method-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 145, 123, 0.5);
    background: #c9836b;
}

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-primary) !important;
        font-size: 1.05rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .about-grid {
        gap: 48px;
    }

    .products-brands {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .about-img-placeholder {
        aspect-ratio: 16/10;
    }

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

    .category-tabs {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .instagram-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .insta-content {
        text-align: center;
    }

    .btn-instagram {
        justify-content: center;
    }

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

    .products-brands {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 300px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gift-layout,
    .loyalty-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-scroll-indicator {
        display: none;
    }

    .floating-phone {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .brand-card {
        padding: 28px;
    }

    .method-content {
        padding: 24px;
    }

    .method-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .about,
    .services,
    .products,
    .results,
    .location,
    .methods-section {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 16px 18px;
    }

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

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

/* Legal Links Footer */
.legal-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}