/* ========================================
   Variables y Reset
   ======================================== */
:root {
    --primary-color: #6b7c3f;
    --secondary-color: #8b7355;
    --accent-color: #faf9f6;
    --text-color: #5a5a5a;
    --border-color: #e8e5e0;
    --white: #ffffff;
    --warm-beige: #f5f0eb;
    --warm-brown: #8b7355;
    --green-light: #a8c090;
    --green-medium: #6b7c3f;
    --green-dark: #556330;
    --brown-light: #a68b5b;
    --brown-medium: #8b7355;
    --brown-dark: #6b5d47;
    --yellow-light: #f4e8c1;
    --yellow-medium: #e8d5a3;
    --transition: all 0.3s ease;
    --container-max: 1320px;
    --container-pad-x: 24px;
}

@media (min-width: 768px) {
    :root {
        --container-pad-x: 40px;
    }
}

@media (min-width: 1024px) {
    :root {
        --container-pad-x: 52px;
    }
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--green-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-pad-x);
    padding-right: var(--container-pad-x);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 0.5px;
    display: block;
}

.logo-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--green-dark);
    letter-spacing: 1px;
    display: block;
    align-self: flex-end;
    margin-top: -5px;
}

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

.nav-menu a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 300;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-medium);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--green-dark);
    font-weight: 400;
}

/* Instagram Button in Nav */
.nav-social {
    margin-left: 10px;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

/* Ocultar Instagram del nav — solo en footer */
.nav-menu > li.nav-social {
    display: none;
}

.nav-instagram {
    font-size: 18px;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.nav-instagram:hover {
    color: #E4405F;
    transform: scale(1.1);
}

.nav-instagram::after {
    display: none;
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown > a i {
    font-size: 11px;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.dropdown.active > a i {
    transform: rotate(180deg);
}

.dropdown.active > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.dropdown-menu a::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--green-medium);
    color: var(--white);
    border-color: var(--green-medium);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 124, 63, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: var(--white);
    color: var(--green-dark);
    border: 1px solid var(--green-medium);
    box-shadow: 0 2px 8px rgba(107, 124, 63, 0.1);
}

.btn-outline:hover {
    border-color: var(--green-dark);
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 124, 63, 0.15);
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    min-height: 90vh;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 90vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slide.active .slide-image img {
    transform: scale(1);
}

.slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(85, 99, 48, 0.15) 0%, rgba(85, 99, 48, 0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Nature accents in hero and featured sections */
.featured-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(30px);
}

.featured-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.featured-section {
    position: relative;
}

.about-preview {
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(56, 142, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(35px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .slider-controls {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

/* ========================================
   Home Services Slider
   ======================================== */
.home-services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--accent-color) 0%, #f5f0e4 100%);
    position: relative;
    overflow: hidden;
}

.home-services::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(107, 124, 63, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-slider {
    position: relative;
}

.services-slider__viewport {
    overflow: hidden;
    margin: 0 -4px;
    padding: 8px 4px 20px;
}

.services-slider__track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.services-slider__slide {
    flex-shrink: 0;
}

.services-slider__card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(45, 52, 28, 0.18);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}

.services-slider__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(45, 52, 28, 0.28);
}

.services-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-slider__card:hover .services-slider__img {
    transform: scale(1.08);
}

.services-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(35, 42, 22, 0.92) 0%,
        rgba(35, 42, 22, 0.45) 45%,
        rgba(35, 42, 22, 0.15) 100%
    );
    pointer-events: none;
}

.services-slider__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: #fff;
    z-index: 1;
}

.services-slider__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 0.85rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 1.15rem;
    color: #f4e8c1;
}

.services-slider__content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #fff;
    line-height: 1.25;
}

.services-slider__content p {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.services-slider__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f4e8c1;
    transition: gap 0.3s ease, color 0.3s ease;
}

.services-slider__card:hover .services-slider__cta {
    gap: 0.65rem;
    color: #fff;
}

.services-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.services-slider__btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(107, 124, 63, 0.35);
    background: var(--white);
    color: var(--green-dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 14px rgba(85, 99, 48, 0.12);
}

.services-slider__btn:hover:not(:disabled) {
    background: var(--green-medium);
    color: #fff;
    transform: scale(1.08);
}

.services-slider__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.services-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 200px;
}

.services-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(107, 124, 63, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.services-slider__dot.is-active {
    background: var(--green-medium);
    width: 24px;
    border-radius: 4px;
}

/* Home — frase de marca */
.home-brand-strip {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: var(--white);
}

.home-brand-strip__quote {
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
    max-width: 52rem;
    margin-inline: auto;
}

.home-brand-strip__quote p {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-wrap: balance;
}

.home-brand-strip__lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-dark);
    line-height: 1.35;
}

.home-brand-strip__accent {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 500;
    color: var(--green-medium);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* Home — mini portfolio */
.home-portfolio-mini {
    padding: 90px 0;
    background: var(--white);
}

.home-portfolio-mini__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.home-portfolio-mini__item {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(45, 52, 28, 0.1);
}

.home-portfolio-mini__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-portfolio-mini__item:hover img {
    transform: scale(1.06);
}

/* Home — CTA suave */
.home-cta-soft {
    padding: 90px 0;
    background: var(--accent-color);
}

.home-cta-soft__inner {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.home-cta-soft__media {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(45, 52, 28, 0.14);
    aspect-ratio: 4 / 5;
}

.home-cta-soft__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-cta-soft__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--green-medium);
}

.home-cta-soft__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--green-dark);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.home-cta-soft__text {
    margin: 0 0 1.75rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--secondary-color);
    max-width: 38ch;
}

@media (max-width: 768px) {
    .home-services {
        padding: 70px 0;
    }

    .services-slider__track {
        gap: 16px;
    }

    .services-slider__content {
        padding: 1.35rem;
    }

    .services-slider__controls {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .services-slider__btn {
        width: 42px;
        height: 42px;
    }

    .home-brand-strip {
        padding: 2.75rem 0;
    }

    .home-brand-strip__lead {
        letter-spacing: 0.04em;
    }

    .home-portfolio-mini {
        padding: 60px 0;
    }

    .home-portfolio-mini__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 36px;
    }

    .home-cta-soft {
        padding: 60px 0;
    }

    .home-cta-soft__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-cta-soft__media {
        max-width: 320px;
        margin: 0 auto;
    }

    .home-cta-soft__text {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========================================
   Featured Section
   ======================================== */
.featured-section {
    padding: 100px 0;
    background: var(--white);
}

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

.featured-item {
    position: relative;
    overflow: hidden;
}

.featured-item a {
    display: block;
}

.featured-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-item:hover .featured-image img {
    transform: scale(1.1);
}

.featured-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--green-dark);
}

.featured-content p {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* ========================================
   About Preview
   ======================================== */
.about-preview {
    padding: 100px 0;
    background: var(--accent-color);
}

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

.about-preview-image {
    overflow: hidden;
}

.about-preview-image img {
    width: 100%;
    height: auto;
}

.about-preview-text h2 {
    margin-bottom: 1.5rem;
}

.about-preview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

/* ========================================
   Portfolio Preview
   ======================================== */
.portfolio-preview {
    padding: 100px 0;
    background: var(--white);
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--secondary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    display: none;
}

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

/* ========================================
   Filter Buttons
   ======================================== */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(26, 26, 26, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: var(--green-medium);
    color: white;
    border-color: var(--green-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 124, 63, 0.2);
}

.filter-btn.active {
    background: var(--green-medium);
    color: white;
    border-color: var(--green-medium);
    box-shadow: 0 4px 15px rgba(107, 124, 63, 0.25);
}

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 28px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--accent-color);
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 60px;
    font-family: 'Cormorant Garamond', serif;
}

.testimonials-slider-wrap {
    position: relative;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 2;
}

.testimonial-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 8s ease-out;
}

.testimonial-slide.active .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(107, 124, 63, 0.2) 0%, rgba(85, 99, 48, 0.4) 100%);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn.prev {
    left: 20px;
}

.testimonial-nav-btn.next {
    right: 20px;
}

.testimonial-nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonials-slider {
        height: 500px;
    }

    .testimonial-content {
        padding: 40px 24px;
    }

    .testimonial-text {
        font-size: 1.125rem;
        margin-bottom: 30px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonial-nav-btn.prev {
        left: 12px;
    }

    .testimonial-nav-btn.next {
        right: 12px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-medium) 100%);
    color: var(--white);
    padding: 40px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='leaf-footer' x='0' y='0' width='50' height='50' patternUnits='userSpaceOnUse'%3E%3Cpath d='M25 10 Q35 20 25 30 Q15 20 25 10' fill='%23ffffff' opacity='0.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23leaf-footer)'/%3E%3C/svg%3E");
    background-size: 200% 200%, 180% 180%, 120px 120px;
    background-position: 0% 0%, 100% 100%, 0 0;
    animation: patternMove 20s ease-in-out infinite;
}

.footer::after {
    content: '🌿';
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 30px;
    opacity: 0.15;
    animation: floatNature 8s ease-in-out infinite;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.footer-col {
    max-width: 600px;
    text-align: center;
}

.footer-col h3,
.footer-col h4 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

/* ========================================
   Approach Section
   ======================================== */
.approach-section {
    padding: 100px 0;
    background: var(--white);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-text {
    padding-right: 40px;
}

.approach-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--green-dark);
    margin-bottom: 2.5rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.approach-text p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.approach-images {
    display: block;
}

.approach-image-item {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

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

@media (max-width: 1024px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .approach-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .approach-section {
        padding: 40px 0;
    }

    .approach-content {
        gap: 30px;
    }

    .approach-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .approach-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .approach-images {
        flex-direction: column;
        gap: 20px;
    }

    .approach-image-item {
        aspect-ratio: 4/5;
    }

    /* Reduce spacing for about-content section on mobile */
    .about-content {
        padding: 40px 0 !important;
    }
}

/* ========================================
   Work Together Section (Triptych)
   ======================================== */
.work-together-section {
    padding: 0;
    margin: 100px 0;
    overflow: hidden;
}

.work-together-triptych {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.triptych-panel {
    position: relative;
    overflow: hidden;
}

.triptych-image-left,
.triptych-image-right {
    position: relative;
}

.triptych-image-left img,
.triptych-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.triptych-image-left:hover img,
.triptych-image-right:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.triptych-image-right img {
    filter: grayscale(100%) brightness(0.9);
}

.triptych-image-right:hover img {
    filter: grayscale(80%) brightness(1);
}

.triptych-content {
    background: var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.work-together-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
}

.work-together-decoration {
    margin-bottom: 50px;
    opacity: 0.7;
}

.work-together-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
}

.btn-work-together {
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid var(--green-medium);
    background: transparent;
    color: var(--green-dark);
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    display: block;
}

.btn-work-together:hover {
    background: var(--green-medium);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 124, 63, 0.2);
}

.btn-view-packages {
    border-color: var(--green-medium);
    color: var(--green-dark);
}

.btn-view-packages:hover {
    background: var(--green-medium);
}

.btn-connect {
    background: var(--green-medium);
    color: var(--white);
    border-color: var(--green-medium);
}

.btn-connect:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

@media (max-width: 1024px) {
    .work-together-triptych {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .triptych-image-left,
    .triptych-image-right {
        height: 400px;
    }

    .triptych-content {
        padding: 50px 30px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .work-together-section {
        margin: 40px 0;
    }

    .triptych-image-left,
    .triptych-image-right {
        height: 300px;
    }

    .work-together-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }

    .work-together-decoration {
        margin-bottom: 30px;
    }

    .work-together-buttons {
        max-width: 100%;
    }
}

/* ========================================
   Contact Section - Modern Layout
   ======================================== */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
}

.contact-form-intro {
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    display: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--secondary-color);
    opacity: 0.7;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    color: var(--text-color);
}

.contact-form select:invalid,
.contact-form select:invalid option[disabled][selected] {
    color: var(--secondary-color);
    opacity: 0.7;
}

.contact-form select option {
    color: var(--text-color);
    background: white;
}

.contact-form select option:disabled {
    color: var(--secondary-color);
    opacity: 0.7;
}

.contact-form select:not(:invalid) {
    color: var(--text-color);
    opacity: 1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--accent-color);
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--green-medium);
    background: white;
    box-shadow: 0 0 0 3px rgba(107, 124, 63, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form select {
    cursor: pointer;
}

.contact-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.creative-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
}

.creative-frame img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center 20%;
    transform: translate(10%, -8%);
    display: block;
}

.frame-decoration {
    display: none;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 700;
}

.header-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(76, 175, 80, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(56, 142, 60, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 50% 15%, rgba(46, 125, 50, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(139, 195, 74, 0.3) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='leaf' x='0' y='0' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M30 15 Q45 30 30 45 Q15 30 30 15' fill='%234CAF50' opacity='0.4'/%3E%3Cpath d='M25 35 Q20 25 15 30 Q20 35 25 35' fill='%2366BB6A' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23leaf)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='branch' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M5 20 Q15 10 25 20' stroke='%2381C784' stroke-width='1.5' fill='none' opacity='0.3'/%3E%3Ccircle cx='20' cy='18' r='2' fill='%2381C784' opacity='0.4'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23branch)'/%3E%3C/svg%3E");
    background-size: 250% 250%, 200% 200%, 180% 180%, 220% 220%, 180px 180px, 120px 120px;
    background-position: 0% 0%, 100% 100%, 50% 50%, 20% 80%, 0 0, 60px 60px;
    animation: patternMove 25s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0 0;
    }
    50% {
        background-position: 100% 50%, 0% 50%, 50% 80%, 50px 50px;
    }
}

/* Nature elements decoration */
.page-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -90px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
}

/* Additional nature decoration */
.page-header {
    position: relative;
}

.page-header .container::before {
    content: '🌿';
    position: absolute;
    top: 20px;
    left: 10%;
    font-size: 40px;
    opacity: 0.15;
    z-index: 1;
    animation: floatNature 6s ease-in-out infinite;
}

.page-header .container::after {
    content: '🍃';
    position: absolute;
    bottom: 20px;
    right: 15%;
    font-size: 35px;
    opacity: 0.12;
    z-index: 1;
    animation: floatNature 8s ease-in-out infinite reverse;
}

@keyframes floatNature {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 14px 0;
        text-align: left;
    }

    .dropdown > a {
        justify-content: space-between;
    }

    .dropdown > a i {
        margin-left: auto;
    }
    
    .nav-social {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
    
    .nav-instagram {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 0;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        min-width: auto;
        list-style: none;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 280px;
        padding: 0 0 8px !important;
    }
    
    .dropdown-menu li {
        margin: 0;
        width: 100%;
        border-bottom: none;
    }
    
    .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 11px 0 !important;
        font-size: 13px;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 300;
        color: var(--secondary-color);
    }

    .dropdown-menu a:hover,
    .dropdown-menu a.active {
        background: transparent;
        color: var(--green-dark);
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-preview {
        padding: 40px 0 !important;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing responsive */
    section[style*="grid-template-columns"] > div {
        transform: scale(1) !important;
    }
    
    /* Contact mobile fixes */
    .contact-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    
    .contact-form-wrapper {
        padding: 30px 24px !important;
    }
    
    .creative-frame {
        max-width: 100%;
        padding: 0;
        height: 500px;
    }
    
    .creative-frame img {
        width: 110%;
        height: 110%;
        transform: translate(8%, -5%);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 25px;
    }
    
    .contact-grid[style*="1fr 1.5fr"] {
        display: block !important;
    }
    
    div[style*="background: white; padding: 50px"] {
        padding: 30px 20px !important;
        margin: 0 !important;
        border-radius: 8px !important;
    }
    
    input[style*="padding: 16px 20px"],
    textarea[style*="padding: 16px 20px"],
    select[style*="padding: 16px 20px"] {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 14px 16px !important;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 24px;
        right: 24px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* Servicios: Fotos impresas — página */
.fotos-page {
    font-size: 1.0625rem;
    color: #3a3a3a;
}

.fotos-page p {
    font-weight: 400;
    color: #3a3a3a;
}

.fotos-page p strong {
    color: var(--green-dark);
}

.fotos-page .fotos-alert--light strong {
    color: #fff;
    font-weight: 700;
}

.fotos-hero {
    position: relative;
    margin-top: 70px;
    padding: clamp(4rem, 10vw, 6.5rem) 0;
    background: linear-gradient(145deg, #556330 0%, #6b7c3f 42%, #6b5d47 100%);
    color: #fff;
    overflow: hidden;
}

.fotos-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(244, 232, 193, 0.25) 0%, transparent 40%);
    pointer-events: none;
}

.fotos-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.fotos-hero__icon-wrap {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.fotos-hero__tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin: 0 0 0.85rem;
    color: #f4e8c1;
    font-weight: 500;
}

.fotos-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.85rem, 6.5vw, 4.5rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.fotos-section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.fotos-section--cream {
    background: linear-gradient(180deg, #fffef9 0%, #faf6f0 100%);
}

.fotos-section--olive {
    background: linear-gradient(180deg, #4a5530 0%, #3d4428 100%);
    color: #f5f0eb;
}

.fotos-section--white {
    background: #fff;
}

.fotos-section--gold {
    background: linear-gradient(180deg, #f4e8c1 0%, #e8d5a3 50%, #f5ecd8 100%);
}

.fotos-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.fotos-section-header__badge {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--green-medium);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.35rem;
    box-shadow: 0 10px 28px rgba(107, 124, 63, 0.4);
}

.fotos-section-header__badge--light {
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.fotos-section-header__title {
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 600;
    color: var(--green-dark);
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}

.fotos-section-header--on-dark .fotos-section-header__title {
    color: #fff;
}

.fotos-section-header__lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #454545;
    margin: 0;
    font-weight: 450;
}

.fotos-section-header--on-dark .fotos-section-header__lead {
    color: rgba(255, 255, 255, 0.88);
}

.fotos-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.35rem;
    max-width: 920px;
    margin: 0 auto;
}

.fotos-price-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.65rem 1.4rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(107, 124, 63, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fotos-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.fotos-price-card--featured {
    border-color: var(--green-medium);
    background: linear-gradient(180deg, #fff 0%, #f6f8f1 100%);
}

.fotos-price-card__label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--green-medium);
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.fotos-price-card__size {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.85rem;
}

.fotos-price-card__amount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-medium);
}

.fotos-price-card--dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.fotos-price-card--dark .fotos-price-card__label {
    color: #e8d5a3;
}

.fotos-price-card--dark .fotos-price-card__size {
    color: #fff;
}

.fotos-price-card--dark .fotos-price-card__amount {
    color: #f4e8c1;
}

.fotos-price-card--featured-dark {
    border-color: rgba(232, 213, 163, 0.65);
    background: rgba(255, 255, 255, 0.14);
}

.fotos-strip {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    max-width: 680px;
    margin: 2.25rem auto 0;
    padding: 1.35rem 1.65rem;
    border-radius: 16px;
    font-size: 1.0625rem;
}

.fotos-strip--quantity {
    background: linear-gradient(95deg, #e8d5a3 0%, #f4e8c1 50%, #faf0d8 100%);
    border: 2px solid rgba(107, 124, 63, 0.28);
    color: var(--green-dark);
}

.fotos-strip--quantity i {
    font-size: 1.65rem;
    color: var(--green-medium);
    flex-shrink: 0;
}

.fotos-strip--quantity p {
    margin: 0;
    line-height: 1.55;
    color: #2f3318;
    font-weight: 450;
}

.fotos-alert {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    max-width: 760px;
    margin: 2.25rem auto 0;
    padding: 1.4rem 1.6rem;
    border-radius: 16px;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.fotos-alert--light {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.96);
}

.fotos-alert__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f4e8c1;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.fotos-alert p {
    margin: 0;
}

.fotos-alert--light p {
    color: rgba(255, 255, 255, 0.96);
}

.fotos-section--fotolibro-bg {
    background: linear-gradient(180deg, #f5f4f1 0%, #eeede9 100%);
    padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.fotos-fotolibro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0;
    align-items: stretch;
    min-height: min(520px, 85vh);
}

.fotos-fotolibro-split__copy {
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1.25rem, 5vw, 4rem) clamp(0.5rem, 2vw, 1rem) clamp(1.25rem, 4vw, 6rem);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.fotos-fotolibro-split__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.fotos-fotolibro-split__head h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 600;
}

.fotos-fotolibro-split__icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(145deg, #f0f2eb 0%, #e4e9dc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--green-medium);
    flex-shrink: 0;
    border: 1px solid rgba(107, 124, 63, 0.12);
}

.fotos-fotolibro-split__text {
    font-size: 1.0625rem;
    line-height: 1.68;
    color: var(--text-color);
    margin-bottom: 1.1rem;
}

.fotos-fotolibro-split__text--specs {
    margin-top: 0.35rem;
    margin-bottom: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1.0625rem;
}

.fotos-fotolibro-split__ig-link {
    color: var(--green-medium);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.fotos-fotolibro-split__ig-link:hover {
    color: var(--green-dark);
}

.fotos-fotolibro-split__price {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.45rem;
    padding: 1.3rem 1.1rem;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.fotos-fotolibro-split__price-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--secondary-color);
    font-weight: 600;
}

.fotos-fotolibro-split__price-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.1;
}

.fotos-fotolibro-split__btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
}

.fotos-fotolibro-split__video {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.fotos-fotolibro-split__video-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem clamp(1rem, 3vw, 1.5rem);
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fotos-fotolibro-split__video-ig {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fotos-fotolibro-split__video-titles {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.fotos-fotolibro-split__video-kicker {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #888;
    font-weight: 700;
}

.fotos-fotolibro-split__video-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.35;
}

.fotos-fotolibro-split__embed {
    flex: 1;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.fotos-instagram-embed--unified {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.fotos-instagram-embed--unified .instagram-media {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: min(100%, 420px) !important;
}

.fotos-btn-whatsapp {
    padding: 1rem 1.35rem;
    background: #25d366;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fotos-btn-whatsapp:hover {
    background: #1ebe57;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.fotos-btn-whatsapp .fab {
    font-size: 1.4rem;
}

.fotos-instagram-embed {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.fotos-instagram-embed .instagram-media {
    margin: 0 !important;
}

.fotos-retoque-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.85rem;
    max-width: 820px;
    margin: 0 auto;
}

.fotos-retoque-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 2.15rem 1.85rem 2.35rem;
    text-align: center;
    border: 3px solid rgba(107, 124, 63, 0.22);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.09);
}

.fotos-retoque-card--premium {
    border-color: var(--green-medium);
    background: linear-gradient(180deg, #fff 0%, #faf9f6 100%);
}

.fotos-retoque-card__ribbon {
    position: absolute;
    top: 16px;
    right: -6px;
    background: var(--green-medium);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1.35rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fotos-retoque-card__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    background: var(--yellow-light);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.fotos-retoque-card--premium .fotos-retoque-card__icon {
    background: var(--green-medium);
    color: #fff;
}

.fotos-retoque-card h3 {
    font-size: 1.6rem;
    margin: 0 0 0.85rem;
    color: var(--green-dark);
    font-weight: 600;
}

.fotos-retoque-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 2.65rem;
    font-weight: 700;
    color: var(--green-medium);
    margin: 0;
    line-height: 1;
}

.fotos-retoque-card__currency {
    font-size: 1.85rem;
    vertical-align: super;
    margin-right: 0.05em;
}

.fotos-retoque-card__unit {
    margin: 0.65rem 0 0;
    font-size: 1.0625rem;
    color: #454545;
    font-weight: 500;
}

.fotos-cta-band {
    background: linear-gradient(135deg, #556330 0%, #6b7c3f 100%);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 3.25rem) 0;
}

.fotos-cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
}

.fotos-cta-band__label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 0.4rem;
    color: #f4e8c1;
    font-weight: 700;
}

.fotos-cta-band__label i {
    margin-right: 0.45rem;
    opacity: 0.95;
}

.fotos-cta-band__phone {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 600;
    margin: 0;
}

.fotos-cta-band__phone a {
    color: #fff;
}

.fotos-cta-band__phone a:hover {
    color: #f4e8c1;
}

.fotos-cta-band__hint {
    margin: 0.45rem 0 0;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.fotos-cta-band__btn {
    padding: 1.05rem 2.15rem;
    font-size: 1.0625rem;
    font-weight: 600;
}

/* Lifestyle — misma grilla de tarjetas que fotografía exterior */
.lifestyle-page {
    font-size: 1.0625rem;
}

.lifestyle-services.exterior-services {
    padding-top: clamp(2.5rem, 6vw, 4rem);
}

/* Servicios: Fotografía exterior — tarjetas verticales */
.exterior-page {
    font-size: 1.0625rem;
}

.exterior-services {
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
    background: linear-gradient(180deg, #f5f4f1 0%, #ebe9e4 100%);
}

.exterior-services__inner {
    max-width: var(--container-max);
}

/* Navegación rápida: chips horizontales (mobile-friendly) */
.exterior-jump {
    position: sticky;
    top: 70px;
    z-index: 25;
    margin: 0 0 clamp(1.75rem, 4vw, 2.25rem);
    padding: 0.85rem 0 1rem;
    background: linear-gradient(180deg, rgba(245, 244, 241, 0.97) 0%, rgba(235, 233, 228, 0.92) 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(85, 99, 48, 0.12);
    border-radius: 0 0 14px 14px;
}

.exterior-jump__label {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.exterior-jump__label i {
    font-size: 0.85rem;
    color: var(--green-medium);
}

.exterior-jump__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    margin: 0 -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(107, 124, 63, 0.45) transparent;
    -webkit-overflow-scrolling: touch;
}

.exterior-jump__track::-webkit-scrollbar {
    height: 4px;
}

.exterior-jump__track::-webkit-scrollbar-thumb {
    background: rgba(107, 124, 63, 0.4);
    border-radius: 4px;
}

.exterior-jump__link {
    flex: 0 0 auto;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(107, 124, 63, 0.35);
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.exterior-jump__link:hover {
    border-color: var(--green-medium);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(85, 99, 48, 0.12);
}

.exterior-jump__link.is-active {
    background: linear-gradient(145deg, var(--green-medium) 0%, var(--green-dark) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(85, 99, 48, 0.28);
}

.exterior-jump__link.is-active:hover {
    color: #fff;
}

.exterior-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 700px) {
    .exterior-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .exterior-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Dos tarjetas (p. ej. Lifestyle): siempre dos columnas en escritorio, centradas */
.exterior-cards.exterior-cards--pair {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 700px) {
    .exterior-cards.exterior-cards--pair {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .exterior-cards.exterior-cards--pair {
        grid-template-columns: repeat(2, 1fr);
    }
}

.exterior-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.08);
    scroll-margin-top: 96px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.exterior-card:hover {
    box-shadow: 0 18px 48px rgba(45, 42, 38, 0.12);
    transform: translateY(-3px);
}

.exterior-card--featured {
    border-top: 3px solid var(--green-medium);
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.1), 0 0 0 1px rgba(107, 124, 63, 0.08);
}

.exterior-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8e6e1;
}

.exterior-card__index {
    position: absolute;
    bottom: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.65rem, 8vw, 3.35rem);
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    opacity: 0.92;
}

.exterior-card__head {
    margin-bottom: 0.35rem;
}

.exterior-card__badge {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.28rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: linear-gradient(135deg, rgba(168, 192, 144, 0.35) 0%, rgba(107, 124, 63, 0.18) 100%);
    border: 1px solid rgba(107, 124, 63, 0.25);
    border-radius: 6px;
}

.exterior-card__kicker {
    margin: 0.35rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    color: var(--secondary-color);
}

.exterior-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.exterior-card:hover .exterior-card__media img {
    transform: scale(1.03);
}

.exterior-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 3vw, 1.85rem);
}

.exterior-card__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    font-weight: 600;
    color: var(--green-dark);
    margin: 0;
    line-height: 1.25;
}

.exterior-card__head .exterior-card__title {
    margin-top: 0;
}

.exterior-card__text {
    color: var(--text-color);
    line-height: 1.65;
    margin: 0 0 1rem;
    font-size: 1.02rem;
}

.exterior-card__text--cta {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.exterior-card__subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary-color);
    margin: 1.15rem 0 0.5rem;
}

.exterior-card__subtitle:first-of-type {
    margin-top: 0.25rem;
}

.exterior-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.exterior-card__list li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.5rem;
    line-height: 1.5;
    font-size: 0.98rem;
    color: var(--text-color);
}

.exterior-card__list li i {
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: var(--green-medium);
    font-size: 0.78rem;
}

.exterior-card__btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
    .exterior-card,
    .exterior-card__media img,
    .exterior-jump__link {
        transition: none;
    }

    .exterior-card:hover {
        transform: none;
    }

    .exterior-card:hover .exterior-card__media img {
        transform: none;
    }
}

.fotos-hero__intro {
    max-width: 36rem;
    margin: 1.25rem auto 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.lifestyle-promo-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 1.15rem 1.4rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--green-medium);
    max-width: 100%;
}

.lifestyle-promo-badge__off {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.lifestyle-promo-badge__detail {
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--secondary-color);
    max-width: 18em;
}

/* Promo lifestyle al pie de la tarjeta (diseño cupón / franja) */
.lifestyle-promo-end {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.25rem;
    margin-bottom: 1.15rem;
    padding: 1rem 1.15rem;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.95) 0%, rgba(168, 192, 144, 0.22) 45%, rgba(245, 244, 241, 0.98) 100%);
    border: 2px dashed rgba(107, 124, 63, 0.55);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lifestyle-promo-end__pct {
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
    padding: 0.35rem 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(107, 124, 63, 0.2);
}

.lifestyle-promo-end__text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.lifestyle-promo-end__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-medium);
}

.lifestyle-promo-end__detail {
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text-color);
}

/* Botón Consultar + icono WA: misma línea que el resto del sitio (verde oliva) */
.exterior-card__btn--wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.exterior-card__btn--wa .fab {
    font-size: 1.15rem;
    opacity: 0.95;
}

@media (max-width: 420px) {
    .lifestyle-promo-end {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 992px) {
    .fotos-fotolibro-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .fotos-fotolibro-split__copy {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 0;
        padding-left: clamp(1.25rem, 4vw, 2rem);
        padding-right: clamp(1.25rem, 4vw, 2rem);
    }

    .fotos-retoque-grid {
        grid-template-columns: 1fr;
    }

    .fotos-cta-band__inner {
        flex-direction: column;
        text-align: center;
    }

    .fotos-cta-band__btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .fotos-strip--quantity {
        flex-direction: column;
        text-align: center;
    }
}

