/* =========================================
   1. ESTILOS GLOBALES Y FUENTES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Montserrat:wght@400;500;600&family=Open+Sans:wght@400;600&family=Permanent+Marker&display=swap');

body { margin: 0; padding: 0; font-family: 'Open Sans', sans-serif; width: 100%; overflow-x: hidden; }
* { box-sizing: border-box; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; padding: 0; margin: 0; }

/* =========================================
   2. ESTILOS DEL HEADER (DISEÑO EXACTO + RESPONSIVE)
   ========================================= */
.header-container {
    width: 100%;
    height: 110px;
    background: rgba(246,236,245,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* LOGO */
.logo-area { display: flex; align-items: center; }
.main-logo { 
    height: 90px;
    width: auto; 
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* MENÚ DE NAVEGACIÓN (Escritorio) */
.nav-menu {
    display: flex;
    gap: 50px;
    margin-right: 20px;
}

.nav-item {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: #F54EA2;
    text-decoration-color: #F54EA2;
    transform: translateY(-2px);
}

/* HAMBURGUESA (Móvil) */
.hamburger-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}
.hamburger-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

/* RESPONSIVIDAD (Celulares y Tablets) */
@media (max-width: 900px) {
    .header-container {
        padding: 0 20px;
        height: 80px;
    }
    body { padding-top: 80px; }
    
    .main-logo { height: 60px; }
    .nav-menu { gap: 0; margin-right: 0; }

    .hamburger-btn { display: flex; }

    /* Menú Móvil Desplegable */
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active { display: flex; animation: fadeIn 0.3s ease; }
    
    .nav-item {
        font-size: 20px;
        margin: 15px 0;
        text-decoration: none;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   3. ESTILOS DEL FOOTER (NUEVO Y LIMPIO)
   ========================================= */
.white-footer {
    background-color: #ffffff !important;
    width: 100% !important;
    border-top: 1px solid #f0f0f0;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
    padding-bottom: 0 !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
}

/* Sección de ARRIBA (Columnas) */
.footer-top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    overflow: visible !important;
}

.f-column {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: visible !important;
}

.f-link {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    margin-bottom: 5px;
    display: block;
    overflow: visible !important;
}
.f-link:hover { color: #000; font-weight: 600; }

.f-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    overflow: visible !important;
}

.f-icon {
    stroke: #000;
    flex-shrink: 0;
    margin-top: 3px;
    overflow: visible !important;
}

/* Sección de ABAJO (Copyright y Social) */
.footer-bottom-section {
    border-top: 1px solid #eee;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    overflow: visible !important;
}

.f-socials { display: flex; gap: 15px; }
.f-social-circle {
    width: 32px;
    height: 32px;
    display: block;
    transition: transform 0.2s;
}
.f-social-circle img { width: 100%; height: 100%; object-fit: contain; }
.f-social-circle:hover { transform: scale(1.1); }

.f-copy {
    text-align: right;
    font-size: 13px;
    color: #666;
}
.designer-credit strong { color: #000; font-weight: 600; }

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top-section { flex-direction: column; gap: 30px; }
    .footer-bottom-section { flex-direction: column; text-align: center; }
    .f-copy { text-align: center; }
}

/* =========================================
   4. ESTILOS DEL INDEX (LUNA CREATIONS)
   ========================================= */
.luna-full-page-container {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

.luna-full-page-container * { box-sizing: border-box; }

/* SECCIÓN 1: HEADER (LUNA GRANDE) */
.luna-header-section {
    position: relative;
    width: 100%;
    min-height: 700px; 
    background: linear-gradient(90deg, #d8ccf2 0%, #f9e2d4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 130px; 
}

.luna-center-content {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center;
    z-index: 10;
    gap: 10px;
}

.luna-moon-icon {
    width: 240px;
    height: auto;
    display: block; 
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}

.luna-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: -20px;
}

.luna-title-main {
    font-family: 'Doughty Brush', 'Permanent Marker', cursive; 
    font-size: 250px; 
    color: #db3aab;
    margin: 0;
    line-height: 1; 
    text-shadow: 3px 3px 5px rgba(0,0,0,0.15);
    transform: rotate(-3deg);
    position: relative;
    left: -10px;
}

.luna-subtitle-main {
    font-family: 'Amatic SC', cursive;
    font-weight: 120;
    font-size: 85px; 
    color: #db3aab;
    margin: 0;
    margin-top: -10px; 
    margin-left: 10px;
    line-height: 1;
    letter-spacing: 0px;
    text-transform: uppercase;
}

/* Imágenes flotantes */
.luna-floating-img {
    position: absolute;
    animation: luna-float 4s ease-in-out infinite;
    pointer-events: none; 
}

.luna-heart-img {
    width: 120px;
    top: 10%;
    right: 10%;
    transform: rotate(15deg);
}

.luna-star-img {
    height: auto;
    filter: drop-shadow(0px 0px 5px rgba(255,255,255,0.8));
}

.star-pos-1 { top: 8%; left: 4%; width: 45px; animation-delay: 0s; }
.star-pos-2 { top: 5%; left: 38%; width: 50px; animation-delay: 1s; }
.star-pos-3 { bottom: 12%; left: 8%; width: 55px; animation-delay: 2s; }
.star-pos-4 { bottom: 22%; right: 18%; width: 40px; animation-delay: 0.5s; }
.star-pos-5 { bottom: 5%; left: 52%; width: 45px; animation-delay: 1.5s; }
.star-pos-6 { top: 22%; right: 4%; width: 50px; animation-delay: 2.5s; }
.star-pos-7 { top: 10%; right: 32%; width: 38px; animation-delay: 1.2s; }

@keyframes luna-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* SECCIÓN 2: OUR STORY */
.story-split-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 350px;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.story-half-left {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #fcece4 0%, #e6dff0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.story-title-brush {
    font-family: 'Doughty Brush', 'Permanent Marker', cursive;
    font-size: 90px;
    color: #000000;
    transform: rotate(-5deg);
    z-index: 2;
    margin: 0;
    line-height: 1;
    text-align: center;
}

.story-half-right {
    flex: 1.2;
    min-width: 300px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    position: relative;
}

.story-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 30px;
}

.story-btn {
    align-self: flex-end;
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-btn:hover { background-color: #000; color: #fff; }

.deco-star {
    position: absolute;
    width: 50px;
    height: auto;
    fill: #A78AC9; 
    filter: drop-shadow(0px 0px 4px rgba(255,255,255,0.8));
    animation: float-story 4s ease-in-out infinite;
}

.star-left-bottom { bottom: 20px; left: 20px; width: 60px; transform: rotate(-10deg); }
.star-left-middle { top: 30%; right: 15%; width: 40px; animation-delay: 1s; }
.star-right-corner { bottom: -20px; right: -10px; width: 70px; z-index: 10; }

@keyframes float-story {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* SECCIÓN 3: SERVICES */
.services-header {
    background-color: #ffffff;
    text-align: center;
    padding: 60px 0 20px 0;
}

.services-title-script {
    font-family: 'Doughty Brush', 'Permanent Marker', cursive;
    font-size: 100px;
    color: #000;
    margin: 0;
    line-height: 1;
    transform: rotate(-3deg);
}

.services-body {
    background-color: #F7E6E1; 
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid-layout {
    display: grid;
    width: 100%;
    max-width: 1400px; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.1));
}

.product-img-box {
    width: 100%;
    height: 250px; 
    overflow: hidden;
    background-color: #fff;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img { transform: scale(1.05); }

.product-info-bar {
    background-color: #ffffff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    margin-top: -4px; 
}

.product-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

.product-arrow-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.product-arrow-btn:hover { background-color: #000; }
.product-arrow-btn svg { width: 10px; height: 10px; fill: #000; transition: fill 0.3s ease; }
.product-arrow-btn:hover svg { fill: #fff; }

.see-more-link {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin-top: 20px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.see-more-link:hover { border-bottom: 1px solid #333; }

/* SECCIÓN 4: CONTACT US */
.luna-contact-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.contact-title-container {
    text-align: center;
    margin-bottom: 50px;
}

.contact-content-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Columna Info */
.contact-info-col {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon-svg {
    width: 30px;
    height: 30px;
    fill: #000;
    flex-shrink: 0;
}

.contact-text p {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.contact-link { color: #333; text-decoration: underline; }

/* Redes Sociales */
.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-link img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}
.social-icon-link:hover img { transform: scale(1.1); }

/* Columna Formulario */
.contact-form-col {
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.luna-form-group { margin-bottom: 20px; }

.luna-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.luna-form-input, .luna-form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background: #fff;
}

.luna-form-textarea { height: 100px; resize: vertical; }

.luna-form-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.luna-form-btn:hover { background-color: #F54EA2; }

/* Mapa */
.luna-map-container {
    width: 100%;
    height: 350px;
    margin-top: 50px;
}

.luna-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Newsletter */
.luna-newsletter {
    background-color: #F7E6E1;
    padding: 40px 20px;
    text-align: center;
    margin-top: 0;
}
.newsletter-title { font-family: 'Amatic SC', cursive; font-size: 30px; margin-bottom: 10px; font-weight: bold; }
.newsletter-text { margin-bottom: 20px; font-size: 14px; }

/* RESPONSIVO */
@media (max-width: 768px) {
    .luna-header-section { height: 550px; }
    .luna-moon-icon { width: 150px; margin-bottom: 10px; } 
    .luna-title-main { font-size: 95px; left: 0; } 
    .luna-subtitle-main { font-size: 55px; margin-left: 0; margin-top: 0; } 
    .luna-center-content { flex-direction: column; text-align: center; gap: 0; }
    .luna-text-group { align-items: center; margin-top: 0; }
    .luna-heart-img { width: 70px; top: 5%; right: 5%; }

    .story-split-container { flex-direction: column; }
    .story-half-left { min-height: 200px; }
    .story-title-brush { font-size: 60px; }
    .story-half-right { padding: 30px; text-align: center; }
    .story-btn { align-self: center; }

    .services-title-script { font-size: 60px; }
    .services-grid-layout { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }
    .product-img-box { height: 180px; }
    
    .contact-content-split { flex-direction: column; }
    .contact-info-col { padding-right: 0; margin-bottom: 40px; }
}

/* =========================================
   5. ESTILOS DE LA PÁGINA "ABOUT US"
   ========================================= */

/* Encabezado específico de About Us */
.about-hero-section {
    width: 100%;
    height: 350px; 
    background: linear-gradient(90deg, #d8ccf2 0%, #f9e2d4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px; 
    overflow: hidden;
}

.about-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 100px;
    color: #F54EA2; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    transform: rotate(-3deg);
    margin: 0;
    z-index: 2;
}

/* Contenedor del texto */
.about-story-container {
    background-color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.story-card {
    max-width: 800px;
    background: #fff;
    padding: 0 20px;
    text-align: center;
}

.story-subtitle {
    font-family: 'Amatic SC', cursive;
    font-size: 50px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

/* Caja destacada */
.highlight-box {
    background-color: #fdfbfb; 
    border-left: 4px solid #F54EA2; 
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Cita final */
.story-final-quote {
    font-family: 'Amatic SC', cursive;
    font-size: 42px;
    color: #F54EA2;
    margin-top: 40px;
    font-weight: 700;
}

.story-decoration {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* RESPONSIVE PARA ABOUT US */
@media (max-width: 768px) {
    .about-hero-section { height: 280px; }
    .about-title { font-size: 60px; }
    .highlight-box { padding: 15px; text-align: center; border-left: none; border-top: 4px solid #F54EA2; }
    .story-text { font-size: 16px; text-align: justify; }
}

/* =========================================
   6. ESTILOS DE LA GALERÍA (GALLERY)
   ========================================= */

/* Hero Section de la Galería */
.gallery-hero-section {
    width: 100%;
    background: linear-gradient(135deg, #fcece4 0%, #e6dff0 100%); 
    padding: 140px 20px 60px 20px; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-title {
    font-family: 'Doughty Brush', 'Permanent Marker', cursive;
    font-size: 80px;
    color: #F54EA2;
    margin: 0 0 20px 0;
    line-height: 1.1;
    transform: rotate(-2deg);
}

.gallery-intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

.gallery-subtitle {
    margin-top: 15px;
    font-weight: 600;
    color: #000;
}

/* Contenedor de la Grilla (Grid) */
.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
}

/* Tarjeta de imagen individual */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f9f9f9;
    aspect-ratio: 1 / 1; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
    display: block;
}

/* Efecto al pasar el mouse (Hover) */
.gallery-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.05); 
}

/* Llamada a la acción final */
.gallery-cta {
    text-align: center;
    padding: 40px 20px 80px 20px;
    background-color: #fff;
}

.gallery-cta p {
    font-family: 'Amatic SC', cursive;
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* RESPONSIVE GALERÍA */
@media (max-width: 768px) {
    .gallery-title { font-size: 50px; }
    .gallery-intro-text { font-size: 15px; }
    .gallery-grid-container { 
        gap: 15px; 
        padding: 20px; 
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    }
}

/* =========================================
   7. ESTILOS DE SERVICES (ALINEADOS Y ALTOS)
   ========================================= */

/* Encabezado Simple */
.services-header-simple {
    text-align: center;
    padding-top: 140px; 
    padding-bottom: 20px;
    background-color: #fff;
}

.services-script-title {
    font-family: 'Doughty Brush', 'Permanent Marker', cursive;
    font-size: 80px;
    color: #000;
    margin: 0;
    transform: rotate(-2deg);
}

/* Contenedor Grid Principal */
.services-pink-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    padding: 20px 5% 80px 5%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: stretch; 
}

/* Tarjeta Rosa */
.pink-service-card {
    background-color: #ffe0f0; 
    display: flex; 
    flex-direction: row;
    min-height: 580px; 
    height: 100%; 
    overflow: hidden; 
    border-radius: 5px;
    position: relative; 
}

/* Imagen de la tarjeta (Izquierda) */
.pink-card-img {
    width: 45%; 
    position: relative; 
    background-color: #fff; 
    flex-shrink: 0; 
}

.pink-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Información (Derecha) */
.pink-card-info {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
}

/* Descripción y Precio */
.pink-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.pink-desc strong {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 15px;
}

/* Título del Producto */
.pink-title {
    font-family: 'Open Sans', sans-serif; 
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0;
    color: #000;
}

/* Botón */
.pink-btn {
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    padding: 10px 30px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    background-color: transparent;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.pink-btn:hover {
    background-color: #fff; 
    color: #000;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .services-pink-grid {
        grid-template-columns: 1fr; 
    }
    
    .pink-service-card {
        flex-direction: column; 
        height: auto; 
        min-height: auto;
    }

    .pink-card-img {
        width: 100%;
        height: 300px; 
    }
    
    .pink-card-img img {
        position: relative; 
    }

    .pink-card-info {
        width: 100%;
    }
}

/* =========================================
   8. ESTILOS DEL FORMULARIO (DISEÑO LIMPIO)
   ========================================= */

.custom-request-section {
    background-color: #fff;
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Open Sans', sans-serif; 
}

.custom-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.custom-subtitle {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
}

/* Iconos Sociales */
.form-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.form-social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}
.form-social-icons img:hover { transform: scale(1.1); }

/* Estructura del Formulario */
.luna-clean-form {
    text-align: left;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 400;
}

/* Inputs Cuadrados */
.clean-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #000; 
    border-radius: 0; 
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
}

.clean-input:focus, .clean-textarea:focus {
    background-color: #fafafa;
}

/* Fila Superior (Nombre y Apellido) */
.form-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Sección Central Dividida */
.form-split-middle {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
    margin-bottom: 30px;
}

.form-col-right .form-group {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Textarea Grande */
.clean-textarea {
    width: 100%;
    flex-grow: 1; 
    min-height: 250px; 
    border: 1px solid #000;
    border-radius: 0;
    resize: none;
    padding: 12px;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
}

/* Radio Buttons */
.radio-section { margin-top: 30px; }

.clean-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px; 
    margin-top: 15px;
}

.clean-radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    margin: 0;
}

.clean-radio-group input[type="radio"] {
    accent-color: #000;
    width: 18px;
    height: 18px;
}

/* Footer del Formulario */
.form-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-wrapper label { margin: 0; cursor: pointer; }
.checkbox-wrapper input[type="checkbox"] { 
    width: 18px; 
    height: 18px; 
    accent-color: #000;
    border-radius: 0;
}

/* Botón Negro */
.clean-submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 60px; 
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 0; 
}

.clean-submit-btn:hover { background-color: #333; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-row-top, 
    .form-split-middle,
    .form-footer-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 20px;
    }
    
    .clean-textarea { min-height: 150px; }
    
    .form-footer-row { align-items: flex-start; }
    .clean-submit-btn { width: 100%; }
}

/* =========================================
   9. ESTILOS DEL POPUP MODAL (GRACIAS)
   ========================================= */

.luna-modal-overlay {
    display: none; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); 
    z-index: 9999; 
    justify-content: center;
    align-items: center;
}

.luna-modal-overlay.show-modal { display: flex; }

.luna-modal-content {
    background-color: #fff;
    border: 3px solid #F54EA2; 
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 8px;
    animation: slideDownFade 0.4s ease-out;
}

@keyframes slideDownFade {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}
.close-modal-x:hover { color: #F54EA2; }

.modal-pink-title {
    font-family: 'Doughty Brush', 'Permanent Marker', cursive; 
    color: #F54EA2;
    font-size: 48px;
    margin: 0 0 20px 0;
    transform: rotate(-3deg); 
}

.modal-message {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 30px;
}

.modal-pink-btn {
    background-color: #F54EA2;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px;
}

.modal-pink-btn:hover { background-color: #d93d8b; }

/* =========================================
   10. ESTILOS DE CONTACT US (PÁGINA DEDICADA)
   ========================================= */

.contact-header-simple {
    text-align: center;
    padding-top: 140px; 
    padding-bottom: 40px;
    background-color: #fff;
}

.contact-script-title {
    font-family: 'Doughty Brush', 'Permanent Marker', cursive;
    font-size: 80px;
    color: #000;
    margin: 0;
    transform: rotate(-2deg);
}

.contact-pink-section {
    background-color: #ffe0f0; 
    padding: 60px 10%;
    min-height: 600px;
}

.lets-talk-title {
    font-family: 'Amatic SC', cursive; 
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #333;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; 
    gap: 30px;
    margin-bottom: 60px;
    font-family: 'Open Sans', sans-serif;
}

.info-label {
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.info-value {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.social-icons-row { display: flex; gap: 15px; }

.social-icons-row img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}
.social-icons-row img:hover { transform: scale(1.1); }

.contact-page-form { width: 100%; }

.contact-page-form .form-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    background-color: transparent; 
    border-radius: 0;
    outline: none;
    font-size: 15px;
}

.contact-input:focus { background-color: #fff; }

.contact-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.contact-radio-row label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.contact-radio-row input[type="radio"] { accent-color: #000; }

.contact-textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #000;
    border-radius: 0;
    padding: 10px;
    resize: vertical;
    font-family: inherit;
    font-size: 15px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.contact-submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 50px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.3s;
}

.contact-submit-btn:hover { background-color: #333; }

@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-page-form .form-row-top { grid-template-columns: 1fr; }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .contact-submit-btn { width: 100%; }
}

/* =========================================
   11. POPUP NEWSLETTER (ESTILO IMAGEN)
   ========================================= */

.news-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); 
    z-index: 9999; 
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.news-box {
    background-color: #FFF5F0; 
    width: 100%;
    max-width: 900px;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    padding: 40px;
}

.close-news {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}
.close-news:hover { color: #F54EA2; }

.news-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.news-left-col {
    flex: 1;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.news-title {
    font-family: 'Open Sans', sans-serif; 
    font-weight: 800;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.news-text {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.news-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.news-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

.news-spam-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.news-form label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
}

.news-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-input-group input {
    padding: 12px;
    border: 1px solid #999;
    background: transparent;
    font-size: 14px;
    width: 100%;
}

.news-input-group button {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    width: 100%; 
}

.news-input-group button:hover {
    background-color: #000;
    color: #fff;
}

.news-right-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-img {
    width: 100%;
    max-width: 350px; 
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .news-content-wrapper {
        flex-direction: column-reverse; 
        text-align: center;
    }

    .news-right-col { margin-bottom: 20px; }
    .news-img { max-width: 200px; }
    
    .news-title { font-size: 24px; }
    .news-box { padding: 30px 20px; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================
   12. BOTÓN FLOTANTE WHATSAPP
   ========================================= */

.whatsapp-btn-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; 
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 10000; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn-float:hover {
    background-color: #1ebe57; 
    transform: scale(1.1); 
}

.whatsapp-icon-svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-btn-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon-svg {
        width: 28px;
        height: 28px;
    }
}