/* ===================================
   MARIANA BEAUTY ART - Styles
   Maquilladora Profesional de Novias
   Madrid, España
   Nueva Paleta: Elegancia Terrenal
   =================================== */

/* Variables CSS - Nueva paleta ampliada */
:root {
    /* Colores Principales - Nueva paleta earthy elegante */
    --alabaster: #F9F7F2;
    --white: #FFFFFF;
    --white-soft: #FAFAFA;
    --white-light: #F8F8F8;
    
    /* Rosa/Old Rose - Versión más sofisticada */
    --old-rose: #C08B87;
    --old-rose-light: #D4A5A5;
    --old-rose-dark: #A65D67;
    --old-rose-pale: #F0E6E6;
    
    /* Acentos earthy - Verde salvia */
    --sage: #8F9779;
    --sage-light: #A8B09A;
    --sage-dark: #6B7560;
    --sage-pale: #E8EDE4;
    
    /* Tonos neutros cálidos */
    --warm-charcoal: #4A403A;
    --taupe: #7A6F66;
    --sand: #C4B8A8;
    --beige: #D4C4B0;
    
    /* Metálico */
    --champagne-gold: #D4AF37;
    --champagne-light: #E8D5A3;
    
    /* Colores de Texto */
    --text-primary: #4A403A;
    --text-secondary: #7A6F66;
    --text-light: #9C9188;
    
    /* Colores de Fondo */
    --bg-primary: #F9F7F2;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F0E6E6;
    --bg-sage: #E8EDE4;
    
    /* Sombras */
    --shadow-soft: 0 4px 20px rgba(74, 64, 58, 0.08);
    --shadow-medium: 0 8px 30px rgba(74, 64, 58, 0.12);
    --shadow-strong: 0 12px 40px rgba(74, 64, 58, 0.15);
    
    /* Tipografía */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Cinzel Decorative', serif;
    --font-secondary: 'Lato', sans-serif;
    
    /* Transiciones */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.7s ease;
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
}

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

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

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
}

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

ul {
    list-style: none;
}

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

/* Contenedor */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    padding: 10px 0;
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--old-rose);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--old-rose);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--old-rose);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-small);
    font-weight: 500 !important;
}

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

.nav-cta:hover {
    background-color: var(--old-rose-dark) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 5px;
}

/* ===================================
   BOTONES
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-small);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--old-rose);
    color: var(--white);
    border-color: var(--old-rose);
}

.btn-primary:hover {
    background-color: var(--old-rose-dark);
    border-color: var(--old-rose-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--old-rose);
    border-color: var(--old-rose);
}

.btn-secondary:hover {
    background-color: var(--old-rose);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--old-rose);
    border-color: var(--old-rose);
}

.btn-outline:hover {
    background-color: var(--old-rose);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--alabaster) 0%, var(--old-rose-pale) 50%, var(--bg-sage) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(192, 139, 135, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--old-rose);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(74, 64, 58, 0.8) 0%, transparent 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.hero-img-container:hover .hero-overlay {
    opacity: 1;
}

.hero-img-container:hover .hero-img {
    transform: scale(1.05);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--old-rose);
    box-shadow: var(--shadow-soft);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--old-rose);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background-color: var(--white);
}

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

.about-image {
    position: relative;
}

.about-img-container {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-strong);
    animation: pulse 3s infinite;
}

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

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text .about-intro {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--bg-sage);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-soft);
}

.feature i {
    color: var(--sage-dark);
    font-size: 1.1rem;
}

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

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    background-color: var(--alabaster);
}

.services-subsection {
    margin-bottom: 60px;
}

.services-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-top: 20px;
    text-align: center;
}

.subsection-description {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Packages Grid - Wedding Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    position: relative;
    border: 1px solid rgba(192, 139, 135, 0.15);
}

.package-card:last-child {
    margin-bottom: 0;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.package-card.featured {
    border-color: var(--old-rose);
    background: linear-gradient(135deg, var(--white) 0%, var(--old-rose-pale) 100%);
    transform: scale(1.05);
    z-index: 1;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--old-rose-pale);
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.package-tag {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.package-features {
    margin-bottom: 25px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.package-features li i {
    color: var(--sage-dark);
    margin-top: 4px;
    flex-shrink: 0;
}

.package-features li i.fa-times {
    color: #ccc;
}

.package-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .package-card {
        margin-bottom: 0;
    }
    
    .package-card.featured {
        transform: none;
        order: -1;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    position: relative;
    border: 1px solid rgba(192, 139, 135, 0.15);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card.featured {
    border-color: var(--old-rose);
    background: linear-gradient(135deg, var(--white) 0%, var(--old-rose-pale) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--old-rose-dark) 100%);
    color: var(--white);
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-small);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--old-rose-pale) 0%, var(--bg-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--old-rose);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-benefits {
    margin-bottom: 30px;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-benefits li i {
    color: var(--sage-dark);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Service Highlight Card - Prueba de Maquillaje */
.service-highlight-card {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    position: relative;
    border: 1px solid rgba(192, 139, 135, 0.15);
}

.service-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.highlight-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.highlight-content ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 25px;
}

.highlight-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.highlight-content ul li i {
    color: var(--sage-dark);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.highlight-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--old-rose-pale);
    border-radius: var(--radius-small);
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio {
    background-color: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background-color: transparent;
    border: 2px solid var(--old-rose-pale);
    border-radius: var(--radius-small);
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--old-rose);
    border-color: var(--old-rose);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-medium);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(74, 64, 58, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay i {
    font-size: 2rem;
    color: var(--white);
    transform: scale(0.8);
    transition: var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay i {
    transform: scale(1);
}

.portfolio-cta {
    text-align: center;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--old-rose-pale) 100%);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition-medium);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--old-rose-pale);
    line-height: 1;
    margin-bottom: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.step-details {
    border-top: 1px solid var(--old-rose-pale);
    padding-top: 20px;
}

.step-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.step-details li i {
    color: var(--sage-dark);
    font-size: 0.8rem;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.process-connector i {
    font-size: 2rem;
    color: var(--old-rose);
    opacity: 0.5;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    background-color: var(--old-rose-pale);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--champagne-gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--sage);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-primary);
}

.author-event {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background-color: var(--alabaster);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--old-rose-pale) 0%, var(--bg-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--old-rose);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--old-rose);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--old-rose-dark);
}

.contact-form-container {
    background-color: var(--white);
    padding: 45px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    border: 1px solid #E0E0E0;
    border-radius: var(--radius-small);
    background-color: var(--white);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--old-rose);
    box-shadow: 0 0 0 3px rgba(192, 139, 135, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--warm-charcoal);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--sage) 100%);
    transform: translateY(-3px);
}

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

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

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--old-rose-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom i {
    color: var(--old-rose-light);
}

/* ===================================
   WHATSAPP FLOTANTE
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

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

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-small);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--old-rose);
}

/* ===================================
   MOBILE-FIRST BASE STYLES
   Optimizado para dispositivos móviles
   =================================== */

/* Reset y Base Mobile-First */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    loading: lazy;
    decoding: async;
}

/* ===================================
   CONTENEDOR MOBILE
   =================================== */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===================================
   NAVBAR MOBILE
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(249, 247, 242, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 12px 0;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.nav-toggle {
    display: flex;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-small);
    background-color: rgba(192, 139, 135, 0.1);
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--alabaster);
    flex-direction: column;
    padding: 20px 15px;
    gap: 5px;
    box-shadow: var(--shadow-medium);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 999;
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 12px 15px;
    border-radius: var(--radius-small);
    display: block;
}

.nav-link:hover {
    background-color: rgba(192, 139, 135, 0.1);
    color: var(--old-rose);
}

.nav-cta {
    background-color: var(--old-rose) !important;
    color: var(--white) !important;
    margin-top: 10px;
    text-align: center;
    font-weight: 500 !important;
}

/* ===================================
   BOTONES OPTIMIZADOS PARA MÓVIL
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-small);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    min-height: 54px;
    min-width: 44px;
}

.btn-primary {
    background-color: var(--old-rose);
    color: var(--white);
    border-color: var(--old-rose);
}

.btn-primary:hover {
    background-color: var(--old-rose-dark);
    border-color: var(--old-rose-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--old-rose);
    border-color: var(--old-rose);
}

.btn-outline {
    background-color: transparent;
    color: var(--old-rose);
    border-color: var(--old-rose);
    min-height: 54px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   HERO SECTION MOBILE
   =================================== */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 15px 60px;
    background: linear-gradient(180deg, var(--alabaster) 0%, var(--old-rose-pale) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.hero-text {
    order: 1;
    text-align: center;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--old-rose);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 300px;
}

.hero-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-container {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-scroll {
    display: none;
}

/* ===================================
   SECTIONS MOBILE
   =================================== */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--old-rose);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===================================
   ABOUT MOBILE
   =================================== */
.about {
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 300px;
    position: relative;
}

.about-img-container {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.exp-text {
    font-size: 0.6rem;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    text-align: center;
    padding: 0 15px;
}

.about-intro {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
    overflow-wrap: break-word;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background-color: var(--bg-sage);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-soft);
}

.feature i {
    color: var(--sage-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    overflow-wrap: break-word;
}

/* ===================================
   SERVICES MOBILE
   =================================== */
.services {
    background-color: var(--alabaster);
}

.services-subsection {
    margin-bottom: 50px;
    padding: 0 15px;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
    padding-top: 15px;
}

.subsection-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 100%;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(192, 139, 135, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--old-rose-pale) 0%, var(--bg-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--old-rose);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
    overflow-wrap: break-word;
}

.service-benefits {
    margin-bottom: 25px;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    overflow-wrap: break-word;
}

.service-benefits li i {
    color: var(--sage-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Packages Grid Mobile */
.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.package-card {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(192, 139, 135, 0.15);
}

.package-card.featured {
    border-color: var(--old-rose);
    background: linear-gradient(135deg, var(--white) 0%, var(--old-rose-pale) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--old-rose-dark) 100%);
    color: var(--white);
    padding: 6px 18px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-small);
    white-space: nowrap;
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--old-rose-pale);
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.package-tag {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    overflow-wrap: break-word;
}

.package-features {
    margin-bottom: 20px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    overflow-wrap: break-word;
}

.package-features li i {
    color: var(--sage-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

.package-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 18px;
    text-align: center;
}

/* ===================================
   PORTFOLIO MOBILE
   =================================== */
.portfolio {
    background-color: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding: 0 15px;
}

.filter-btn {
    padding: 10px 18px;
    background-color: transparent;
    border: 2px solid var(--old-rose-pale);
    border-radius: var(--radius-small);
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    min-height: 44px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-small);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    min-height: 150px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-cta {
    text-align: center;
    padding: 0 15px;
}

/* ===================================
   PROCESS MOBILE
   =================================== */
.process {
    background: linear-gradient(180deg, var(--bg-sage) 0%, var(--old-rose-pale) 100%);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 15px;
}

.process-step {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
}

.process-connector {
    display: none;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--old-rose-pale);
    margin-bottom: 15px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    overflow-wrap: break-word;
}

.step-details {
    border-top: 1px solid var(--old-rose-pale);
    padding-top: 15px;
}

.step-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    overflow-wrap: break-word;
}

.step-details li i {
    color: var(--sage-dark);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ===================================
   TESTIMONIALS MOBILE
   =================================== */
.testimonials {
    background-color: var(--old-rose-pale);
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--champagne-gold);
    font-size: 0.85rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    overflow-wrap: break-word;
    padding-left: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--old-rose) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

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

.author-event {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===================================
   CONTACT MOBILE
   =================================== */
.contact {
    background-color: var(--alabaster);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-info {
    text-align: center;
    padding: 0 15px;
}

.contact-info .section-label {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.contact-info .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
    overflow-wrap: break-word;
}

.contact-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    text-align: left;
}

.contact-location i {
    font-size: 1.3rem;
    color: var(--old-rose);
    flex-shrink: 0;
}

.contact-location h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

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

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: var(--white);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--old-rose-pale) 0%, var(--bg-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--old-rose);
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--old-rose);
    font-weight: 500;
    font-size: 0.9rem;
    word-break: break-all;
}

.contact-form-container {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    margin: 0 15px;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 1px solid #E0E0E0;
    border-radius: var(--radius-small);
    background-color: var(--white);
    color: var(--text-primary);
    min-height: 50px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--old-rose);
    box-shadow: 0 0 0 3px rgba(192, 139, 135, 0.1);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
    overflow-wrap: break-word;
}

/* ===================================
   FOOTER MOBILE
   =================================== */
.footer {
    background-color: var(--warm-charcoal);
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 35px;
}

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

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    overflow-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-links,
.footer-services {
    text-align: center;
}

.footer-links h4,
.footer-services h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    text-align: center;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 5px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 15px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    overflow-wrap: break-word;
}

/* ===================================
   WHATSAPP FLOAT MOBILE
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

/* ===================================
   LIGHTBOX MOBILE
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-small);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   TABLET (min-width: 768px)
   =================================== */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }

    .nav-container {
        max-width: 720px;
        padding: 0 20px;
    }

    .hero {
        padding: 100px 20px 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: auto;
    }

    .hero-img-container {
        max-width: 350px;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        max-width: 600px;
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .about-image {
        max-width: 100%;
    }

    .about-text {
        text-align: left;
        padding: 0;
    }

    .about-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .feature {
        justify-content: flex-start;
    }

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

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

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 280px;
    }

    .process-connector {
        display: none;
    }

    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-info {
        text-align: left;
    }

    .contact-info .section-label,
    .contact-info .section-title {
        text-align: left;
    }

    .contact-location {
        justify-content: flex-start;
    }

    .contact-options {
        max-width: 100%;
        margin: 0;
    }

    .contact-form-container {
        padding: 35px 30px;
        margin: 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-brand .logo-text {
        font-size: 1.4rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 25px 20px 0;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 25px;
        right: 25px;
    }
}

/* ===================================
   DESKTOP (min-width: 1024px)
   =================================== */
@media (min-width: 1024px) {
    .container {
        max-width: 1140px;
        padding: 0 30px;
    }

    .nav-container {
        max-width: 1140px;
        padding: 0 30px;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background-color: transparent;
        padding: 0;
        gap: 30px;
        box-shadow: none;
        transform: none;
        opacity: 1;
        z-index: auto;
    }

    .nav-toggle {
        display: none;
    }

    .nav-link {
        padding: 5px 0;
    }

    .nav-cta {
        margin-top: 0;
        padding: 10px 22px !important;
    }

    .hero {
        min-height: 100vh;
        flex-direction: row;
        padding: 0 30px;
        background: linear-gradient(135deg, var(--alabaster) 0%, var(--old-rose-pale) 50%, var(--bg-sage) 100%);
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }

    .hero-text {
        order: 1;
        text-align: left;
    }

    .hero-image {
        order: 2;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        max-width: 500px;
        margin-left: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-img-container {
        max-width: 400px;
    }

    .hero-scroll {
        display: flex;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    section {
        padding: 100px 0;
    }

    .section-header {
        max-width: 700px;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 70px;
    }

    .about-img-container {
        aspect-ratio: 4/5;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
        bottom: -25px;
        right: -25px;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .exp-text {
        font-size: 0.65rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-subsection {
        margin-bottom: 70px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .process-steps {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .process-step {
        flex: 1;
        padding: 35px 28px;
    }

    .process-connector {
        display: flex;
        align-items: center;
        padding-top: 100px;
    }

    .process-connector i {
        font-size: 1.8rem;
        color: var(--old-rose);
        opacity: 0.5;
    }

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

    .testimonial-card {
        padding: 35px 28px;
    }

    .contact-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

    .contact-form-container {
        padding: 40px 35px;
    }

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

    .footer {
        padding: 70px 0 30px;
    }

    .footer-bottom {
        padding: 30px 30px 0;
    }

    .whatsapp-float {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        bottom: 30px;
        right: 30px;
    }
}

/* ===================================
   LARGE DESKTOP (min-width: 1280px)
   =================================== */
@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }

    .hero-content {
        max-width: 1200px;
        gap: 60px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-img-container {
        max-width: 450px;
    }

    .about-content {
        gap: 80px;
    }

    .services-grid {
        gap: 35px;
    }

    .portfolio-grid {
        gap: 25px;
    }

    .testimonials-slider {
        gap: 35px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Estilos para el formulario de contacto */
.contact-form .btn {
    margin-top: 10px;
}

#contactForm .form-message {
    padding: 20px;
    border-radius: var(--radius-small);
    margin-top: 20px;
    text-align: center;
    display: none;
    animation: fadeInUp 0.5s ease;
}

#contactForm .form-message.success {
    display: block;
    background-color: var(--bg-sage);
    color: var(--sage-dark);
    border: 1px solid var(--sage);
}

#contactForm .form-message.error {
    display: block;
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Responsive para mensajes del formulario */
@media (max-width: 768px) {
    #contactForm .form-message {
        padding: 15px;
        margin-top: 15px;
        font-size: 0.95rem;
    }
    
    #contactForm .form-message.success {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    #contactForm .form-message {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    #contactForm .form-message.success {
        padding: 15px 12px;
    }
}
