/* ===================================
   PRADOS - Custom CSS Styles
   Paleta de colores "Tropical Vibrante":
   - Primario: #FF6B9D (rosa vibrante/fucsia)
   - Secundario: #FFA07A (coral salmón)
   - Terciario: #FFD700 (dorado brillante)
   - Acento: #00CED1 (turquesa)
   - Natural: #7FD957 (verde lima)
   - Fondo: #FFF5F7 (rosa muy claro)
   =================================== */

/* ===== Variables CSS ===== */
:root {
    --primary-color: #FF6B9D;
    --secondary-color: #FFA07A;
    --tertiary-color: #FFD700;
    --accent-color: #00CED1;
    --natural-color: #7FD957;
    --bg-color: #FFF5F7;
    --white: #FFFFFF;
    --dark: #2C2C2C;
    --gray: #6B6B6B;
    --light-gray: #F0F0F0;
    
    --font-heading: 'Noto Serif', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: none;
    --shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
    --shadow-hover: 0 8px 24px rgba(255, 107, 157, 0.35);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Protección contra scroll horizontal ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    max-width: 100%;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

section, div, header, footer, main, article, aside, nav {
    max-width: 100%;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* ===== Header / Navbar ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ===== Logo - Protección FORZADA contra distorsión ===== */
.logo {
    display: inline-block !important;
    line-height: 0 !important;
    text-decoration: none !important;
    min-height: 60px !important;
}

.logo img {
    height: 70px !important;
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
    object-fit: contain !important;
    display: block !important;
    transition: var(--transition) !important;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
    animation: logoPulse 0.6s ease-in-out;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1.1) rotate(5deg);
    }
    50% {
        transform: scale(1.15) rotate(8deg);
    }
}

/* Asegurar que el navbar no comprima el logo */
.navbar {
    padding: 0.75rem 0 !important;
    min-height: 90px !important;
}

.nav-wrapper {
    min-height: 70px !important;
}

/* Protección para el logo del footer */
.footer-logo {
    max-width: 600px !important;
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    transition: var(--transition);
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 107, 157, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.6));
    }
}

.footer-logo:hover {
    transform: scale(1.1) rotate(-5deg);
    animation: logoSpin 0.8s ease-in-out;
}

@keyframes logoSpin {
    0% {
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        transform: scale(1.15) rotate(5deg);
    }
    100% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.nav-list {
    display: flex;
    gap: 0.20rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    position: relative;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    transition: none;
}

.nav-link.active {
    color: var(--primary-color);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #0066CC;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 90px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Background Images */
.hero-slide:nth-child(1) {
    background-image: linear-gradient(rgba(255, 107, 157, 0.3), rgba(255, 160, 122, 0.3)), 
                      url('../images/Rosas y Girasoles.jpeg');
    background-attachment: scroll;
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 206, 209, 0.3), rgba(127, 217, 87, 0.3)), 
                      url('../images/Fiesta colorida.jpeg');
    background-attachment: scroll;
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(255, 215, 0, 0.3), rgba(255, 160, 122, 0.3)), 
                      url('../images/Sillas y mesas.jpeg');
    background-attachment: scroll;
}

.hero-overlay {  
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 160, 122, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Slider Navigation Dots */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover,
.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: #E5568A;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: #E5568A;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

/* ===== Sections ===== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: visible;
    padding: 1rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 300;
}

/* ===== Content Wrapper (alternating layouts) ===== */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-wrapper.reverse {
    direction: rtl;
}

.content-wrapper.reverse > * {
    direction: ltr;
}

.content-text {
    padding: 0 1rem;
}

.content-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-box {
    margin-bottom: 2rem;
}

.services-box h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-list {
    display: grid;
    gap: 0.75rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--dark);
}
/* ===== NUEVO: Tarjetas de Servicios (3 por tarjeta) ===== */

/* Contenedor de tarjetas de servicios */
.services-cards-wrapper {
    margin-bottom: 2rem;
}

.services-cards-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Grid de tarjetas - 2 columnas */
.services-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Tarjeta individual */
.service-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    height: auto;
    min-height: auto;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--secondary-color);
}

/* Lista dentro de cada tarjeta */
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.service-card li:last-child {
    margin-bottom: 0;
}

.service-card li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Responsive para tarjetas de servicios */
@media screen and (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1rem;
        height: auto;
        min-height: auto;
    }
    
    .service-card li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
}

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Grid especial para renta (2 columnas centradas) */
.gallery-grid.rental-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--dark);
    background-color: var(--bg-color);
}

/* ===== Product Images - Full Width & Height ===== */
.products-section .gallery-grid,
.riman-section .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    justify-items: center;
}

.products-section .gallery-item,
.riman-section .gallery-item {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--white);
}

.products-section .gallery-item img,
.riman-section .gallery-item img {
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: var(--white);
    padding: 0.5rem;
    border-radius: 15px;
    margin: 0 auto;
}

/* Desktop: Centrar y reducir tamaño */
@media screen and (min-width: 769px) {
    .products-section .gallery-grid,
    .riman-section .gallery-grid {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products-section .gallery-item img,
    .riman-section .gallery-item img {
        max-width: 350px;
        height: 350px;
        object-fit: cover;
    }
}

/* Mobile: Full width */
@media screen and (max-width: 768px) {
    .products-section .gallery-grid,
    .riman-section .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .products-section .gallery-item,
    .riman-section .gallery-item {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .products-section .gallery-item img,
    .riman-section .gallery-item img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 350px;
        object-fit: cover;
        background-color: var(--white);
        padding: 0.5rem;
        border-radius: 15px;
        margin: 0;
    }
}

/* Específico para pantallas de 410px */
@media screen and (max-width: 410px) {
    .products-section .gallery-item img,
    .riman-section .gallery-item img {
        min-height: 300px;
        max-width: 100%;
    }
}

/* Específico para pantallas de 400px */
@media screen and (max-width: 400px) {
    .products-section .gallery-item img,
    .riman-section .gallery-item img {
        min-height: 280px;
        max-width: 100%;
    }
}

/* Específico para pantallas de 390px */
@media screen and (max-width: 390px) {
    .products-section .gallery-item img,
    .riman-section .gallery-item img {
        min-height: 260px;
        max-width: 100%;
    }
}

/* ===== Section Backgrounds ===== */
.flowers-section {
    background-color: var(--white);
}

.party-section {
    background-color: var(--bg-color);
}

.rental-section {
    background-color: var(--white);
}

/* ===== Community Section ===== */
.community-section {
    background-color: var(--bg-color);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.community-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: auto;
    min-height: auto;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.community-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.community-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ===== Products Section ===== */
.products-section {
    background-color: var(--white);
    background-image: linear-gradient(135deg, rgba(255, 160, 122, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.riman-section {
    background-color: var(--white);
    background-image: linear-gradient(135deg, rgba(255, 160, 122, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.products-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.products-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.products-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.products-note {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: var(--bg-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Info */
.contact-info {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.info-item h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray);
    line-height: 1.6;
}

.info-item a {
    color: var(--primary-color);
}

.info-item a:hover {
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 10px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-social h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

/* Facebook - Color original */
.social-links a[aria-label="Facebook"] {
    background-color: #1877F2;
}

.social-links a[aria-label="Facebook"]:hover {
    background-color: #166FE5;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Instagram - Gradiente original */
.social-links a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45);
    background-size: 200% 200%;
    animation: instagramGradient 3s ease infinite;
}

@keyframes instagramGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.social-links a[aria-label="Instagram"]:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.4);
}

/* WhatsApp - Color original */
.social-links a[aria-label="WhatsApp"] {
    background-color: #25D366;
}

.social-links a[aria-label="WhatsApp"]:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 1024px) {
    .nav-list {
        gap: 0.10rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.75rem 0.75rem;
    }
}

@media screen and (max-width: 768px) {
    /* Header */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 180px;
        left: -100%;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 180px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .language-selector {
        margin-top: 2rem;
        margin-left: 0;
        gap: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .lang-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 1.1rem !important;
        min-height: 50px;
        min-width: 100px;
    }
    
    /* Hero */
    .hero {
        margin-top: 120px;
        min-height: 500px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Logo más pequeño en móvil para balance */
    .logo {
        min-height: 100px !important;
    }
    
    .logo img {
        height: 100px !important;
    }
    
    .navbar {
        min-height: 120px !important;
    }
    
    .nav-wrapper {
        min-height: 100px !important;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 0;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Content Wrapper */
    .content-wrapper,
    .content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
        max-width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .gallery-item img {
        height: 250px;
        max-width: 100%;
    }
    
    .gallery-grid.rental-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 1rem;
    }
    
    /* Community */
    .community-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-card {
        padding: 2rem 1.5rem;
        height: auto;
        min-height: auto;
    }
    
    .community-card h3 {
        font-size: 1.5rem;
    }
    
    .community-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-info h3 {
        text-align: left;
    }
    
    .info-item {
        text-align: left;
        align-items: flex-start;
    }
    
    .info-item div {
        text-align: left;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        max-width: 350px !important;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .gallery-grid.rental-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .gallery-item img {
        height: 220px;
        max-width: 100%;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Servicios en móvil pequeño */
    .service-card {
        padding: 0.875rem;
    }
    
    .service-card li {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    /* Community cards en móvil pequeño */
    .community-card {
        padding: 1.25rem 0.875rem;
    }
    
    .community-card h3 {
        font-size: 1.1rem;
    }
    
    .community-card p {
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 70px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* ===== Scroll to Top Button Styling ===== */
.scroll-to-top {
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4) !important;
}

.scroll-to-top:hover {
    background-color: var(--accent-color) !important;
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.5) !important;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 32px;
    line-height: 60px;
}
/* ===================================
   EFECTOS DINÁMICOS E INTERACTIVOS
   =================================== */

/* ===== 1. ANIMACIONES DE SCROLL ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== 2. NAVBAR CON EFECTO SCROLL ===== */
.header.scrolled {
    padding: 0.5rem 0;
    background-color: #FFFFFF !important;
    backdrop-filter: none;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.25);
}

.header.scrolled .logo img {
    height: 90px !important;
}

/* ===== 3. GALERÍA CON HOVER MEJORADO ===== */
.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item p {
    position: relative;
    z-index: 2;
}

.gallery-item:hover p {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== 4. TARJETAS DE SERVICIOS 3D ===== */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(255, 160, 122, 0.05));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card li i {
    transition: transform 0.3s ease;
}

.service-card:hover li i {
    animation: bounceCheck 0.5s ease;
}

@keyframes bounceCheck {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ===== 5. BOTONES CON EFECTO RIPPLE ===== */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: min(300px, 90vw);
    height: min(300px, 90vw);
}

.btn:active {
    transform: scale(0.95) translateY(-2px);
}

/* ===== 6. SECCIÓN DE ESTADÍSTICAS ===== */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive para estadísticas */
@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Parallax desactivado para evitar cortes en las imágenes */

/* ===================================
   EFECTOS VISUALES AVANZADOS
   =================================== */

/* ===== 1. GLASSMORPHISM EN NAVBAR ===== */
.header {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.85) !important;
}

.header.scrolled {
    background-color: #FFFFFF !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* ===== 2. GRADIENTE ANIMADO EN FONDO ===== */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 157, 0.05),
        rgba(255, 160, 122, 0.05),
        rgba(255, 215, 0, 0.05),
        rgba(0, 206, 209, 0.05),
        rgba(127, 217, 87, 0.05),
        rgba(255, 107, 157, 0.05)
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== 3. EFECTO SHIMMER EN BOTONES ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #E5568A);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E5568A, var(--primary-color));
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
}

/* ===== 4. EFECTO GLOW/NEÓN EN ELEMENTOS ===== */
.hero-title {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 107, 157, 0.3),
        0 0 30px rgba(255, 107, 157, 0.2),
        2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 107, 157, 0.3),
            0 0 30px rgba(255, 107, 157, 0.2),
            2px 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.7),
            0 0 30px rgba(255, 107, 157, 0.5),
            0 0 45px rgba(255, 107, 157, 0.3),
            2px 2px 8px rgba(0, 0, 0, 0.3);
    }
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 120px; opacity: 0.7; }
}

/* ===== 5. EFECTO TILT 3D EN TARJETAS ===== */
.service-card,
.community-card,
.gallery-item {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.service-card:hover,
.community-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
}

/* ===== 6. EFECTO PULSE EN ICONOS ===== */
.card-icon i,
.info-item i,
.social-links a i {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-icon:hover i,
.info-item:hover i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-5deg); }
    75% { transform: scale(1.2) rotate(5deg); }
}

/* ===== 7. EFECTO WAVE/ONDAS ===== */
.section-header {
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FFF5F7' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    opacity: 0.2;
    animation: waveMove 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* ===== 8. EFECTO MORPHING EN SHAPES ===== */
.hero-overlay {
    animation: morphShape 20s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(180deg);
    }
}

/* ===== 9. EFECTO BLUR EN SCROLL ===== */
.section {
    transition: filter 0.3s ease;
}

.section:not(:target) {
    filter: blur(0px);
}

/* ===== 10. EFECTO CURSOR PERSONALIZADO ===== */
body {
    cursor: default;
}

a, button, .gallery-item, .service-card {
    cursor: pointer;
}

/* ===== 11. EFECTO LOADING ANIMADO ===== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.slider-dot {
    position: relative;
}

.slider-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== 12. EFECTO FLOATING/PARTÍCULAS ===== */
.section-header {
    position: relative;
}

.section-header::after {
    content: '🌸';
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    top: 0;
    right: 5%;
    z-index: 0;
    pointer-events: none;
}

.section-header .section-title::before {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite reverse;
    top: 0;
    left: -40px;
    z-index: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ===== 13. EFECTO HOVER DESACTIVADO EN NAV LINKS ===== */
/* Efectos hover eliminados - solo color al seleccionar */

/* ===== 14. EFECTO ZOOM SUAVE EN HERO CONTENT ===== */
.hero-content {
    animation: heroContentZoom 1.5s ease-out;
}

@keyframes heroContentZoom {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== 15. EFECTO ROTATE EN LOGO (ya está en estilos principales) ===== */

/* ===== 16. EFECTO GRADIENTE ANIMADO EN TÍTULOS ===== */
.section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== 17. EFECTO SHADOW ANIMADO ===== */
.gallery-item,
.service-card,
.community-card {
    animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% {
        box-shadow: var(--shadow);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 107, 157, 0.4);
    }
}

/* ===== 18. EFECTO RIPPLE MEJORADO ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.6s;
    opacity: 0;
}

.btn:hover::before {
    width: min(400px, 90vw);
    height: min(400px, 90vw);
    opacity: 1;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

/* ===== 19. EFECTO SCALE EN HOVER MÁS SUAVE ===== */
.gallery-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
}

/* ===== 20. EFECTO BLUR EN HOVER DE TARJETAS ===== */
.service-card:hover,
.community-card:hover {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ===== 21. EFECTO TYPING EN HERO SUBTITLE (solo en desktop) ===== */
@media screen and (min-width: 769px) {
    .hero-subtitle {
        position: relative;
    }
    
    .hero-subtitle::after {
        content: '|';
        position: absolute;
        right: -10px;
        animation: blink-caret 0.75s step-end infinite;
    }
}

@keyframes blink-caret {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

/* ===== 22. EFECTO PARALLAX SUAVE ===== */
.section {
    transform: translateZ(0);
    will-change: transform;
}

/* ===== 23. EFECTO STAGGER EN GALLERY ITEMS ===== */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* ===== 24. EFECTO BOUNCE EN WHATSAPP BUTTON ===== */
.whatsapp-float {
    animation: whatsappBounce 2s ease-in-out infinite;
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.15) translateY(-5px);
}

/* ===== 25. EFECTO SCROLL REVEAL MEJORADO ===== */
.fade-in,
.fade-in-left,
.fade-in-right,
.scale-in {
    will-change: transform, opacity;
}

/* ===== 26. EFECTO GRADIENTE BORDER ===== */
.service-card {
    position: relative;
    background: var(--white);
    border-radius: 15px;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::after {
    opacity: 1;
}

/* ===== 27. EFECTO ROTATE EN SLIDER DOTS ===== */
.slider-dot {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slider-dot:hover {
    transform: scale(1.3) rotate(180deg);
}

.slider-dot.active {
    transform: scale(1.4) rotate(360deg);
}

/* ===== 28. EFECTO TEXT SHADOW ANIMADO ===== */
.hero-title {
    animation: textShadowMove 4s ease-in-out infinite;
}

@keyframes textShadowMove {
    0%, 100% {
        text-shadow: 
            2px 2px 8px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 107, 157, 0.3);
    }
    50% {
        text-shadow: 
            4px 4px 12px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(255, 107, 157, 0.5);
    }
}

/* ===== 29. EFECTO HOVER EN INFO ITEMS ===== */
.info-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.info-item:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateX(10px);
}

/* ===== 30. EFECTO SCALE EN SECTION HEADERS ===== */
.section-header {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.section-header:hover {
    transform: scale(1.02);
}

/* Responsive: Desactivar algunos efectos en móvil */
@media screen and (max-width: 768px) {
    .hero-subtitle {
        white-space: normal;
        border-right: none;
        animation: none;
    }
    
    body::before {
        animation-duration: 20s;
        max-width: 100vw;
    }
    
    .section-title::after {
        animation: none;
        width: 60px;
    }
    
    /* Forzar no scroll horizontal en móvil */
    body, html {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .section, .container, .content-wrapper, .gallery-grid {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Ajustar animaciones que pueden causar overflow */
    .fade-in-left {
        transform: translateX(-20px);
    }
    
    .fade-in-right {
        transform: translateX(20px);
    }
    
    /* Desactivar efectos que pueden causar movimiento horizontal */
    .gallery-item:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .service-card:hover,
    .community-card:hover {
        transform: translateY(-5px);
    }
    
    /* Asegurar que botones no excedan el ancho */
    .btn {
        max-width: calc(100vw - 40px);
    }
    
    /* Ajustar contenido de texto en móvil */
    .content-text {
        padding: 0 0.5rem;
    }
    
    .content-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Ajustar wrapper de servicios */
    .services-cards-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .services-cards-wrapper h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

/* ===================================
   RESPONSIVE DESIGN MEJORADO
   Breakpoints completos para todos los dispositivos
   =================================== */

/* ===== EXTRA SMALL DEVICES (320px - 374px) ===== */
@media screen and (max-width: 374px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header {
        padding: 0.5rem 0;
    }
    
    .logo {
        min-height: 80px !important;
    }
    
    .logo img {
        height: 80px !important;
    }
    
    .navbar {
        padding: 0.5rem 0 !important;
        min-height: 60px !important;
    }
    
    /* Hero */
    .hero {
        margin-top: 60px;
        min-height: 400px;
        height: 100vh;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.2;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: auto;
        min-width: 140px;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Sections */
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }
    
    .gallery-item img {
        height: 260px;
    }
    
    .gallery-item p {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1rem;
    }
    
    .service-card li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Content */
    .content-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Contact */
    .contact-info {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .info-item i {
        font-size: 1.25rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    /* Slider */
    .slider-nav {
        bottom: 20px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Language buttons */
    .lang-btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 1rem !important;
        min-height: 48px;
        min-width: 90px;
    }
    
    .language-selector {
        gap: 0.75rem;
    }
}

/* ===== OPTIMIZACIÓN ESPECÍFICA PARA 390px (iPhone 12/13/14) ===== */
@media screen and (max-width: 390px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    /* Header y Navbar */
    .header {
        padding: 0.6rem 0;
    }
    
    .logo img {
        height: 100px !important;
    }
    
    .navbar {
        padding: 0.6rem 0 !important;
        min-height: 120px !important;
    }
    
    .nav-wrapper {
        min-height: 100px !important;
    }
    
    .header.scrolled .logo img {
        height: 80px !important;
    }
    
    .nav-menu {
        top: 120px;
        height: calc(100vh - 120px);
    }
    
    /* Language Selector */
    .language-selector {
        gap: 0.5rem;
    }
    
    .lang-btn {
        font-size: 0.95rem !important;
        padding: 0.5rem 0.75rem !important;
        min-width: 80px !important;
        min-height: 40px !important;
    }
    
    .lang-btn img {
        width: 24px !important;
        height: 24px !important;
    }
    
    /* Hero Section */
    .hero {
        margin-top: 120px;
        min-height: 450px;
        height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.65rem !important;
        line-height: 1.3;
        padding: 0 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 0.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    /* Buttons */
    .btn {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Sections */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.65rem !important;
        margin-bottom: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item {
        border-radius: 12px;
        overflow: hidden;
        min-height: 580px;
        display: flex;
        flex-direction: column;
    }
    
    .gallery-item img {
        height: 450px;
        width: 100%;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .gallery-item p {
        padding: 1.5rem;
        font-size: 0.95rem;
        flex-grow: 1;
    }
    
    /* Content Wrapper */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .content-text {
        padding: 0;
    }
    
    .content-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card ul {
        gap: 0.75rem;
    }
    
    .service-card li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
    
    .service-card li::before {
        left: 0;
        width: 6px;
        height: 6px;
    }
    
    /* Services Cards Grid */
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .services-cards-wrapper h3 {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }
    
    /* Products Section */
    .products-section,
    .riman-section {
        padding: 2.5rem 1rem;
    }
    
    .products-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Community Cards */
    .community-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .community-card {
        padding: 1.5rem 1rem;
        height: auto;
        min-height: auto;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .community-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .community-card p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    /* Contact Section */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        text-align: left;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
        text-align: left;
    }
    
    .info-item {
        margin-bottom: 1.25rem;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .info-item i {
        font-size: 1.1rem;
        width: 35px;
        flex-shrink: 0;
    }
    
    .info-item div {
        text-align: left;
    }
    
    .info-item p,
    .info-item a {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .map-container {
        border-radius: 12px;
        overflow: hidden;
    }
    
    .map-container iframe {
        height: 280px;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-logo {
        max-width: 220px !important;
        margin: 0 auto 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
    }
    
    .footer-links ul {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
    }
    
    .social-links i {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
    
    /* WhatsApp Float Button */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    /* Scroll to Top */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 15px;
    }
    
    .scroll-to-top i {
        font-size: 1.1rem;
    }
    
    /* Counter Numbers */
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    /* Hamburger Menu */
    .hamburger {
        width: 40px;
        height: 35px;
        gap: 6px;
    }
    
    .hamburger span {
        width: 40px;
        height: 4px;
    }
    
    /* Nav Links */
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    /* Text adjustments */
    p, li, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    * {
        max-width: 100%;
    }
}

/* ===== SMALL MOBILE (375px - 424px) ===== */
@media screen and (min-width: 375px) and (max-width: 424px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE LANDSCAPE (425px - 767px) ===== */
@media screen and (min-width: 425px) and (max-width: 767px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 290px;
    }
    
    .content-wrapper {
        gap: 2.5rem;
    }
}

/* ===== TABLET PORTRAIT (768px - 1023px) ===== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }
    
    /* Hero */
    .hero {
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    /* Content */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-text {
        order: 2;
    }
    
    .gallery {
        order: 1;
    }
    
    /* Services */
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Community */
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ===== TABLET LANDSCAPE / SMALL DESKTOP (1024px - 1199px) ===== */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 1000px;
        padding: 0 40px;
    }
    
    /* Nav */
    .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem 0.85rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    /* Content */
    .content-wrapper {
        gap: 3.5rem;
    }
    
    /* Services */
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== DESKTOP (1200px - 1439px) ===== */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .gallery-grid {
        gap: 1.5rem;
    }
}

/* ===== LARGE DESKTOP (1440px - 1919px) ===== */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .gallery-grid {
        gap: 2rem;
    }
    
    .gallery-item img {
        height: 320px;
    }
}

/* ===== EXTRA LARGE DESKTOP (1920px+) ===== */
@media screen and (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    html {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .gallery-item img {
        height: 350px;
    }
    
    .section {
        padding: 6rem 0;
    }
}

/* ===== ORIENTACIÓN LANDSCAPE EN MÓVILES ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .slider-nav {
        bottom: 15px;
    }
}

/* ===== TOUCH DEVICES OPTIMIZATION ===== */
@media (hover: none) and (pointer: coarse) {
    /* Aumentar tamaño de áreas táctiles */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        min-width: 120px;
    }
    
    .lang-btn {
        min-height: 44px;
        min-width: 60px;
    }
    
    .slider-dot {
        width: 14px;
        height: 14px;
    }
    
    /* Desactivar hover effects */
    .gallery-item:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    /* Mejorar scroll */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .whatsapp-float,
    .slider-nav,
    .hamburger {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        min-height: auto;
        page-break-after: always;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-slide {
        transition: opacity 0.3s ease;
    }
}

/* ===== DARK MODE SUPPORT (Preparado para futuro) ===== */
@media (prefers-color-scheme: dark) {
    /* Mantener colores actuales por ahora, pero estructura lista */
    /* Se puede activar en el futuro si se requiere */
}

/* ===== FIXES ESPECÍFICOS PARA MEJOR RESPONSIVIDAD ===== */

/* Asegurar que las imágenes no se desborden */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mejorar el scroll en móviles */
body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/* Asegurar que los contenedores no se desborden */
.container,
.content-wrapper,
.gallery-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Mejorar el texto en móviles */
@media screen and (max-width: 768px) {
    p, li, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
    }
}

/* Optimizar servicios cards en móvil */
@media screen and (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-cards-wrapper h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* Mejorar el mapa en móviles */
@media screen and (max-width: 768px) {
    .map-container {
        border-radius: 15px;
        overflow: hidden;
    }
    
    .map-container iframe {
        height: 300px;
        width: 100%;
    }
}

/* Ajustar productos section */
@media screen and (max-width: 768px) {
    .products-content {
        padding: 1.5rem;
    }
    
    .products-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* Mejorar community cards */
@media screen and (max-width: 768px) {
    .community-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
}

/* Optimizar footer en móvil */
@media screen and (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===================================
   DESACTIVAR TODAS LAS ANIMACIONES Y MOVIMIENTOS
   Hacer todo estático, especialmente en móvil
   =================================== */

/* Desactivar todas las animaciones y transiciones en móvil */
@media screen and (max-width: 768px) {
    /* Excluir hamburger de la regla general */
    *:not(.hamburger):not(.hamburger *),
    *:not(.hamburger)::before,
    *:not(.hamburger)::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        will-change: auto !important;
    }
    
    /* EXCEPCIÓN: Mantener animación del hamburger */
    .hamburger span {
        transition: all 0.3s ease !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px) !important;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px) !important;
    }
    
    /* Desactivar animaciones específicas */
    .logo img,
    .footer-logo,
    .gallery-item,
    .service-card,
    .community-card,
    .btn,
    .whatsapp-float,
    .scroll-to-top,
    .hero-content,
    .section-title,
    .nav-link,
    .card-icon i,
    .info-item i,
    .social-links a i {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Desactivar hover effects */
    .gallery-item:hover,
    .service-card:hover,
    .community-card:hover,
    .btn:hover,
    .logo:hover img,
    .footer-logo:hover {
        transform: none !important;
        animation: none !important;
    }
    
    /* Desactivar efectos de scroll */
    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .scale-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Desactivar parallax y efectos de movimiento */
    .section,
    .hero,
    .hero-slide,
    .hero-content {
        transform: none !important;
        will-change: auto !important;
    }
    
    /* Desactivar efectos de hover en imágenes */
    .gallery-item img {
        transform: none !important;
        transition: none !important;
    }
    
    .gallery-item:hover img {
        transform: none !important;
    }
}

/* Desactivar animaciones también en desktop pero mantener transiciones básicas mínimas */
* {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
}

/* Desactivar transformaciones en hover */
.gallery-item:hover,
.service-card:hover,
.community-card:hover,
.btn:hover,
.logo:hover img,
.footer-logo:hover {
    transform: none !important;
}

/* EXCEPCIÓN: Mantener animación del hamburger en hover */
.hamburger:hover span {
    transition: all 0.3s ease !important;
}

/* Desactivar todas las animaciones de keyframes - sobrescribir con animaciones vacías */
@keyframes logoFloat {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes logoPulse {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes logoGlow {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes logoSpin {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes fadeInUp {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes gradientShift {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes iconPulse {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes iconBounce {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes waveMove {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes morphShape {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes spin {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes heroContentZoom {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes gradientText {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes shadowPulse {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes blink-caret {
    0%, 100% { transform: none; opacity: 1; }
}
@keyframes whatsappBounce {
    0%, 100% { transform: none; opacity: 1; }
}

/* Asegurar que los elementos no se muevan */
.gallery-item,
.service-card,
.community-card,
.logo img,
.footer-logo {
    position: static !important;
    transform: none !important;
}

/* Desactivar efectos de scroll reveal */
.fade-in,
.fade-in-left,
.fade-in-right,
.scale-in {
    opacity: 1 !important;
    transform: none !important;
}


/* ===================================
   BLOG STYLES
   =================================== */

/* Blog Hero */
.blog-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 120px;
    padding: 4rem 2rem;
}

.blog-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.blog-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

/* Blog Intro Section */
.blog-intro-section {
    padding: 4rem 0;
    background: var(--white);
}

.blog-intro {
    max-width: 900px;
    margin: 0 auto;
}

.blog-intro h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
}

.blog-intro h2:first-child {
    margin-top: 0;
}

.blog-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.blog-intro-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.blog-intro-images img {
    width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-intro-images img:hover {
    transform: scale(1.05);
}

/* Blog Articles Section */
.blog-articles-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    width: 100%;
    height: 1000px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Blog Section (Index Page) */
.blog-section {
    background: linear-gradient(135deg, var(--bg-color) 0%, #fff 100%);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-preview-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-preview-image {
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.1);
}

.blog-preview-content {
    padding: 1.5rem 2rem 2rem;
}

.blog-preview-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-preview-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

@media screen and (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-preview-image {
        height: 500px;
    }

    .blog-preview-content h3 {
        font-size: 1.2rem;
    }
}

/* Article Page Styles */
.article-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 120px;
    padding: 3rem 2rem;
}

.article-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.article-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--tertiary-color);
}

/* Article Content */
.article-content {
    padding: 4rem 0;
    background: var(--white);
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
}

.article-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
}

.article-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.article-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.article-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.article-images-grid img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.article-images-grid img:hover {
    transform: scale(1.05);
}

/* Article Contact Box */
.article-contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    color: var(--white);
}

.article-contact-box h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.article-contact-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.article-contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Articles */
.related-articles {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid var(--light-gray);
}

.related-articles h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Responsive Blog Styles */
@media screen and (max-width: 768px) {
    .blog-hero,
    .article-hero {
        margin-top: 120px;
        min-height: 300px;
        padding: 2rem 1.5rem;
    }
    
    .blog-hero .hero-title,
    .article-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .blog-intro h2,
    .article-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-intro p,
    .article-text p {
        font-size: 1rem;
    }
    
    .blog-intro-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-intro-images img {
        height: 600px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-card-image {
        height: 600px;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card-content h3 {
        font-size: 1.25rem;
    }
    
    .article-image-main {
        height: 380px;
        margin-bottom: 2rem;
    }
    
    .article-text h3 {
        font-size: 1.25rem;
    }
    
    .article-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-images-grid img {
        height: 500px;
    }
    
    .article-contact-box {
        padding: 2rem 1.5rem;
    }
    
    .article-contact-box h3 {
        font-size: 1.5rem;
    }
    
    .article-contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-contact-buttons .btn {
        width: 100%;
    }
    
    .related-articles {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .related-articles h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .blog-hero .hero-title,
    .article-hero .hero-title {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .blog-intro h2,
    .article-text h2 {
        font-size: 1.3rem;
    }
    
    .article-image-main {
        height: 300px;
    }
    
    .article-images-grid img {
        height: 600px;
    }
}

