/*
Theme Name: ivmultiservices
Theme URI: https://mciservices.com
Author: MC Integral Services
Author URI: https://mciservices.com
Description: Tema standalone basado en la funcionalidad de MC iServices con interfaz visual de mockup para ivmultiservices.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ivmultiservices
Tags: woocommerce, services, custom-menu, custom-logo, featured-images

MC Integral Services - Servicios de Integrales
*/

/* === CSS Variables === */
:root {
    /* Primary Colors */
    --color-white: #FFFFFF;
    --color-navy: #091E28;
    --color-navy-dark: #061219;
    --color-orange: #E57B1D;
    --color-dark-gray: #212C31;
    --color-gray: #484848;
    --color-black: #000000;
    --color-light-gray: #BABABA;
    --color-medium-gray: #5C5C5C;
    --color-form-bg: #C4C4C4;
    --color-light-beige: #F5F1E8;

    /* Typography */
    --font-roboto-serif: 'Roboto Serif', serif;
    --font-roboto-slab: 'Roboto Slab', serif;
    --font-lato: 'Lato', sans-serif;

    /* Font Sizes */
    --font-size-h1: 3rem;
    /* 48px */
    --font-size-h2: 2rem;
    /* 32px */
    --font-size-h3: 1.5rem;
    /* 24px */
    --font-size-h4: 1.25rem;
    /* 20px */
    --font-size-body: 1rem;
    /* 16px */
    --font-size-small: 0.875rem;
    /* 14px */

    /* Layout */
    --container-max-width: 1440px;
    --container-padding: 20px;
    --container-padding-tablet: 40px;
    --container-padding-desktop: 60px;
    --section-padding: 70px;
    --section-padding-mobile: 50px;
    --grid-gap: 30px;
    --grid-gap-small: 20px;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;

    /* Transitions */
    --transition-default: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    /* Base 16px para rem */
}

body {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 1rem;
    /* 16px */
    line-height: 1.6;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    overflow-x: hidden;
}

body.page-dark {
    background-color: #091E28;
    position: relative;
}

body.page-dark .is-overlay {
    position: absolute;
    z-index: 1;
}

body.page-dark section,
body.page-dark .services-page__cta,
body.page-dark .checkout-page__cta {
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Aspect ratios para prevenir CLS */
.hero-slide .hero-image img {
    aspect-ratio: 700 / 542;
    /* Ratio de la imagen hero */
}

.testimonial-image img {
    aspect-ratio: 468 / 593;
    /* Ratio imagen testimonial */
}

.service-card img,
.services-page__card-image img {
    aspect-ratio: 16 / 9;
    /* Ratio estándar para cards */
}

.profile-image img {
    aspect-ratio: 1 / 1;
    /* Círculo perfecto */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-default);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* === Container === */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--container-padding-tablet);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--container-padding-desktop);
    }
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

p {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: var(--font-size-body);
    line-height: 1.8;
    margin-bottom: 1rem;
    /* 16px */
}

/* Responsive typography */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 20px;
    }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-lato);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition-default);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--color-white);
}

.btn:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-black);
    border: 2px solid var(--color-orange);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: #e57b1d;
    border-color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-orange);
    color: var(--color-black);
    border: 2px solid var(--color-orange);
    border-radius: 25px;
    padding: 12px 35px;
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: #e57b1d;
    border-color: var(--color-white);
    transform: scale(1.05);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #091E28;
    padding: 18px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.header-container a img {
    width: 314px;
    max-width: 100%;
    height: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 250px;
    max-width: 100%;
    height: auto;
}

/* Menu Cart item */
.menu-item-cart a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-cart-icon {
    flex-shrink: 0;
}

.menu-cart-count {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

/* Menu Login/Account items */
.menu-item-login a,
.menu-item-account a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-login-icon,
.menu-account-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

.menu-item-login:last-child,
.menu-item-account:last-child {
    border-bottom: none;
}

.menu-toggle {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-lato);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition-default);
    cursor: pointer;
    z-index: 1001;
    min-width: 180px;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav {
    display: none;
    position: absolute;
    top: calc(100% - 10px);
    right: 20px;
    background-color: #091E28;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.active {
    display: block;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-list li:last-child {
    border-bottom: none;
}

.nav-list a {
    color: var(--color-white);
    font-family: var(--font-lato);
    font-size: 15px;
    font-weight: 400;
    padding: 12px 0;
    display: block;
    transition: var(--transition-default);
}

.nav-list a:hover {
    color: var(--color-orange);
}

/* WordPress Menu Integration */
.primary-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-menu li:last-child {
    border-bottom: none;
}

.primary-menu a {
    color: var(--color-white);
    font-family: var(--font-lato);
    font-size: 15px;
    font-weight: 400;
    padding: 12px 0;
    display: block;
    transition: var(--transition-default);
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: var(--color-orange);
}

/* === Hero Slider Section === */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    background-color: #091E28;
    overflow: hidden;
}

.hero-slider-container {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-slider-container::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    background-color: #091E28;
    padding-top: 120px;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
}

.hero-slide .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 450px;
    padding-bottom: 80px;
}

.hero-slide .hero-content {
    max-width: 520px;
    align-self: center;
}

.hero-slide .hero-subtitle {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 11px;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.hero-slide .hero-title {
    font-family: var(--font-roboto-serif);
    font-weight: 600;
    font-size: 52px;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 30px;
}

.hero-slide .hero-text {
    font-family: var(--font-lato);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.hero-slide .hero-text p {
    margin: 0;
}

.hero-slide .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-slide .hero-link-secondary {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-lato);
    font-size: 16px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.hero-slide .hero-link-secondary:hover {
    color: var(--color-white);
}

.hero-slide .hero-image {
    position: absolute;
    right: 0;
    bottom: 60px;
    z-index: 3;
    width: 55%;
    max-width: 700px;
}

.hero-slide .hero-image img {
    width: 100%;
    max-width: 45vw;
    height: auto;
    object-fit: contain;
    position: relative;
    top: 8dvh;
}

/* Optimización para móviles */
@media (max-width: 768px) {
    .hero-slide .hero-image img {
        max-width: 100%;
        top: 0;
    }
}

@media (max-width: 374px) {
    .hero-slide .hero-image img {
        max-width: 90%;
        margin: 0 auto;
    }
}

.hero-slide .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    line-height: 0;
}

.hero-slide .hero-wave img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: top;
}

/* Navigation Arrows */
.hero-slider-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Hide by default */
    opacity: 0;
    visibility: hidden;
}

/* Show arrows on hover */
.hero-slider-wrapper:hover .hero-slider-arrow {
    opacity: 1;
    visibility: visible;
}

.hero-slider-arrow:hover {
    color: var(--color-orange);
}

.hero-slider-arrow-prev {
    left: 24px;
}

.hero-slider-arrow-prev:hover {
    transform: translateY(-50%) translateX(-4px);
}

.hero-slider-arrow-next {
    right: 24px;
}

.hero-slider-arrow-next:hover {
    transform: translateY(-50%) translateX(4px);
}

.hero-slider-arrow svg {
    width: 36px;
    height: 36px;
}

/* Progress Indicator */
.hero-slider-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 48px;
    z-index: 40;
    pointer-events: none;
}

.hero-slider-progress {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: auto;
}

.hero-slider-progress-track {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.hero-slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-orange);
    transition: width 0.6s ease;
}

.hero-slider-progress-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-roboto-slab);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--color-white);
}

.hero-slider-progress-current {
    color: var(--color-orange);
}

.hero-slider-progress-separator {
    color: rgba(255, 255, 255, 0.4);
}

.hero-slider-progress-total {
    color: rgba(255, 255, 255, 0.4);
}

/* Vertical Navigation Bullets */
.hero-slider-bullets {
    position: fixed;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: none;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
}

@media (min-width: 1024px) {
    .hero-slider-bullets {
        display: flex;
    }
}

.hero-slider-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-bullet:hover,
.hero-slider-bullet.active {
    background-color: var(--color-orange);
}

.hero-slider-bullet-label {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-family: var(--font-roboto-slab);
    font-weight: 700;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-slider-bullet:hover .hero-slider-bullet-label,
.hero-slider-bullet.active .hero-slider-bullet-label {
    opacity: 1;
    color: var(--color-orange);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-slide-content {
        padding: 0 48px;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-slider-arrow svg {
        width: 28px;
        height: 28px;
    }

    .hero-slider-arrow-prev {
        left: 16px;
    }

    .hero-slider-arrow-next {
        right: 16px;
    }

    .hero-slider-footer {
        padding: 32px 32px;
    }
}

@media (max-width: 768px) {
    .hero-slide-content {
        padding: 0 32px;
    }

    .hero-slide .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }

    .hero-slide .hero-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-slide .hero-image img {
        max-width: 100%;
        top: 0;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-slider-arrow svg {
        width: 28px;
        height: 28px;
    }

    .hero-slider-arrow-prev {
        left: 16px;
    }

    .hero-slider-arrow-next {
        right: 16px;
    }

    .hero-slider-footer {
        padding: 32px 32px;
    }
}

@media (max-width: 768px) {
    .hero-slide .container {
        padding: 0 40px;
    }

    .hero-slide .hero-title {
        font-size: 2.25rem;
        /* 36px */
    }

    .hero-slide .hero-text {
        font-size: 1rem;
        /* 16px */
    }

}

.hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 450px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 520px;
    align-self: center;
}

.hero-title {
    font-family: var(--font-roboto-serif);
    font-weight: 600;
    font-size: 52px;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 30px;
}

.hero-text {
    font-family: var(--font-lato);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 60px;
    z-index: 3;
    width: 55%;
    max-width: 700px;
}

.hero-image img {
    width: 100%;
    max-width: 45vw;
    height: auto;
    object-fit: contain;
    position: relative;
    top: 8dvh;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    line-height: 0;
}

.hero-wave img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: top;
}

/* === Section Titles === */
.section-title {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 32px;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 50px;
}

.section-title-dark {
    color: var(--color-dark-gray);
    text-align: left;
}

/* === Services Section === */
.services {
    background-color: #091E28;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 20px;
}

.services .section-title {
    color: var(--color-white);
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 600;
}

/* Services Category Filter */
.services-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-filter .filter-btn {
    padding: 12px 24px;
    background: rgba(33, 44, 49, 0.8);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.services-filter .filter-btn:hover {
    background: rgba(229, 123, 29, 0.2);
    border-color: #E57B1D;
    transform: translateY(-2px);
}

.services-filter .filter-btn.active {
    background: #E57B1D;
    border-color: #E57B1D;
    color: var(--color-white);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 55px;
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
}

/* Service card link wrapper */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition-default);
}

.service-card {
    background-color: rgba(33, 44, 49, 0.95);
    border: 1px solid rgba(72, 72, 72, 0.6);
    border-radius: 4px;
    min-height: 220px;
    padding: 55px 45px 50px;
    text-align: center;
    transition: var(--transition-default);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Hover effects for clickable cards */
.service-card-link:hover .service-card,
.service-card.has-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.service-card:hover {
    background-color: var(--color-white);
}

.service-card:hover .service-title {
    color: var(--color-black);
}

.service-card:hover .service-text {
    color: var(--color-black);
}

.service-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    padding: 16px;
    transition: var(--transition-default);
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Icon Hover Effects - Specific to each card */
.service-card:first-child:hover .service-icon {
    background-color: #e57b1d;
    border-color: #e57b1d;
    background-image: url('assets/images/icons/asilo-hover.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:first-child:hover .service-icon img {
    opacity: 0;
}

.service-card:nth-child(2):hover .service-icon {
    background-color: #e57b1d;
    border-color: #e57b1d;
    background-image: url('assets/images/icons/tps-hover.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:nth-child(2):hover .service-icon img {
    opacity: 0;
}

.service-card:nth-child(3):hover .service-icon {
    background-color: #e57b1d;
    border-color: #e57b1d;
    background-image: url('assets/images/icons/parole-hover.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:nth-child(3):hover .service-icon img {
    opacity: 0;
}

.service-card:nth-child(4):hover .service-icon {
    background-color: #e57b1d;
    border-color: #e57b1d;
    background-image: url('assets/images/icons/permisos-hover.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:nth-child(4):hover .service-icon img {
    opacity: 0;
}

.service-card:nth-child(5):hover .service-icon {
    background-color: #e57b1d;
    border-color: #e57b1d;
    background-image: url('assets/images/icons/fees-hover.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:nth-child(5):hover .service-icon img {
    opacity: 0;
}

.service-card:nth-child(6):hover .service-icon {
    background-color: #e57b1d;
    border-color: #e57b1d;
    background-image: url('assets/images/icons/traducciones-hover.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:nth-child(6):hover .service-icon img {
    opacity: 0;
}

.service-title {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 1.375rem;
    /* 22px */
    color: var(--color-white);
    margin-bottom: 1.125rem;
    /* 18px */
    line-height: 1.3;
    transition: var(--transition-default);
}

.service-text {
    font-family: var(--font-lato);
    font-size: 0.9375rem;
    /* 15px */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-default);
}

.services-cta {
    text-align: center;
    padding-top: 20px;
}

.services-cta .btn-secondary {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-black);
    padding: 18px 65px;
    font-size: 17px;
    font-weight: 400;
    border-radius: 10px;
    letter-spacing: 0.3px;
}

.services-cta .btn-secondary:hover {
    background-color: var(--color-white);
    color: #e57b1d;
    border-color: var(--color-white);
}

/* === Map Overlays === */
.is-overlay {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.circles-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.circle {
    border-radius: 50%;
}

.circle.is-blurred {
    filter: blur(80px);
}

.circle.is-large {
    width: 500px;
    height: 500px;
}

.has-background-primary {
    background-color: rgba(180, 130, 60, 0.4);
}

.has-background-info {
    background-color: rgba(140, 160, 180, 0.25);
}

.map-overlay-gold-left,
.map-overlay-gold-right,
.map-overlay-silver-left,
.map-overlay-silver-right {
    max-width: 100%;
    /* Previene scroll horizontal */
    max-height: 100vh;
    display: none;
}

@media screen and (min-width: 1024px) {
    .map-overlay-gold-left {
        display: block;
        left: -15%;
        top: 50%;
        transform: translateY(-50%);
    }

    .map-overlay-silver-right {
        display: block;
        right: -15%;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* === Success Stories Section === */
.success-stories {
    background-color: #091E28;
    padding: 80px 0 0;
}

.success-stories .section-title {
    margin: 0 auto;
    max-width: 1440px;
    text-align: left;
    font-size: 2.625rem;
    /* 42px */
    line-height: 1.3;
    color: var(--color-white);
    padding: 2.5rem 2.5rem 1.875rem;
    /* 40px 40px 30px */
    scroll-margin-top: 7.5rem;
    /* 120px */
    font-weight: 600;
}

.testimonials-slider {
    background-color: #F5F1E8;
    padding: 80px 0 80px;
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #BABABA;
    border: none;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
    cursor: pointer;
}

.slider-arrow.prev-arrow {
    left: 80px;
}

.slider-arrow.next-arrow {
    right: 80px;
}

.slider-arrow:hover {
    background-color: #999999;
}

.testimonials-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
    min-height: 500px;
    /* Previene CLS durante transiciones */
}

@media (max-width: 768px) {
    .testimonials-container {
        min-height: 600px;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        min-height: 550px;
    }
}

.testimonial-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.testimonial-slide.active {
    display: grid;
}

.testimonial-content {
    text-align: right;
    max-width: 553px;
    margin: 0;
    padding-left: 0;
}

.testimonial-name {
    font-family: var(--font-roboto-serif);
    font-weight: 600;
    font-size: 2.8125rem;
    /* 45px */
    color: var(--color-orange);
    margin-bottom: 1.25rem;
    /* 20px */
    line-height: 1.15;
}

.testimonial-text {
    font-family: var(--font-lato);
    font-weight: 500;
    font-size: 1.875rem;
    /* 30px */
    line-height: 1.4;
    color: #091E28;
    font-style: normal;
}

.testimonial-image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.testimonial-image img {
    width: 100%;
    max-width: 468px;
    height: auto;
    aspect-ratio: 468 / 593;
    border-radius: 25px;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
    padding: 0 80px;
    margin-left: auto;
    margin-right: auto;
}

.slider-dot {
    flex: 1;
    height: 10px;
    background-color: #BABABA;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-default);
}

.slider-dot.active {
    background-color: var(--color-orange);
}

.slider-dot:hover {
    background-color: #999999;
}

/* === Contact Section === */

.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #c4c4c4;
    border: none;
    border-radius: 5px;
}

.form-group input {
    border-radius: 5px;
}

.contact {
    background-color: #091E28;
    padding: 80px 0 100px;
}

.contact .container {
    margin: 0 auto;
    padding: 0 40px;
}

.contact .section-title {
    color: var(--color-white);
    text-align: left;
    margin-bottom: 40px;
    font-size: 42px;
    font-family: var(--font-roboto-slab);
    font-weight: 600;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-profile {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-image {
    width: 270px;
    height: 270px;
    margin: 0 auto 40px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.profile-name {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 2.25rem;
    /* 36px */
    color: var(--color-orange);
    margin-bottom: 1.5625rem;
    /* 25px */
}

.profile-description {
    font-family: var(--font-lato);
    font-size: 1.5625rem;
    /* 25px */
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-white);
    opacity: 1;
    max-width: 510px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: linear-gradient(180deg, #F5F1E8 0%, #F5F1E8 70%, #FFFFFF 100%);
    border-radius: 0;
    padding: 50px 60px;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 2.25rem;
    /* 36px */
    color: var(--color-black);
    margin-bottom: 1.875rem;
    /* 30px */
}

.form-group {
    margin-bottom: 1.375rem;
    /* 22px */
}

.form-group label {
    display: block;
    font-family: var(--font-roboto-serif);
    font-weight: 500;
    font-size: 1.875rem;
    /* 30px */
    color: var(--color-black);
    margin-bottom: 0.75rem;
    /* 12px */
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    background-color: #D0D0D0;
    font-family: var(--font-lato);
    font-size: 16px;
    color: var(--color-black);
    transition: var(--transition-default);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background-color: #CFCFCF;
    box-shadow: 0 0 0 2px var(--color-orange);
}

.form-group select {
    cursor: pointer;
    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='%23484848' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background-color: var(--color-orange);
    color: var(--color-black);
    border: 2px solid #e57b1d;
    padding: 16px 50px;
    font-family: var(--font-lato);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    margin-top: 30px;
    transition: var(--transition-default);
    cursor: pointer;
}

.btn-submit:hover {
    background-color: var(--color-white);
    color: #e57b1d;
    border-color: #e57b1d;
}

.btn-submit svg {
    width: 24px;
    height: 24px;
    color: currentColor;
}

/* === Appointment Payment Notice === */
.appointment-payment-notice {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    border-left: 4px solid #0066cc;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.appointment-payment-notice p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #1a1a1a;
}

.appointment-payment-notice strong {
    color: #0066cc;
    font-weight: 600;
}

.appointment-payment-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* === Footer === */
.footer {
    background: linear-gradient(to bottom, #282524, #1a1818);
    padding: 30px 0 0;
}

.footer .container {
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 40px;
    gap: 60px;
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 46px;
}

.footer-logo img {
    height: 180px;
    width: auto;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 4px;
}

.footer-nav a,
.footer-nav .menu-item a,
.footer-link {
    font-family: var(--font-roboto-serif);
    font-size: 30px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-nav .menu-item a:hover,
.footer-link:hover {
    color: var(--color-orange);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
    flex-shrink: 0;
}

.social-link {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d2ad57;
    border-radius: 50%;
    transition: transform 0.3s ease;
    text-decoration: none;
    padding: 16px;
    box-sizing: border-box;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-roboto-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
}

.footer-legal-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--color-orange);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* === Skip Link === */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    left: 0;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--color-orange);
    color: var(--color-white);
    z-index: 2000;
}

/* === WooCommerce Integration === */
.woocommerce-page {
    background-color: #091E28;
}

/* Shop Hero Section */
.shop-hero {
    width: 100%;
    position: relative;
    background-color: #091E28;
}

.shop-hero__image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.shop-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shop-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(9, 30, 40, 1) 0%, transparent 100%);
}

/* Hide default WooCommerce elements for services */
.woocommerce-product-details__short-description,
.woocommerce-tabs .woocommerce-Tabs-panel--additional_information,
.woocommerce-tabs .additional_information_tab {
    display: none;
}

/* WooCommerce Appointment Info Notice */
.woocommerce-info.appointment-info {
    background: linear-gradient(135deg, #fff8dc 0%, #fffaed 100%);
    border-left: 4px solid #ffa500;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
    color: #333;
    box-shadow: 0 2px 12px rgba(255, 165, 0, 0.15);
}

.woocommerce-info.appointment-info strong {
    color: #d97706;
    font-size: 1.0625rem;
}

.woocommerce-info.appointment-info::before {
    display: none;
}

/* Appointment Coupon Message in Order Details */
.appointment-coupon-message {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    border-left: 4px solid #10b981;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    color: #065f46;
}

.appointment-coupon-message strong {
    color: #047857;
    font-size: 1.0625rem;
}

.appointment-coupon-message code {
    background-color: #fff;
    border: 1px solid #10b981;
    border-radius: 4px;
    padding: 0.25rem 0.625rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #047857;
}

.appointment-coupon-message small {
    color: #059669;
    display: block;
    margin-top: 0.5rem;
}

/* === Services Page === */
.services-page,
.checkout-page {
    background-color: #091E28;
    min-height: 100vh;
    padding: 96px 0 80px;
    position: relative;
    overflow-x: clip;
}

/* Overlays decorativos de servicios */
.services-page .map-overlay-gold-left,
.checkout-page .map-overlay-gold-left {
    display: none;
}

.services-page .map-overlay-silver-right,
.checkout-page .map-overlay-silver-right {
    display: none;
}

@media screen and (min-width: 1024px) {
    .services-page .map-overlay-gold-left {
        display: block;
        left: -15%;
        top: 300px;
        transform: none;
    }

    .services-page .map-overlay-silver-right {
        display: block;
        right: -15%;
        top: 1400px;
        transform: none;
    }

    /* Checkout page - solo overlay izquierdo */
    .checkout-page .map-overlay-gold-left {
        display: block;
        left: -15%;
        top: 300px;
        transform: none;
    }

    /* Checkout page - NO muestra overlay derecho */
    .checkout-page .map-overlay-silver-right {
        display: none !important;
    }
}

.services-page .container,
.checkout-page .container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .services-page .container {
        padding: 0 20px;
    }
}

.services-page__title {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 3rem;
    /* 48px */
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3.75rem;
    /* 60px */
}

.services-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-bottom: 80px;
}

.services-page__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-page__card {
    background-color: #1d2a30;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-default);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-page__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.services-page__card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.services-page__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-default);
}

.services-page__card:hover .services-page__card-image img {
    transform: scale(1.05);
}

.services-page__card-content {
    padding: 35px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.services-page__card-title {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 1.2;
}

.services-page__card-text {
    font-family: var(--font-lato);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.services-page__item .btn-service {
    background-color: var(--color-orange);
    color: var(--color-black);
    border: 2px solid var(--color-orange);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-default);
    align-self: center;
    display: inline-block;
}

.services-page__item .btn-service:hover {
    background-color: var(--color-white);
    color: #e57b1d;
    border-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 123, 29, 0.3);
}

/* CTA Banner */
.services-page__cta {
    background-image: url('assets/images/atencion-personalizada.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 60px;
    text-align: right;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1224px;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.services-page__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 0;
}

.services-page__cta-logo {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 200px;
    height: auto;
    z-index: 2;
}

.services-page__cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 10px;
}

.services-page__cta-title {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 43px;
    color: #091e28;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: right;
}

.btn-cta-large {
    background-color: var(--color-orange);
    color: var(--color-black);
    border: 2px solid #e57b1d;
    margin-top: 50px;
    padding: 5px 30px;
    font-size: 23px;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 0;
    text-transform: none;
    transition: var(--transition-default);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-large .btn-icon {
    width: 22px;
    height: 22px;
}

.btn-cta-large:hover {
    background-color: var(--color-white);
    color: #e57b1d;
    border-color: #e57b1d;
    transform: scale(1.02);
}

/* === Single Service Page === */
.service-hero {
    position: relative;
    width: 100vw;
    overflow: hidden;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-bottom: 60px;
    height: 300px;
}

.service-hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(9, 30, 40, 0) 0%, rgba(9, 30, 40, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: start;
}

.service-article ul {
    list-style: circle;
    padding-left: 45px;
}

.service-article ul li {
    color: white;
}

.service-article h1 {
    font-family: var(--font-roboto-slab);
    font-size: 36px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.service-article p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-info-box {
    background: #FFFFFF;
    padding: 32px 28px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-info-box h3 {
    font-family: var(--font-roboto-slab);
    color: #091E28;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.service-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.option-bullet {
    width: 12px;
    height: 12px;
    background-color: #e57b1d;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-label {
    font-family: var(--font-lato);
    font-size: 15px;
    color: #091E28;
    line-height: 1.4;
}

.option-price {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-orange);
}

.service-disclaimer {
    font-family: var(--font-lato);
    font-size: 11px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    font-style: italic;
}

.btn-service-cta {
    width: 100%;
    text-align: center;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
    margin: 0;
}

.btn-service-cta:hover {
    border: 2px solid var(--color-orange);
}

/* Sidebar Sections */
.sidebar-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(9, 30, 40, 0.1);
}

.sidebar-section-title {
    font-family: var(--font-roboto-slab);
    font-size: 16px;
    font-weight: 600;
    color: #091E28;
    margin-bottom: 16px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-list li {
    font-family: var(--font-lato);
    font-size: 14px;
    line-height: 1.5;
    color: #091E28;
    padding-left: 20px;
    position: relative;
}

.sidebar-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: 700;
    font-size: 16px;
}

.sidebar-costs-list li {
    font-size: 13px;
}

.sidebar-note {
    font-family: var(--font-lato);
    font-size: 11px;
    font-style: italic;
    color: #666;
    margin-top: 12px;
    margin-bottom: 0;
}


/* Service Requirements */
.service-requirements {
    background-color: #091E28;
    padding: 80px 0;
}

.service-requirements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.requirements-column {
    display: flex;
    flex-direction: column;
}

.requirements-title {
    font-family: var(--font-roboto-slab);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 30px;
    line-height: 1.3;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirements-list li {
    font-family: var(--font-lato);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 30px;
    position: relative;
}

.requirements-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 50%;
}

/* Service Disclaimers */
.service-disclaimers {
    background-color: #091E28;
    padding: 60px 0 80px;
}

.service-disclaimers-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #07161e;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.disclaimer-text {
    font-family: var(--font-lato);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.disclaimer-text--bold {
    font-weight: 700;
}

.disclaimer-box {
    background-color: rgba(229, 123, 29, 0.1);
    border: 2px solid #E57B1D;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.disclaimer-text--boxed {
    margin: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* === Woo Single Product (Mockup servicio-*.html) === */
.service-single-mockup {
    padding-top: 34px;
}

.service-single-mockup .service-hero--mockup {
    padding-bottom: 44px;
}

.service-single-mockup .service-hero__wrapper {
    background: #f2f2f2;
    border-radius: 24px;
    overflow: hidden;
}

.service-single-mockup .service-hero__image {
    position: relative;
    max-height: 360px;
    overflow: hidden;
}

.service-single-mockup .service-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.service-single-mockup .service-hero__image-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f2f2f2 100%);
}

.service-single-mockup .service-hero__content {
    padding: 28px 24px 20px;
}

.service-single-mockup .service-hero__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.service-single-mockup .service-hero__title {
    font-family: var(--font-roboto-slab);
    font-size: clamp(1.8rem, 2.8vw, 2.9rem);
    line-height: 1.08;
    color: #2e2e2e;
    margin-bottom: 14px;
}

.service-single-mockup .service-hero__text {
    font-size: 1rem;
    line-height: 1.65;
    color: #232323;
}

.service-single-mockup .service-hero__options-title {
    font-family: var(--font-roboto-slab);
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    color: #2e2e2e;
    margin-bottom: 16px;
}

.service-single-mockup .service-hero__option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.service-single-mockup .service-hero__option-icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #bbb;
}

.service-single-mockup .service-hero__option.is-active .service-hero__option-icon {
    background: #222;
}

.service-single-mockup .service-hero__option-label {
    font-weight: 700;
    color: #2a2a2a;
}

.service-single-mockup .service-hero__note {
    margin-top: 14px;
    font-size: 0.85rem;
    line-height: 1.55;
    color: #595959;
}

.service-single-mockup .service-hero__cart {
    margin-top: 24px;
}

.service-single-mockup .service-hero__button {
    width: 100%;
    max-width: 300px;
    height: 52px;
    border: 0;
    border-radius: 10px;
    font-family: var(--font-roboto-slab);
    font-size: 1.2rem;
    color: #fff;
    background: var(--color-orange);
    cursor: pointer;
}

.service-single-mockup .service-requirements {
    padding: 40px 0 24px;
}

.service-single-mockup .service-requirements__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

.service-single-mockup .service-requirements__title {
    font-family: var(--font-roboto-slab);
    color: #fff;
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    margin-bottom: 20px;
}

.service-single-mockup .service-requirements__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-single-mockup .service-requirements__item {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.service-single-mockup .service-requirements__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.service-single-mockup .legal-notice {
    padding: 26px 0 70px;
}

.service-single-mockup .legal-notice__wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    background: #cfccc5;
    border-radius: 22px;
    padding: 22px;
}

.service-single-mockup .legal-notice__icon {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    color: #2d2d2d;
}

.service-single-mockup .legal-notice__title {
    font-family: var(--font-roboto-slab);
    font-size: 1.85rem;
    color: #2f2f2f;
    margin-bottom: 8px;
}

.service-single-mockup .legal-notice__text {
    color: #343434;
    line-height: 1.5;
    margin-bottom: 8px;
}

@media (max-width: 980px) {
    .service-single-mockup .service-hero__columns {
        grid-template-columns: 1fr;
    }

    .service-single-mockup .service-hero__button {
        max-width: 100%;
    }

    .service-single-mockup .legal-notice__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-single-mockup .legal-notice__icon {
        margin: 0 auto;
    }
}

/* === Woo Archive Product (servicios.html mockup) === */
.services-hero {
    position: relative;
    min-height: 408px;
    display: flex;
    align-items: center;
    padding: 54px 0 64px;
    background:
        linear-gradient(180deg, rgba(20, 20, 24, 0.26) 0%, rgba(20, 20, 24, 0.82) 100%),
        url('assets/images/hero-servicios.png') center/cover no-repeat;
}

.services-hero__content {
    max-width: 620px;
}

.services-hero__title {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--font-roboto-slab);
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.02;
    text-transform: uppercase;
}

.services-hero__text {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.4;
}

.services-hero .btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-width: 202px;
    min-height: 49px;
    padding: 0 28px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.services-archive-main {
    position: relative;
    background: #242325;
    padding: 58px 0 46px;
    overflow: hidden;
}

.services-archive-main::before,
.services-archive-main::after {
    content: '';
    position: absolute;
    pointer-events: none;
    filter: blur(42px);
}

.services-archive-main::before {
    width: 360px;
    height: 360px;
    left: -170px;
    top: 280px;
    background: radial-gradient(circle, rgba(188, 146, 72, 0.32) 0%, rgba(188, 146, 72, 0) 70%);
}

.services-archive-main::after {
    width: 360px;
    height: 360px;
    right: -170px;
    top: 980px;
    background: radial-gradient(circle, rgba(128, 111, 70, 0.28) 0%, rgba(128, 111, 70, 0) 70%);
}

.services-archive-main .container {
    position: relative;
    z-index: 1;
}

.section--services-detail {
    padding-bottom: 42px;
}

.services-detail__title {
    color: #fff;
    font-family: var(--font-roboto-slab);
    font-size: clamp(2.1rem, 2.5vw, 2.7rem);
    margin: 0 0 28px;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 94px 1fr;
    grid-template-areas:
        'image content'
        'button button';
    column-gap: 14px;
    row-gap: 10px;
    background: #ecebe8;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    padding: 10px 10px 9px;
    min-height: 178px;
}

.service-detail-card__image {
    grid-area: image;
    width: 94px;
    height: 118px;
    border-radius: 6px;
    overflow: hidden;
}

.service-detail-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-card__content {
    grid-area: content;
    min-width: 0;
}

.service-detail-card__title {
    margin: 0 0 8px;
    font-family: var(--font-roboto-slab);
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: #2e2e2e;
}

.service-detail-card__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.24;
    color: #393939;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-detail-card__button {
    grid-area: button;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 39px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    color: #fff;
    background: #2a292b;
    transition: var(--transition-default);
}

.service-detail-card__button:hover {
    background: var(--color-orange);
}

.services-archive-main .woocommerce-pagination {
    margin-top: 26px;
}

.page-cta--services {
    padding-top: 10px;
}

.page-cta--services .page-cta__wrapper {
    min-height: 122px;
    border-radius: 14px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(35, 35, 37, 0.78) 0%, rgba(35, 35, 37, 0.24) 58%, rgba(35, 35, 37, 0.18) 100%),
        url('assets/images/atencion.png') center/cover no-repeat;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 18px 18px 16px 22px;
}

.page-cta--services .page-cta__title {
    margin: 0 0 4px;
    color: #d8d5cf;
    font-family: var(--font-roboto-slab);
    font-size: 2.5rem;
    line-height: 0.96;
}

.page-cta--services .page-cta__text {
    margin: 0;
    color: rgba(231, 229, 224, 0.9);
    font-size: 0.95rem;
    line-height: 1.2;
}

.page-cta--services .btn--cta {
    min-width: 248px;
    min-height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d8b24c;
    color: #fff;
    font-family: var(--font-roboto-slab);
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
    padding: 0 24px;
}

.page-cta--services .btn--cta:hover {
    background: #c89f3b;
}

@media (max-width: 860px) {
    .services-hero {
        min-height: 340px;
        padding: 50px 0 52px;
    }

    .services-hero__title {
        font-size: clamp(1.8rem, 8.4vw, 2.7rem);
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card__title {
        font-size: 1.55rem;
    }

    .page-cta--services .page-cta__wrapper {
        grid-template-columns: 1fr;
        padding: 16px;
        text-align: left;
    }

    .page-cta--services .btn--cta {
        min-width: 210px;
        min-height: 48px;
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .services-hero {
        min-height: 284px;
        padding: 42px 0 40px;
    }

    .services-hero__text {
        max-width: 340px;
    }

    .service-detail-card {
        grid-template-columns: 78px 1fr;
        padding: 9px;
        min-height: 170px;
    }

    .service-detail-card__image {
        width: 78px;
        height: 100px;
    }

    .service-detail-card__title {
        font-size: 1.35rem;
    }

    .service-detail-card__text {
        font-size: 0.95rem;
    }

    .page-cta--services .page-cta__title {
        font-size: 2rem;
    }

    .page-cta--services .btn--cta {
        min-width: 180px;
        font-size: 1.35rem;
    }
}


/* === Modal Styles === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    width: 90%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 30px solid var(--color-orange);
    position: relative;
}

.modal-left {
    background-color: #F5F1E8;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
}

.modal-logo {
    margin-bottom: 40px;
}

.modal-logo img {
    max-width: 200px;
    height: auto;
}

.modal-right {
    background-color: var(--color-white);
    padding: 40px;
    border-left: none;
}

.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 16px 30px;
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition-default);
}

.modal-submit:hover {
    background-color: #222;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px 10px;
    text-align: center;
}

.calendar-day-name {
    font-family: var(--font-lato);
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    font-weight: 500;
}

.calendar-day {
    font-family: var(--font-lato);
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-default);
    border: 2px solid #BABABA;
    background-color: transparent;
    color: var(--color-black);
}

.calendar-day:hover {
    background-color: #F5F1E8;
}

.calendar-day.selected,
.calendar-day.today {
    background-color: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.calendar-day.disabled {
    color: #666;
    cursor: not-allowed;
    border-color: var(--color-orange);
    background-color: rgba(229, 123, 29, 0.2);
}

/* =============================================
   Responsive Design
   ============================================= */

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        padding: 110px 0 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-bottom: 0;
        min-height: auto;
    }

    .hero-content {
        order: 1;
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-image {
        order: 2;
        position: relative;
        bottom: 0;
        right: auto;
        width: 100%;
        max-width: 500px;
        margin: 30px auto 0;
        padding: 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-slide {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-left {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 40px;
        padding: 0;
    }

    .footer-nav {
        align-items: flex-start;
    }

    .footer-nav a,
    .footer-nav .menu-item a,
    .footer-link {
        font-size: 22px;
    }

    .footer-social {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .services-page__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero {
        padding: 120px 0 100px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        order: 0;
        text-align: left;
    }

    .hero-image {
        order: 0;
        position: absolute;
        bottom: 60px;
    }

    .hero-title {
        font-size: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .testimonial-slide {
        grid-template-columns: 553px 468px;
        gap: 60px;
    }

    .footer-main {
        flex-direction: row;
    }

    .services-page .map-overlay-gold-left {
        display: block;
        left: -15%;
        top: 300px;
        transform: none;
    }

    .services-page .map-overlay-silver-right {
        display: block;
        right: -15%;
        top: 1400px;
        transform: none;
    }
}

/* Tablets grandes y laptops pequeñas (iPad Pro, Surface) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        /* 40px */
    }

    .hero-text {
        font-size: 1rem;
        /* 16px */
    }

    .hero-slide .hero-image {
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 40px 30px;
        min-height: 220px;
    }

    .testimonial-slide {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .testimonial-name {
        font-size: 2.25rem;
        /* 36px */
    }

    .testimonial-text {
        font-size: 1.5rem;
        /* 24px */
    }

    .profile-name {
        font-size: 2rem;
        /* 32px */
    }

    .profile-description {
        font-size: 1.25rem;
        /* 20px */
    }

    .form-title {
        font-size: 2rem;
        /* 32px */
    }

    .form-group label {
        font-size: 1.5rem;
        /* 24px */
    }
}

/* Mobile */
@media (max-width: 767px) {

    /* Prevenir zoom automático en iOS para inputs */
    input,
    select,
    textarea {
        font-size: 1rem !important;
        /* 16px mínimo */
    }

    .hero {
        padding: 90px 0 0;
        min-height: auto;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-bottom: 0;
        min-height: auto;
    }

    .hero-content {
        order: 1;
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        order: 2;
        position: relative;
        bottom: 0;
        right: auto;
        width: 100%;
        max-width: 350px;
        margin: 25px auto 0;
        padding: 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 15px;
    }

    .header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 15px;
        justify-content: space-between;
    }

    .logo img {
        width: 180px;
    }

    .menu-toggle {
        right: 15px;
        padding: 8px 20px;
        font-size: 14px;
        min-width: auto;
    }

    .nav {
        right: 15px;
        top: calc(100% - 1px);
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .services {
        padding: 50px 0 60px;
    }

    .services .section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 35px 25px 30px;
        min-height: auto;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0;
    }

    .testimonial-content {
        text-align: center;
        order: 2;
    }

    .testimonial-image {
        order: 1;
        justify-content: center;
    }

    .testimonial-name {
        font-size: 1.5rem;
        /* 24px */
    }

    .testimonial-text {
        font-size: 1rem;
        /* 16px */
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
    }

    .slider-arrow.prev-arrow {
        left: 15px;
    }

    .slider-arrow.next-arrow {
        right: 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-profile {
        padding: 30px 20px;
    }

    .footer-main {
        gap: 25px;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-main {
        gap: 20px;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-logo img {
        height: 120px;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav a,
    .footer-nav .menu-item a,
    .footer-link {
        font-size: 18px;
    }

    .footer-legal {
        font-size: 14px;
        flex-direction: column;
        gap: 6px;
    }

    .footer-separator {
        display: none;
    }

    .social-link {
        width: 50px;
        height: 50px;
        padding: 11px;
    }

    .services-page {
        padding: 78px 0 50px;
    }

    .services-page .container {
        padding: 0 20px;
    }

    .services-page__title {
        font-size: 2rem;
        /* 32px */
        margin-bottom: 1.875rem;
        /* 30px */
    }

    .services-page__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .service-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .modal-container {
        grid-template-columns: 1fr;
        border: 12px solid var(--color-orange);
    }
}

/* Extra small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        /* 24px */
    }

    .logo img {
        width: 150px;
    }

    .menu-toggle {
        padding: 6px 16px;
        font-size: 13px;
    }

    .services-page__title {
        font-size: 1.75rem;
        /* 28px */
    }

    .services-page__cta-title {
        font-size: 1.25rem;
        /* 20px */
    }

    .btn-cta-large {
        padding: 0.75rem 1.875rem;
        /* 12px 30px */
        font-size: 0.9375rem;
        /* 15px */
    }
}

/* iPhone SE y dispositivos muy pequeños (<375px) */
@media (max-width: 374px) {
    .hero-title {
        font-size: 1.25rem;
        /* 20px */
        line-height: 1.2;
    }

    .hero-text {
        font-size: 0.875rem;
        /* 14px */
    }

    .hero-slide .hero-container {
        padding: 0 15px;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 0.875rem;
        /* 14px */
    }

    .section-title {
        font-size: 1.5rem;
        /* 24px */
    }

    .service-title {
        font-size: 1.125rem;
        /* 18px */
    }

    .testimonial-name {
        font-size: 1.25rem;
        /* 20px */
    }

    .testimonial-text {
        font-size: 0.875rem;
        /* 14px */
    }

    .footer-logo img {
        max-width: 70%;
    }
}

/* ============================================
   Contact Page
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    width: 100%;
    position: relative;
    margin-top: 74px;
    background-color: #091E28;
}

.contact-hero__image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.contact-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(9, 30, 40, 1) 0%, transparent 100%);
}

/* Contact Main Section */
.contact-main {
    background-color: #091E28;
    padding: 60px 0 80px;
}

.contact-main__title {
    font-family: var(--font-roboto-serif);
    font-size: 3rem;
    /* 48px */
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 3.75rem;
    /* 60px */
    text-align: left;
}

.contact-main__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Contact Form Wrapper */
.contact-main__form-wrapper {
    background-color: #E5DCCF;
    border-radius: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.contact-main__form-logo {
    text-align: center;
    margin-bottom: 30px;
}

.contact-main__form-logo img {
    width: 180px;
    height: auto;
}

.contact-main__form .form-group {
    margin-bottom: 20px;
}

.contact-main__form .form-group label {
    display: block;
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 8px;
}

.contact-main__form .form-group input,
.contact-main__form .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    background-color: var(--color-form-bg);
    font-family: var(--font-lato);
    font-size: 16px;
    color: #000000;
}

.contact-main__form .form-group input:focus,
.contact-main__form .form-group select:focus {
    outline: none;
    background-color: #CFCFCF;
    box-shadow: 0 0 0 2px var(--color-orange);
}

.contact-main__form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-main__form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    background-color: var(--color-form-bg);
    font-family: var(--font-lato);
    font-size: 16px;
    color: #000000;
}

.contact-main__form .form-group textarea:focus {
    outline: none;
    background-color: #CFCFCF;
    box-shadow: 0 0 0 2px var(--color-orange);
}

.contact-main__form .btn-submit {
    width: 100%;
    margin-top: 10px;
}

.contact-main__form .btn-send-message {
    background: var(--color-primary);
}

.contact-main__form .btn-send-message:hover {
    background: #d66b1a;
}

/* Contact Info Section */
.contact-main__info {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.contact-main__map {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    flex: 1;
}

.contact-main__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.contact-main__details {
    background-color: #E5DCCF;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.contact-detail__icon {
    width: 32px;
    height: 32px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.contact-detail__text {
    flex: 1;
}

.contact-detail__label {
    font-family: var(--font-lato);
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #091E28;
    padding: 40px 0;
}

.faq-section__title {
    font-family: var(--font-roboto-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    align-self: start;
}

.faq-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background-color: #FFFFFF;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item__header:hover {
    background-color: #F5F5F5;
}

.faq-item__header[aria-expanded="true"] {
    background-color: var(--color-orange);
}

.faq-item__header[aria-expanded="true"]:hover {
    background-color: #D66F15;
}

.faq-item__question {
    font-family: var(--font-roboto-slab);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item__header[aria-expanded="true"] .faq-item__question {
    color: #FFFFFF;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    color: var(--color-orange);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item__header[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
    color: #FFFFFF;
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: transparent;
}

.faq-item__header[aria-expanded="true"]+.faq-item__content {
    max-height: 400px !important;
    padding: 20px 25px;
    background-color: var(--color-orange);
}

.faq-item__content p {
    font-family: var(--font-lato);
    font-size: 15px;
    line-height: 1.6;
    color: #484848;
    margin: 0;
    transition: color 0.3s ease;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.faq-item__header[aria-expanded="true"]+.faq-item__content p {
    color: #FFFFFF;
}

/* Responsive Styles - Contact Page */
@media (max-width: 1024px) {
    .contact-main__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero__image {
        height: 250px;
    }

    .contact-hero__overlay {
        height: 100px;
    }

    .contact-main {
        padding: 40px 0 60px;
    }

    .contact-main__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .contact-main__form-wrapper {
        padding: 30px 20px;
    }

    .contact-main__form-logo img {
        width: 140px;
    }

    .contact-main__map iframe {
        height: 280px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item__question {
        font-size: 15px;
    }

    .faq-item__content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-hero__image {
        height: 200px;
    }

    .contact-main__title {
        font-size: 28px;
    }

    .contact-main__form-wrapper {
        padding: 25px 15px;
    }

    .contact-main__form-logo img {
        width: 120px;
    }

    .contact-detail {
        padding: 12px 15px;
    }

    .contact-detail__icon {
        width: 28px;
        height: 28px;
    }

    .contact-detail__label {
        font-size: 16px;
    }

    .faq-section__title {
        font-size: 28px;
    }

    .faq-item__header {
        padding: 15px 20px;
    }

    .faq-item__question {
        font-size: 15px;
    }

    .faq-item__header[aria-expanded="true"]+.faq-item__content {
        padding: 15px 20px;
    }
}

/* ============================================
   About Us (Quiénes Somos) Section
   ============================================ */

.about-section {
    padding: 120px 0 80px;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.about-title {
    font-family: var(--font-roboto-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 60px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-subtitle {
    font-family: var(--font-roboto-slab);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.about-text p {
    font-family: var(--font-lato);
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-white);
    margin: 0;
}

/* Responsive styles for About Us */
@media (max-width: 1024px) {
    .about-section {
        padding: 100px 0 60px;
    }

    .about-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .about-content {
        gap: 60px;
    }

    .about-subtitle {
        font-size: 28px;
    }

    .about-text p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 90px 0 50px;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-subtitle {
        font-size: 24px;
    }

    .about-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 80px 0 40px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-content {
        gap: 30px;
    }

    .about-subtitle {
        font-size: 22px;
    }

    .about-text p {
        font-size: 15px;
    }
}

/* ========================================
   APPOINTMENT MODAL STYLES
   ======================================== */
.appointment-modal-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
}

.appointment-modal-overlay.active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
}

.appointment-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 680px;
    width: 90%;
    background-color: #F5F1E8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 18px solid var(--color-orange);
    position: relative;
}

.appointment-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-default);
    line-height: 1;
}

.appointment-modal-close:hover {
    color: var(--color-orange);
}

.appointment-modal-left {
    background-color: #F5F1E8;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.appointment-modal-logo {
    width: 180px !important;
    height: auto !important;
    margin-bottom: 30px;
}

.appointment-modal-title {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 28px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.appointment-modal-subtitle {
    font-family: var(--font-lato);
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.appointment-modal-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appointment-modal-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-lato);
    font-size: 16px;
    color: var(--color-orange);
    font-weight: 600;
}

.appointment-modal-duration svg {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.appointment-modal-description {
    font-family: var(--font-lato);
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Icon wrapper to constrain SVG sizes */
.appointment-modal-info svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    color: var(--color-orange);
}

.appointment-modal-right {
    background-color: #F5F1E8;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.appointment-modal-calendar-title {
    font-family: var(--font-roboto-slab);
    font-weight: 600;
    font-size: 18px;
    color: var(--color-black);
    margin-bottom: 20px;
}

.appointment-calendar {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.appointment-calendar .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.appointment-calendar .calendar-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    color: var(--color-orange);
    font-size: 24px;
    font-weight: 700;
    transition: var(--transition-default);
}

.appointment-calendar .calendar-nav:hover {
    color: #d16b15;
}

.appointment-calendar .calendar-month {
    font-family: var(--font-lato);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-black);
}

.appointment-calendar .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.appointment-calendar .calendar-day-name {
    font-family: var(--font-lato);
    font-size: 12px;
    color: #666;
    text-align: center;
    padding: 5px 0;
    font-weight: 600;
}

.appointment-calendar .calendar-day {
    font-family: var(--font-lato);
    font-size: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-default);
    /* Available days - clear white background */
    border: 2px solid #091E28;
    background-color: #FFFFFF;
    color: #091E28;
    font-weight: 600;
}

.appointment-calendar .calendar-day:hover:not(.disabled) {
    background-color: #E57B1D;
    border-color: #E57B1D;
    color: #FFFFFF;
}

.appointment-calendar .calendar-day.selected {
    background-color: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.appointment-calendar .calendar-day.disabled {
    /* Disabled days - grayed out */
    background-color: #e8e8e8;
    border-color: #cccccc;
    color: #999999;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-appointment {
    width: 100%;
    background-color: #091E28;
    color: var(--color-white);
    border: none;
    padding: 14px 30px;
    font-family: var(--font-lato);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-default);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-appointment:hover {
    background-color: #0d2535;
}

.btn-appointment svg {
    width: 20px;
    height: 20px;
}

.btn-appointment:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #6b7280;
}

/* ========================================
   TIME SLOT SELECTION STYLES
   ======================================== */
.appointment-time-slots {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.time-slot-button {
    padding: 12px 8px;
    border: 2px solid #091E28;
    background-color: #FFFFFF;
    color: #091E28;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.time-slot-button:hover:not(.disabled) {
    border-color: #E57B1D;
    background-color: #FFF3E0;
    color: #E57B1D;
}

.time-slot-button.selected {
    background-color: #E57B1D;
    color: #FFFFFF;
    border-color: #E57B1D;
}

.time-slot-button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-color: #cccccc;
    color: #999999;
}


@media (max-width: 768px) {
    .appointment-modal {
        grid-template-columns: 1fr;
        max-width: 95%;
        border: 12px solid var(--color-orange);
    }

    .appointment-modal-left {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 30px 25px;
    }

    .appointment-modal-logo {
        width: 140px !important;
        margin-bottom: 20px;
    }

    .appointment-modal-title {
        font-size: 24px;
    }

    .appointment-modal-right {
        padding: 30px 25px;
    }
}

/* ========================================
   DASHBOARD DE CLIENTE
======================================== */

.client-dashboard {
    padding: 6rem 0 3.75rem 0;
    background-color: #F9FAFB;
    min-height: 100vh;
}

.client-dashboard .container {
    max-width: 1200px;
}

/* Mensaje de Bienvenida */
.welcome-message {
    background: linear-gradient(135deg, #091E28 0%, #1a3a4f 100%);
    color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 0.25rem 1.5rem rgba(9, 30, 40, 0.15);
}

.welcome-icon {
    font-size: 3.75rem;
    margin-bottom: 1.25rem;
}

.welcome-message h2 {
    font-family: var(--font-roboto-slab);
    font-size: 1.875rem;
    margin-bottom: 0.625rem;
    color: #FFFFFF;
}

.welcome-message p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Header del Dashboard */
.dashboard-header {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.user-avatar img {
    border-radius: 50%;
    border: 0.1875rem solid #FF8C42;
}

.user-details h1 {
    font-family: var(--font-roboto-slab);
    font-size: 1.75rem;
    margin-bottom: 0.3125rem;
    color: #091E28;
}

.user-email {
    color: #6B7280;
    font-size: 0.9375rem;
    margin: 0;
}

.dashboard-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Tabs de Navegación */
.dashboard-tabs {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: #FFFFFF;
    border: 0.125rem solid #E5E7EB;
    color: #6B7280;
    padding: 0.9375rem 1.875rem;
    border-radius: 0.5rem;
    font-family: var(--font-lato);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.tab-btn:hover {
    background-color: #F9FAFB;
    border-color: #FF8C42;
    color: #FF8C42;
}

.tab-btn.active {
    background-color: #FF8C42;
    border-color: #FF8C42;
    color: #FFFFFF;
}

.tab-btn svg {
    stroke-width: 2;
}

/* Contenido de Tabs */
.dashboard-content {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-family: var(--font-roboto-slab);
    font-size: 1.75rem;
    color: #091E28;
    margin-bottom: 2rem;
}

.tab-content h3 {
    font-family: var(--font-roboto-slab);
    font-size: 1.375rem;
    color: #091E28;
    margin-bottom: 1.25rem;
}

/* Servicios Grid */
.client-dashboard .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.client-dashboard .service-card {
    background-color: #FFFFFF;
    border: 0.125rem solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.client-dashboard .service-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    border-color: #FF8C42;
}

.client-dashboard .service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.client-dashboard .service-info h3 {
    font-family: var(--font-roboto-slab);
    font-size: 1.125rem;
    color: #091E28;
    margin-bottom: 0.3125rem;
}

.order-number {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
}

.order-status {
    padding: 0.375rem 0.9375rem;
    border-radius: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.status-completed {
    background-color: #D1FAE5;
    color: #065F46;
}

.status-processing {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-pending {
    background-color: #E0E7FF;
    color: #3730A3;
}

.client-dashboard .service-details {
    margin-bottom: 1.25rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}

.detail-row .label {
    color: #6B7280;
    font-size: 0.9375rem;
}

.detail-row .value {
    color: #091E28;
    font-weight: 600;
    font-size: 0.9375rem;
}

.pending-documents {
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.badge-warning {
    background-color: #FEF3C7;
    color: #92400E;
}

.client-dashboard .service-actions {
    margin-top: 1.25rem;
}

.btn-view-service {
    width: 100%;
    justify-content: center;
}

/* Gestión de Documentos */
.document-manager {
    max-width: 50rem;
}

.order-selector {
    margin-bottom: 2rem;
}

.order-selector label {
    display: block;
    font-weight: 600;
    color: #091E28;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 0.125rem solid #E5E7EB;
    border-radius: 0.5rem;
    font-family: var(--font-lato);
    font-size: 0.9375rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #FF8C42;
}

/* Solicitudes de Documentos */
.document-requests-section {
    background-color: #FEF3C7;
    border-left: 0.25rem solid #F59E0B;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.document-requests-section h3 {
    color: #92400E;
    margin-bottom: 1.25rem;
}

.requests-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.request-item {
    background-color: #FFFFFF;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid #FDE68A;
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.625rem;
}

.request-header strong {
    color: #091E28;
    text-transform: capitalize;
}

.request-description {
    color: #6B7280;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.request-date {
    color: #9CA3AF;
    font-size: 0.8125rem;
    margin: 0;
}

/* Formulario de Subida */
.upload-section {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #091E28;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.form-group small {
    display: block;
    color: #6B7280;
    font-size: 0.8125rem;
    margin-top: 0.3125rem;
}

/* Lista de Documentos Subidos */
.documents-list {
    margin-top: 2rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.document-item {
    background-color: #F9FAFB;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid #E5E7EB;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.document-item:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}

.document-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 0.9375rem;
    color: #091E28;
    margin-bottom: 0.3125rem;
    text-transform: capitalize;
    font-family: var(--font-lato);
}

.document-filename {
    font-size: 0.8125rem;
    color: #6B7280;
    margin-bottom: 0.3125rem;
    word-break: break-word;
}

.document-date {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin: 0;
}

.empty-message {
    color: #6B7280;
    text-align: center;
    padding: 2rem;
    font-style: italic;
}

/* Tabla de Recibos */
.invoices-table {
    overflow-x: auto;
}

.invoices-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.invoices-table thead {
    background-color: #F9FAFB;
}

.invoices-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #091E28;
    border-bottom: 0.125rem solid #E5E7EB;
}

.invoices-table td {
    padding: 1rem;
    border-bottom: 0.0625rem solid #E5E7EB;
    color: #4B5563;
}

.invoices-table tbody tr:hover {
    background-color: #F9FAFB;
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.invoice-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-view-order-details,
.btn-view-invoice,
.btn-download-pdf {
    background-color: #091E28;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-view-order-details svg,
.btn-view-invoice svg,
.btn-download-pdf svg {
    flex-shrink: 0;
}

.btn-view-order-details:hover,
.btn-view-invoice:hover {
    background-color: #1a3a4f;
}

.btn-download-pdf {
    background-color: #E57B1D;
}

.btn-download-pdf:hover {
    background-color: #d46e15;
}

/* Formulario de Perfil */
.profile-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Estado Vacío */
.empty-state {
    text-align: center;
    padding: 3.75rem 1.25rem;
    color: #6B7280;
}

.empty-state svg {
    stroke: #D1D5DB;
    stroke-width: 1.5;
    margin-bottom: 1.25rem;
}

.empty-state p {
    font-size: 1.125rem;
    margin: 0;
}

/* Notificaciones */
.dashboard-notification {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-family: var(--font-lato);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(6.25rem);
    transition: all 0.3s ease;
}

.dashboard-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.dashboard-notification.success {
    background-color: #D1FAE5;
    color: #065F46;
}

.dashboard-notification.error {
    background-color: #FEE2E2;
    color: #991B1B;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Order Details Modal
   ============================================ */

.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.order-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.order-modal-content {
    background: #FFFFFF;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    margin: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.order-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #1F2937;
}

.order-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    color: #6B7280;
}

.order-modal-close:hover {
    background-color: #F3F4F6;
    color: #1F2937;
}

.order-modal-body {
    padding: 2rem;
}

.order-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    gap: 1rem;
}

.order-loading .spinner {
    width: 3rem;
    height: 3rem;
    border: 0.25rem solid #E5E7EB;
    border-top-color: #C8102E;
}

.order-loading p {
    color: #6B7280;
    margin: 0;
}

.order-details-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-summary {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.order-info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-info-item .label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

.order-info-item .value {
    font-size: 1.125rem;
    color: #1F2937;
    font-weight: 600;
}

.order-info-item .value.total {
    color: #C8102E;
    font-size: 1.25rem;
}

.order-items h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: #1F2937;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.order-items-table thead {
    background: #F9FAFB;
}

.order-items-table th,
.order-items-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.order-items-table th {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-items-table tbody tr:last-child td {
    border-bottom: none;
}

.order-items-table tbody tr:hover {
    background: #F9FAFB;
}

.order-items-table .item-meta {
    margin-top: 0.5rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.order-items-table tfoot {
    background: #F9FAFB;
    font-weight: 600;
}

.order-items-table tfoot th,
.order-items-table tfoot td {
    border-top: 2px solid #E5E7EB;
}

.order-customer-note,
.order-billing-details,
.order-payment-method {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.order-customer-note h3,
.order-billing-details h3,
.order-payment-method h3 {
    margin: 0 0 1rem 0;
    font-size: 1.125rem;
    color: #1F2937;
}

.order-customer-note p,
.order-billing-details p,
.order-payment-method p {
    margin: 0.5rem 0;
    color: #4B5563;
    line-height: 1.6;
}

.billing-info {
    color: #4B5563;
    line-height: 1.6;
}

.order-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.order-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.error-message {
    padding: 1.5rem;
    background: #FEE2E2;
    color: #991B1B;
    border-radius: 8px;
    text-align: center;
}

/* Responsive Order Modal */
@media (max-width: 768px) {
    .order-modal {
        padding: 1rem;
    }

    .order-modal-header {
        padding: 1rem 1.5rem;
    }

    .order-modal-header h2 {
        font-size: 1.25rem;
    }

    .order-modal-body {
        padding: 1.5rem;
    }

    .order-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .order-items-table {
        font-size: 0.875rem;
    }

    .order-items-table th,
    .order-items-table td {
        padding: 0.75rem 0.5rem;
    }

    .order-actions {
        flex-direction: column;
    }
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .client-dashboard {
        padding: 2rem 0;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .user-info {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        flex: 1;
        justify-content: center;
    }

    .tab-btn svg {
        display: none;
    }

    .dashboard-content {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        padding-top: 1rem;
        gap: 0;
    }

    .invoices-table {
        font-size: 0.8125rem;
    }

    .invoices-table th,
    .invoices-table td {
        padding: 0.625rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .welcome-message {
        padding: 1.5rem;
    }

    .welcome-icon {
        font-size: 2.5rem;
    }

    .welcome-message h2 {
        font-size: 1.5rem;
    }
}

/* === WooCommerce Order Received Page === */

/* Ocultar sidebar de WooCommerce en todas las páginas */
.woocommerce-page aside.sidebar,
.woocommerce aside.sidebar,
#secondary.widget-area {
    display: none !important;
}

/* Asegurar que el contenido principal ocupe todo el ancho */
.woocommerce-page .content-area,
.woocommerce .content-area,
.woocommerce-order-received .content-area {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

/* Estilos para la página de orden recibida */
.woocommerce-order-received {
    background-color: #091E28;
    min-height: 100vh;
    padding: 120px 0 60px;
}

.woocommerce-order-received .woocommerce-order {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.woocommerce-order-received .woocommerce-order h1,
.woocommerce-order-received .woocommerce-order h2,
.woocommerce-order-received .woocommerce-order h3 {
    color: #FFFFFF !important;
    font-family: var(--font-roboto-slab);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.woocommerce-order-received .woocommerce-order h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.woocommerce-order-received .woocommerce-order h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF !important;
    font-weight: 600;
}

.woocommerce-order-received .woocommerce-order h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FFFFFF !important;
    font-weight: 600;
}

/* All text elements should be white/light for readability */
.woocommerce-order-received p,
.woocommerce-order-received span,
.woocommerce-order-received li,
.woocommerce-order-received label,
.woocommerce-order-received .woocommerce-order-overview__order,
.woocommerce-order-received .woocommerce-order-overview__date,
.woocommerce-order-received .woocommerce-order-overview__total,
.woocommerce-order-received .woocommerce-order-overview__payment-method {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Order details sections */
.woocommerce-order-received .woocommerce-order-overview,
.woocommerce-order-received .woocommerce-customer-details,
.woocommerce-order-received .woocommerce-order-details {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.woocommerce-order-received .woocommerce-order-overview li {
    color: #FFFFFF !important;
}

.woocommerce-order-received .woocommerce-order-overview strong {
    color: #E57B1D !important;
}

/* Order details table */
.woocommerce-order-received .woocommerce-table {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-order-received .woocommerce-table thead {
    background-color: rgba(229, 123, 29, 0.3);
}

.woocommerce-order-received .woocommerce-table th,
.woocommerce-order-received .woocommerce-table td {
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding: 1rem !important;
}

.woocommerce-order-received .woocommerce-table th {
    font-weight: 600;
    font-family: var(--font-roboto-slab);
}

.woocommerce-order-received .woocommerce-table tfoot th {
    background-color: rgba(229, 123, 29, 0.15);
    font-weight: 700;
}

.woocommerce-order-received .woocommerce-table tfoot td {
    font-weight: 700;
}

/* Product name styling */
.woocommerce-order-received .woocommerce-table .product-name,
.woocommerce-order-received .woocommerce-table .product-total {
    color: #FFFFFF !important;
}

/* Customer details */
.woocommerce-order-received .woocommerce-customer-details address {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    color: #FFFFFF !important;
}

.woocommerce-order-received .woocommerce-customer-details p,
.woocommerce-order-received .woocommerce-customer-details address {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Thank you message */
.woocommerce-order-received .woocommerce-notice--success,
.woocommerce-order-received .woocommerce-thankyou-order-received {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    border-left: 4px solid #10b981;
    color: #065f46 !important;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Coupon message styling */
.woocommerce-order-received .appointment-coupon-message {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    border-left: 4px solid #10b981;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: #065f46 !important;
}

.woocommerce-order-received .appointment-coupon-message strong,
.woocommerce-order-received .appointment-coupon-message code,
.woocommerce-order-received .appointment-coupon-message small {
    color: #047857 !important;
}

/* Billing/Shipping address columns */
.woocommerce-order-received .woocommerce-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.woocommerce-order-received .woocommerce-column {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

/* Order again button */
.woocommerce-order-received .order-again .button {
    background-color: #E57B1D;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-default);
}

.woocommerce-order-received .order-again .button:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 123, 29, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-order-received {
        padding: 100px 0 40px;
    }

    .woocommerce-order-received .woocommerce-order {
        padding: 0 20px;
    }

    .woocommerce-order-received .woocommerce-order h1 {
        font-size: 2rem;
    }

    .woocommerce-order-received .woocommerce-order-overview,
    .woocommerce-order-received .woocommerce-customer-details,
    .woocommerce-order-received .woocommerce-order-details {
        padding: 1.5rem;
    }

    .woocommerce-order-received .woocommerce-table th,
    .woocommerce-order-received .woocommerce-table td {
        padding: 0.75rem !important;
        font-size: 0.9rem;
    }
}

/* === Login & Password Recovery Pages === */

.login-page {
    background-color: #091E28;
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo img {
    max-width: 200px;
    height: auto;
}

.login-title {
    font-family: var(--font-roboto-slab);
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-description {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.login-errors {
    background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
    border-left: 4px solid #dc2626;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.login-errors p {
    color: #991b1b;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.login-success {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    border-left: 4px solid #10b981;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.login-success p {
    color: #065f46;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.login-form {
    margin-bottom: 1.5rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.login-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: var(--transition-default);
}

.login-form .form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #E57B1D;
    box-shadow: 0 0 0 3px rgba(229, 123, 29, 0.1);
}

.login-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field .form-control {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition-default);
}

.toggle-password:hover {
    color: #E57B1D;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

fieldset {
    border: none !important;
}

/* Stripe Elements Wrapper Styling - Fuerza el tema oscuro */
/* Aplica a todos los contenedores de Stripe Elements */
.woocommerce-checkout .wc-stripe-elements-field,
.woocommerce-checkout .wc-stripe-iban-element-field,
.woocommerce-checkout #stripe-card-element,
.woocommerce-checkout #stripe-exp-element,
.woocommerce-checkout #stripe-cvc-element,
.woocommerce-checkout #stripe-iban-element,
.woocommerce-checkout .stripe-card-group,
form.checkout #stripe-card-element,
form.checkout #stripe-exp-element,
form.checkout #stripe-cvc-element,
.payment_method_stripe .form-row,
.payment_method_stripe #wc-stripe-cc-form,
li.wc_payment_method.payment_method_stripe {
    background-color: #2a3844 !important;
    border: 1px solid #374151 !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    min-height: 44px !important;
    transition: all 0.3s ease !important;
}

/* Estado focus para los contenedores */
.woocommerce-checkout .wc-stripe-elements-field:focus-within,
.woocommerce-checkout #stripe-card-element:focus-within,
.woocommerce-checkout #stripe-exp-element:focus-within,
.woocommerce-checkout #stripe-cvc-element:focus-within,
form.checkout #stripe-card-element:focus-within,
form.checkout #stripe-exp-element:focus-within,
form.checkout #stripe-cvc-element:focus-within {
    border-color: #E57B1D !important;
    box-shadow: 0 0 0 3px rgba(229, 123, 29, 0.1) !important;
    background-color: #2a3844 !important;
}

/* Grupo de campos de tarjeta si existe */
.woocommerce-checkout .stripe-card-group {
    display: flex;
    gap: 10px;
}

/* Asegurar que el iframe dentro también tenga el fondo transparente */
.wc-stripe-elements-field iframe,
#stripe-card-element iframe,
#stripe-exp-element iframe,
#stripe-cvc-element iframe {
    background-color: transparent !important;
}

/* Forzar fondo oscuro en el método de pago Stripe completo */
.wc_payment_method.payment_method_stripe {
    background-color: #1e2b37 !important;
}

.payment_method_stripe .payment_box {
    background-color: rgba(229, 123, 29, 0.1) !important;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.lost-password-link {
    color: #E57B1D;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-default);
}

.lost-password-link:hover {
    color: #d97706;
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    background-color: #E57B1D;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: var(--transition-default);
}

.btn-login:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 123, 29, 0.3);
}

.login-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.login-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.back-to-login {
    display: inline-block;
    color: #E57B1D;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-default);
}

.back-to-login:hover {
    color: #d97706;
    text-decoration: underline;
}

/* Reset success page */
.reset-success {
    text-align: center;
    padding: 2rem 0;
}

.reset-success svg {
    margin-bottom: 1.5rem;
}

.reset-success h1 {
    margin-bottom: 1rem;
}

.reset-success p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive login */
@media (max-width: 768px) {
    .login-page {
        padding: 100px 15px 40px;
    }

    .login-box {
        padding: 2rem 1.5rem;
    }

    .login-title {
        font-size: 1.75rem;
    }

    .login-logo img {
        max-width: 160px;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

.checkout-dark-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-page-header {
    margin-bottom: 40px;
}

.checkout-page-header h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-white);
    font-weight: 600;
}

/* Grid Layout - 2 Columns */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Main Column (Left) */
.checkout-main-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Checkout Sections */
.checkout-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.checkout-section .section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section .section-icon {
    color: var(--color-accent);
    flex-shrink: 0;
}

.checkout-section .section-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form Row Groups (2 columns) */
.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Form Fields */
.checkout-section .form-row {
    margin-bottom: 0;
}

.checkout-section label {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.checkout-section .required {
    color: var(--color-accent);
}

.checkout-section input[type=\"text\"],
.checkout-section input[type=\"email\"],
.checkout-section input[type=\"tel\"],
.checkout-section input[type=\"number\"],
.checkout-section select,
.checkout-section textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.checkout-section input[type=\"text\"]:focus,
.checkout-section input[type=\"email\"]:focus,
.checkout-section input[type=\"tel\"]:focus,
.checkout-section input[type=\"number\"]:focus,
.checkout-section select:focus,
.checkout-section textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(229, 123, 29, 0.1);
}

.checkout-section input::placeholder,
.checkout-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Select Styling */
.checkout-section select {
    cursor: pointer;
    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='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E\");*/
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* Sidebar Column (Right) */
.checkout-sidebar-column {
    position: sticky;
    top: 100px;
}

.checkout-summary-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-summary-wrapper .summary-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    font-weight: 600;
    margin: 0 0 20px 0;
}

/* Order Review */
.woocommerce-checkout-review-order {
    color: var(--color-white);
}

.woocommerce-checkout-review-order table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout-review-order th,
.woocommerce-checkout-review-order td {
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-checkout-review-order thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.woocommerce-checkout-review-order .product-name,
.woocommerce-checkout-review-order-table .product-name {
    color: var(--color-white) !important;
    font-weight: 400;
}

.woocommerce-checkout-review-order .product-total,
.woocommerce-checkout-review-order .order-total {
    color: var(--color-accent);
    font-weight: 600;
    text-align: right;
}

.woocommerce-checkout-review-order tfoot {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.woocommerce-checkout-review-order tfoot th {
    font-size: 16px;
    font-weight: 600;
    padding-top: 20px;
}

.woocommerce-checkout-review-order tfoot td {
    font-size: 18px;
    font-weight: 600;
    padding-top: 20px;
}

/* Payment Methods */
.woocommerce-checkout-payment {
    margin-top: 20px;
}

.woocommerce-checkout-payment .wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.woocommerce-checkout-payment .wc_payment_method {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.woocommerce-checkout-payment .wc_payment_method:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.woocommerce-checkout-payment .wc_payment_method label {
    color: var(--color-white);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.woocommerce-checkout-payment .wc_payment_method input[type=\"radio\"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.woocommerce-checkout-payment .payment_box {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 16px;
    margin-top: 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Place Order Button */
.checkout-section .button,
.checkout-sidebar-column .button,
#place_order {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-section .button:hover,
.checkout-sidebar-column .button:hover,
#place_order:hover {
    background-color: #c96819;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 123, 29, 0.3);
}

/* Form Labels Improvement */
.woocommerce-billing-fields__field-wrapper::before,
.woocommerce-billing-fields__field-wrapper::after,
.woocommerce form .form-row::before,
.woocommerce form .form-row::after,
.woocommerce-page form .form-row::before,
.woocommerce-page form .form-row::after {
    display: none !important;
    content: none !important;
}

/* Hide empty Additional Information section */
.woocommerce-additional-fields {
    display: none !important;
}

/* Hide default order review heading (we have custom one inside) */
#order_review_heading {
    display: none !important;
}

.checkout-section .form-row {
    display: block !important;
    /* Override WooCommerce grid on individual fields */
    margin-bottom: 20px;
}

.checkout-section label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.checkout-section .form-row-first,
.checkout-section .form-row-last {
    margin-bottom: 20px;
}

/* Privacy Policy */
.woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
}

.woocommerce-privacy-policy-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
}

.woocommerce-privacy-policy-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-sidebar-column {
        position: static;
    }

    .form-row-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checkout-dark-wrapper {
        padding: 30px 15px;
    }

    .checkout-page-header h1 {
        font-size: 28px;
    }

    .checkout-section {
        padding: 20px;
    }

    .checkout-summary-wrapper {
        padding: 20px;
    }
}

/* Override default WooCommerce styles */
.woocommerce form .form-row {
    padding: 0;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    width: 100%;
    float: none;
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

.checkout-dark-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-page-header {
    margin-bottom: 40px;
}

.checkout-page-header h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-white);
    font-weight: 600;
}

/* Grid Layout - 2 Columns */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Main Column (Left) */
.checkout-main-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Checkout Sections */
.checkout-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-section .section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section .section-icon {
    color: var(--color-accent);
}

.checkout-section .section-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form Row Groups (2 columns) */
.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Form Fields */
.checkout-section .form-row {
    margin-bottom: 0;
}

.checkout-section label {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.checkout-section .required {
    color: var(--color-accent);
}

.checkout-section input[type="text"],
.checkout-section input[type="email"],
.checkout-section input[type="tel"],
.checkout-section input[type="number"],
.checkout-section select,
.checkout-section textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.checkout-section input:focus,
.checkout-section select:focus,
.checkout-section textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(229, 123, 29, 0.1);
}

/* Sidebar Column (Right) */
.checkout-sidebar-column {
    position: sticky;
    top: 100px;
}

.checkout-summary-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-summary-wrapper .summary-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    font-weight: 600;
    margin: 0 0 20px 0;
}

/* Order Review */
.woocommerce-checkout-review-order {
    color: var(--color-white);
}

.woocommerce-checkout-review-order table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout-review-order th,
.woocommerce-checkout-review-order td {
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-checkout-review-order thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.woocommerce-checkout-review-order .product-total,
.woocommerce-checkout-review-order .order-total {
    color: var(--color-accent);
    font-weight: 600;
    text-align: right;
}

/* Payment Methods */
.woocommerce-checkout-payment .wc_payment_method {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 16px;
}

.woocommerce-checkout-payment .wc_payment_method label {
    color: var(--color-white);
    font-weight: 600;
}

.woocommerce-checkout-payment .payment_box {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 16px;
    margin-top: 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
}

/* Place Order Button */
#place_order {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--color-accent);
    color: var(--color-white) !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(229, 123, 29, 0.3);
}

#place_order:hover {
    background-color: #c96819;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(229, 123, 29, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .form-row-group {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CHECKOUT PAGE TEMPLATE ADDITIONAL STYLES
   ============================================ */

/* Page Section Styles (for non-checkout/cart pages) */
.page-section {
    padding: 120px 0 80px;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.page-title {
    font-family: var(--font-roboto-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 60px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.page-image {
    width: 100%;
}

.page-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-text p {
    font-family: var(--font-lato);
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-white);
    margin: 0;
}

/* Checkout-specific content styles */
.checkout-title {
    font-family: var(--font-roboto-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.checkout-content {
    position: relative;
    z-index: 2;
}

.checkout-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-text p {
    font-family: var(--font-lato);
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-white);
    margin: 0;
}

/* Responsive for page section */
@media (max-width: 1024px) {
    .page-section {
        padding: 100px 0 60px;
    }

    .page-title,
    .checkout-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .page-content {
        gap: 60px;
    }

    .page-text p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 90px 0 50px;
    }

    .page-title,
    .checkout-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-text p,
    .checkout-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-section {
        padding: 80px 0 40px;
    }

    .page-title,
    .checkout-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-content {
        gap: 30px;
    }

    .page-text p,
    .checkout-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .services-page__cta-content {
        padding-top: 100px;
    }

    .services-page__cta {
        width: 100%;
        padding-right: 40px;
    }
}

/* === Mockup Alignment: Home / Contacto / Quienes Somos === */
body.home .about__title-wrapper {
    background: #282524;
    padding-top: 26px;
}

body.home .about__section-title {
    color: #f7f3ea;
    font-family: var(--font-roboto-slab);
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0;
}

body.home .section.section--about {
    background: #282524;
    padding: 20px 0 48px;
}

body.home .about__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(18px, 2.2vw, 30px);
    align-items: center;
    padding: 20px 0;
}

body.home .about__image-wrapper {
    max-width: 442px;
}

body.home .about__image {
    width: 100%;
    border-radius: 15px;
}

body.home .about__title {
    color: #d2ad57;
    font-family: var(--font-roboto-slab);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    margin-bottom: 16px;
}

body.home .about__text {
    color: #fff;
    font-size: clamp(1rem, 1.45vw, 1.2rem);
    line-height: 1.35;
    margin-bottom: 10px;
}

body.home .about__stats {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

body.home .about__stat {
    border: 1px solid #d2ad57;
    border-radius: 12px;
    min-width: 110px;
    padding: 12px 14px;
    background: rgba(40, 37, 36, 0.92);
}

body.home .about__stat-number {
    color: #d2ad57;
    font-family: var(--font-roboto-slab);
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
    line-height: 1;
    margin-bottom: 6px;
}

body.home .about__stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

body.home .contact-figma-title {
    color: #f7f3ea;
    font-family: var(--font-roboto-slab);
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 22px;
}

body.home .contact-figma-card {
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    padding: clamp(20px, 2.4vw, 44px);
}

body.home .contact-figma-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 1px minmax(300px, 1fr);
    gap: clamp(20px, 2.5vw, 42px);
}

body.home .contact-figma-divider {
    background: rgba(255, 255, 255, 0.35);
}

body.home .contact-figma-fields .form-group label {
    color: #f7f3ea;
    font-family: var(--font-roboto-slab);
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    margin-bottom: 6px;
}

body.home .contact-figma-fields input,
body.home .contact-figma-fields select {
    width: 100%;
    border-radius: 25px;
    border: 0;
    min-height: 44px;
    background: #bababa;
    color: rgba(40, 37, 36, 0.9);
    padding: 0 14px;
    font-size: 1rem;
}

body.home .btn-submit--figma {
    width: 100%;
    max-width: 320px;
    margin: 16px auto 0;
    border: 0;
    border-radius: 8px;
    min-height: 50px;
    background: #d2ad57;
    color: #282524;
    font-family: var(--font-roboto-slab);
    font-size: clamp(1.1rem, 1.4vw, 1.5rem);
}

.page-template-page-contacto .contact-hero {
    margin-top: 0;
}

.page-template-page-contacto .contact-hero__content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.page-template-page-contacto .contact-hero__title {
    color: #fff;
    font-family: var(--font-roboto-slab);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    margin-bottom: 8px;
}

.page-template-page-contacto .contact-hero__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.3vw, 1.4rem);
    max-width: 820px;
}

.page-template-page-contacto .contact-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.page-template-page-contacto .contact-hero__buttons .btn--primary,
.page-template-page-contacto .contact-hero__buttons .btn--secondary {
    min-height: 52px;
    min-width: 220px;
    border-radius: 999px;
    font-family: var(--font-roboto-slab);
}

.page-template-page-contacto .contact-hero__buttons .btn--primary {
    background: #d2ad57;
    color: #fff;
}

.page-template-page-contacto .contact-hero__buttons .btn--secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.page-template-page-contacto .faq-grid--static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.page-template-page-contacto .faq-item--static {
    background: #edece8;
    border-radius: 8px;
    padding: 24px 20px;
}

.page-template-page-contacto .faq-item--static .faq-item__question {
    color: #2d2d2d;
    font-family: var(--font-roboto-slab);
    margin-bottom: 12px;
}

.page-template-page-contacto .faq-item--static .faq-item__answer {
    color: #333;
    line-height: 1.35;
}

.page-template-page-contacto .ivm-legal-notice__box {
    background: #cfccc5;
    border-radius: 22px;
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
}

.page-template-page-contacto .ivm-legal-notice__icon {
    width: 96px;
    height: 96px;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-template-page-quienes-somos .page-about {
    background: linear-gradient(90deg, #282524 0%, #2f2a29 100%);
    padding: clamp(64px, 7vw, 110px) 0 clamp(40px, 5vw, 68px);
}

.page-template-page-quienes-somos .page-about__grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(26px, 3.4vw, 56px);
}

.page-template-page-quienes-somos .page-about__image {
    width: 100%;
    aspect-ratio: 588 / 588;
    object-fit: cover;
    border-radius: 25px;
}

.page-template-page-quienes-somos .page-about__title {
    color: #d2ad57;
    font-family: var(--font-roboto-slab);
}

.page-template-page-quienes-somos .page-about__stat {
    background: #d2ad57;
    border-radius: 15px;
    border: 0;
}

.page-template-page-quienes-somos .page-about__stat-number,
.page-template-page-quienes-somos .page-about__stat-label {
    color: #282524;
}

@media (max-width: 1024px) {
    body.home .about__grid,
    body.home .contact-figma-grid,
    .page-template-page-quienes-somos .page-about__grid,
    .page-template-page-contacto .faq-grid--static {
        grid-template-columns: 1fr;
    }

    body.home .contact-figma-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-template-page-contacto .ivm-legal-notice__box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-template-page-contacto .ivm-legal-notice__icon {
        margin: 0 auto;
    }
}

/* === Mockup Fidelity Pass: Home, Contacto, Quienes Somos === */
body.home .about__title-wrapper {
    padding-top: 40px;
    padding-bottom: 20px;
}

body.home .section.section--about {
    background-color: #1c1a19;
    padding: 60px 0;
}

body.home .about__section-title {
    color: #fff;
    font-family: var(--font-roboto-serif);
    font-size: 32px;
    font-weight: 600;
}

body.home .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

body.home .about__image {
    border-radius: 8px;
}

body.home .about__content {
    position: relative;
    padding: 40px;
    background-image: url('assets/images/logo-2.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

body.home .about__title {
    color: #d2ad57;
    font-family: var(--font-roboto-serif);
    font-size: 38px;
    margin-bottom: 24px;
}

body.home .about__text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

body.home .about__stats {
    display: flex;
    gap: 40px;
    margin-top: 0;
}

body.home .about__stat {
    background: transparent;
    border: 0;
    padding: 0;
    min-width: 0;
    text-align: center;
}

body.home .about__stat-number {
    width: 100px;
    height: 100px;
    border: 3px solid #d2ad57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #d2ad57;
    font-size: 32px;
    font-family: var(--font-roboto-serif);
}

body.home .about__stat-label {
    color: #d2ad57;
    font-size: 14px;
}

.page-template-page-contacto .contact-hero {
    margin-top: 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-template-page-contacto .contact-hero__image {
    height: 100%;
    min-height: 60vh;
}

.page-template-page-contacto .contact-hero__overlay {
    inset: 0;
    height: auto;
    background: linear-gradient(to top, rgba(40, 37, 36, 0.92), rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.3));
}

.page-template-page-contacto .contact-hero__content {
    max-width: 650px;
}

.page-template-page-contacto .contact-hero__title {
    color: #fff;
    font-family: var(--font-roboto-serif);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-template-page-contacto .contact-hero__text {
    color: #fff;
    font-size: 23px;
    line-height: 1.6;
}

.page-template-page-contacto .contact-hero__buttons {
    justify-content: center;
    margin-top: 32px;
}

.page-template-page-contacto .contact-hero__buttons .btn--primary {
    padding: 14px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.page-template-page-contacto .contact-hero__buttons .btn--primary:hover,
.page-template-page-contacto .contact-hero__buttons .btn--secondary:hover {
    transform: scale(1.05);
}

.page-template-page-contacto .contact-hero__buttons .btn--secondary {
    padding: 12px 26px;
}

.page-template-page-contacto .contact-main {
    background: #282524;
    padding: 80px 0;
}

.page-template-page-contacto .contact-main__grid {
    gap: 40px;
}

.page-template-page-contacto .contact-main__form-wrapper,
.page-template-page-contacto .contact-main__map,
.page-template-page-contacto .contact-main__details {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-template-page-contacto .contact-main__form-wrapper {
    padding: 40px 35px;
}

.page-template-page-contacto .contact-main__form-title {
    color: #282524;
    font-family: var(--font-lato);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-template-page-contacto .contact-main__form .form-group {
    margin-bottom: 20px;
}

.page-template-page-contacto .contact-main__form .form-group label {
    color: #1a1818;
    font-size: 14px;
    font-weight: 500;
}

.page-template-page-contacto .contact-main__form .form-group input,
.page-template-page-contacto .contact-main__form .form-group select {
    background: #d9d9d9;
    border: 0;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #1a1818;
}

.page-template-page-contacto .contact-main__map {
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.page-template-page-contacto .contact-main__map iframe {
    min-height: 300px;
}

.page-template-page-contacto .contact-main__map-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.95);
    color: #282524;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.page-template-page-contacto .contact-main__details {
    padding: 25px 20px;
    gap: 20px;
}

.page-template-page-contacto .contact-detail {
    align-items: flex-start;
    gap: 14px;
}

.page-template-page-contacto .contact-detail__icon {
    color: #d2ad57;
    flex-shrink: 0;
    margin-top: 2px;
}

.page-template-page-contacto .contact-detail__label {
    color: #1a1818;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.page-template-page-contacto .contact-detail__value {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.5;
}

.page-template-page-contacto .faq-section {
    background: #282524;
    padding: 80px 0;
}

.page-template-page-contacto .faq-section__title {
    color: #fff;
    font-family: var(--font-roboto-serif);
    font-size: 32px;
    margin-bottom: 50px;
}

.page-template-page-contacto .faq-item--static {
    background: #fff;
    border-radius: 12px;
    padding: 25px 28px;
}

.page-template-page-contacto .faq-item--static .faq-item__question {
    color: #1a1818;
    font-family: var(--font-roboto-serif);
    font-size: 17px;
    margin-bottom: 12px;
}

.page-template-page-contacto .faq-item--static .faq-item__answer {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
}

.page-template-page-quienes-somos .page-about {
    background-color: #282524;
    padding: 80px 0;
}

.page-template-page-quienes-somos .page-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-template-page-quienes-somos .page-about__image {
    border-radius: 8px;
}

.page-template-page-quienes-somos .page-about__content {
    padding: 20px 0;
}

.page-template-page-quienes-somos .page-about__title {
    color: #d2ad57;
    font-family: var(--font-roboto-serif);
    font-size: 42px;
    margin-bottom: 28px;
}

.page-template-page-quienes-somos .page-about__text {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-template-page-quienes-somos .page-about__text:last-of-type {
    margin-bottom: 40px;
}

.page-template-page-quienes-somos .page-about__stats {
    gap: 30px;
}

.page-template-page-quienes-somos .page-about__stat {
    text-align: center;
    background: transparent;
    border: 0;
}

.page-template-page-quienes-somos .page-about__stat-number {
    background: #d2ad57;
    color: #282524;
    border-radius: 8px;
    min-width: 100px;
    padding: 16px 24px;
    font-size: 28px;
    margin-bottom: 12px;
}

.page-template-page-quienes-somos .page-about__stat-label {
    color: #fff;
    font-size: 13px;
}

@media (max-width: 900px) {
    body.home .about__grid,
    .page-template-page-quienes-somos .page-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    body.home .about__content {
        padding: 30px 20px;
        background-size: 40%;
    }

    .page-template-page-contacto .contact-main__grid,
    .page-template-page-contacto .faq-grid--static {
        grid-template-columns: 1fr;
    }

    .page-template-page-contacto .contact-main__map {
        min-height: 220px;
    }

    .page-template-page-contacto .contact-main__form-wrapper {
        padding: 30px 25px;
    }

    .page-template-page-quienes-somos .page-about__title {
        font-size: 36px;
    }

    .page-template-page-quienes-somos .page-about__stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    body.home .about__section-title {
        font-size: 26px;
        text-align: center;
    }

    body.home .about__title {
        font-size: 24px;
    }

    body.home .about__text,
    .page-template-page-quienes-somos .page-about__text {
        font-size: 14px;
    }

    body.home .about__stat-number {
        width: 75px;
        height: 75px;
        font-size: 24px;
        border-width: 2px;
    }

    .page-template-page-contacto .faq-section {
        padding: 50px 0;
    }

    .page-template-page-contacto .faq-section__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .page-template-page-contacto .contact-main {
        padding: 60px 0;
    }

    .page-template-page-contacto .contact-main__form-wrapper {
        padding: 25px 20px;
    }

    .page-template-page-contacto .contact-main__form-title {
        font-size: 16px;
    }

    .page-template-page-contacto .contact-main__map {
        min-height: 200px;
    }

    .page-template-page-contacto .contact-main__details {
        padding: 20px 16px;
    }

    .page-template-page-contacto .contact-detail__icon {
        width: 32px;
        height: 32px;
    }

    .page-template-page-quienes-somos .page-about {
        padding: 60px 0;
    }

    .page-template-page-quienes-somos .page-about__title {
        font-size: 28px;
    }

    .page-template-page-quienes-somos .page-about__stats {
        gap: 20px;
    }

    .page-template-page-quienes-somos .page-about__stat-number {
        font-size: 22px;
        padding: 10px 18px;
        min-width: 75px;
    }

    .page-template-page-quienes-somos .page-about__stat-label {
        font-size: 11px;
    }
}

/* === Mockup Vertical Rhythm Final Pass === */
body.home .success-stories {
    padding: 70px 0 30px;
}

body.home .success-stories .section-title {
    font-family: var(--font-roboto-serif);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 40px 30px;
    margin: 0;
}

body.home .testimonials-slider {
    background: #ffffff;
    padding: 60px 0;
}

body.home .testimonial-slide {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 60px;
}

body.home .testimonial-content {
    text-align: left;
    max-width: none;
    order: 2;
}

body.home .testimonial-image {
    justify-content: center;
    order: 1;
}

body.home .testimonial-image img {
    max-width: 380px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body.home .testimonial-name {
    font-family: var(--font-roboto-serif);
    font-size: 28px;
    color: #c9a45a;
    margin-bottom: 4px;
    line-height: 1.2;
}

body.home .testimonial-text {
    font-family: var(--font-lato);
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    border-left: 4px solid #d2ad57;
    padding-left: 20px;
}

body.home .slider-arrow {
    width: 40px;
    height: 40px;
    background: #d9d9d9;
    color: #000;
}

body.home .slider-arrow.prev-arrow {
    left: 20px;
}

body.home .slider-arrow.next-arrow {
    right: 20px;
}

body.home .slider-dots {
    gap: 12px;
    margin-top: 28px;
}

body.home .slider-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(11, 11, 11, 0.2);
}

body.home .slider-dot.active {
    background: #c9a45a;
    width: 14px;
    height: 14px;
}

body.home .about__title-wrapper {
    margin-top: 0;
}

body.home .contact {
    padding: 80px 0;
}

body.home .contact .container {
    padding: 0 20px;
}

body.home .contact-figma-title {
    margin-bottom: 40px;
}

body.home .contact-figma-card {
    padding: 50px 45px;
}

.page-template-page-contacto .page-cta,
.page-template-page-quienes-somos .page-cta {
    padding: 80px 0;
}

.page-template-page-contacto .page-cta__wrapper,
.page-template-page-quienes-somos .page-cta__wrapper {
    padding: 50px 60px;
}

@media (max-width: 900px) {
    body.home .success-stories {
        padding: 60px 0 24px;
    }

    body.home .success-stories .section-title {
        padding: 0 20px 24px;
    }

    body.home .testimonials-slider {
        padding: 50px 0;
    }

    body.home .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 40px;
    }

    body.home .testimonial-content,
    body.home .testimonial-image {
        order: initial;
    }

    body.home .testimonial-image img {
        max-width: 280px;
    }

    body.home .testimonial-name {
        font-size: 24px;
    }

    body.home .testimonial-text {
        font-size: 15px;
    }

    body.home .contact-figma-card {
        padding: 40px 35px;
    }

    .page-template-page-contacto .page-cta__wrapper,
    .page-template-page-quienes-somos .page-cta__wrapper {
        padding: 40px 35px;
        text-align: center;
    }
}

@media (max-width: 520px) {
    body.home .success-stories {
        padding: 50px 0 20px;
    }

    body.home .success-stories .section-title {
        padding: 0 16px 20px;
    }

    body.home .testimonials-slider {
        padding: 40px 0;
    }

    body.home .testimonial-slide {
        gap: 25px;
        padding: 0 20px;
    }

    body.home .testimonial-image img {
        max-width: 240px;
    }

    body.home .testimonial-name {
        font-size: 20px;
    }

    body.home .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 16px;
    }

    body.home .slider-arrow {
        width: 34px;
        height: 34px;
    }

    body.home .contact {
        padding: 60px 0;
    }

    body.home .contact-figma-title {
        margin-bottom: 30px;
    }

    body.home .contact-figma-card {
        padding: 30px 25px;
    }

    .page-template-page-contacto .page-cta,
    .page-template-page-quienes-somos .page-cta {
        padding: 60px 0;
    }

    .page-template-page-contacto .page-cta__wrapper,
    .page-template-page-quienes-somos .page-cta__wrapper {
        padding: 30px 25px;
    }
}

/* === Home Contact Booking Final Typography Pass === */
body.home .contact-figma-title {
    color: #f7f3ea;
    font-family: var(--font-roboto-serif);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
}

body.home .contact-figma-card {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 180, 102, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    padding: 50px 45px;
}

body.home .contact-figma-fields .form-group label {
    color: #f7f3ea;
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

body.home .contact-figma-fields input,
body.home .contact-figma-fields select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-height: 46px;
    padding: 14px 16px;
    color: #f7f3ea;
    font-family: var(--font-lato);
    font-size: 14px;
}

body.home .contact-figma-fields input:focus,
body.home .contact-figma-fields select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #c9a45a;
    outline: none;
}

body.home .contact-figma-fields select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

body.home .contact-figma-meta__item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
}

body.home .contact-figma-meta__item--time {
    color: #f7f3ea;
    font-size: 14px;
}

body.home .btn-submit--figma {
    background: #c9a45a;
    color: #282524;
    border-radius: 8px;
    min-height: 52px;
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 600;
    max-width: none;
}

@media (max-width: 900px) {
    body.home .contact-figma-card {
        padding: 35px 25px;
    }
}

@media (max-width: 520px) {
    body.home .contact-figma-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    body.home .contact-figma-card {
        padding: 30px 22px;
    }
}

/* === Final Micro Fidelity: Contact Hero + About Stats === */
.page-template-page-quienes-somos .page-about__stat-number {
    font-weight: 700;
    line-height: 1;
}

.page-template-page-quienes-somos .page-about__stat-label {
    font-weight: 400;
    line-height: 1.4;
}

.page-template-page-contacto .page-cta__title,
.page-template-page-quienes-somos .page-cta__title {
    font-family: var(--font-roboto-serif);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.page-template-page-contacto .page-cta__text,
.page-template-page-quienes-somos .page-cta__text {
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-template-page-contacto .contact-hero {
        min-height: 50vh;
    }

    .page-template-page-contacto .contact-hero__title {
        font-size: 36px;
    }

    .page-template-page-contacto .contact-hero__text {
        font-size: 20px;
    }

    .page-template-page-contacto .contact-hero__buttons {
        margin-top: 24px;
        flex-direction: column;
        width: 100%;
    }

    .page-template-page-contacto .contact-hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .page-template-page-contacto .contact-hero__title {
        font-size: 28px;
    }

    .page-template-page-contacto .contact-hero__text {
        font-size: 18px;
    }

    .page-template-page-contacto .page-cta__title,
    .page-template-page-quienes-somos .page-cta__title {
        font-size: 22px;
    }

    .page-template-page-contacto .page-cta__text,
    .page-template-page-quienes-somos .page-cta__text {
        font-size: 14px;
        line-height: 1.5;
    }
}