/**
 * Casa La Peña - Estilos personalizados para bloques
 * Este archivo contiene todos los estilos específicos para los bloques de Gutenberg
 * Versión actualizada con mejoras responsive para móvil
 */

/* ==========================================================================
   BLOQUE: Hero Section - ACTUALIZADO CON MEJORAS MÓVIL
   ========================================================================== */
.clp-hero {
    position: relative;
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a5f7a 0%, #57c4e5 100%);
    margin: 20px;
    border-radius: 20px;
}

.clp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.clp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.clp-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.clp-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.clp-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Botón primario específico para hero */
.clp-hero .clp-btn-primary {
    background: #22c55e;
    color: white;
    padding: 14px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.clp-hero .clp-btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Botón secundario blanco */
.clp-btn-secondary-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.clp-btn-secondary-white:hover {
    background: white;
    color: #1a5f7a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Features mejoradas del hero */
.clp-hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.clp-hero-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.clp-hero-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.clp-hero-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.clp-hero-feature-value {
    color: white;
    font-size: 1.2rem;
    display: block;
    font-weight: 700;
}

.clp-hero-feature-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

/* Flecha de scroll */
.clp-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* ==========================================================================
   BLOQUE: Características (Features)
   ========================================================================== */
.clp-features {
    padding: var(--clp-spacing-xl) 0;
}

.clp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--clp-spacing-md);
    margin-top: var(--clp-spacing-lg);
}

.clp-feature-item {
    text-align: center;
    padding: var(--clp-spacing-md);
}

.clp-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--clp-spacing-sm);
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--clp-transition);
}

.clp-feature-item:hover .clp-feature-icon {
    transform: scale(1.1);
    background: var(--clp-primary);
}

.clp-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--clp-spacing-xs);
    color: var(--clp-dark);
}

/* ==========================================================================
   BLOQUE: Galería Preview
   ========================================================================== */
.clp-gallery-preview {
    padding: var(--clp-spacing-xl) 0;

    border-radius: 20px;
}

.clp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--clp-spacing-sm);
    margin-top: var(--clp-spacing-lg);
}

.clp-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--clp-radius-md);
    height: 250px;
    cursor: pointer;
    box-shadow: var(--clp-shadow-md);
    transition: var(--clp-transition);
}

.clp-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--clp-shadow-xl);
}

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

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

.clp-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: var(--clp-spacing-md);
    transform: translateY(100%);
    transition: var(--clp-transition);
}

.clp-gallery-item:hover .clp-gallery-overlay {
    transform: translateY(0);
}

/* ==========================================================================
   BLOQUE: Testimonios
   ========================================================================== */
.clp-testimonials {
    padding: var(--clp-spacing-xl) 0;
    background: var(--clp-white);
}

.clp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--clp-spacing-md);
    margin-top: var(--clp-spacing-lg);
}

.clp-testimonial-card {
    background: var(--clp-bg-light);
    padding: var(--clp-spacing-md);
    border-radius: var(--clp-radius-lg);
    position: relative;
    transition: var(--clp-transition);
}

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

.clp-testimonial-quote {
    font-size: 2.5rem;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.clp-testimonial-text {
    font-style: italic;
    color: var(--clp-gray);
    margin-bottom: var(--clp-spacing-sm);
    line-height: 1.6;
}

.clp-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--clp-spacing-sm);
    margin-top: var(--clp-spacing-sm);
}

.clp-testimonial-avatar {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.clp-testimonial-info {
    flex: 1;
}

.clp-testimonial-name {
    font-weight: 600;
    color: var(--clp-dark);
    margin-bottom: 2px;
}

.clp-testimonial-source {
    font-size: 0.875rem;
    color: var(--clp-gray);
}

.clp-testimonial-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-top: 5px;
}

/* ==========================================================================
   BLOQUE: Anfitriones
   ========================================================================== */
.clp-hosts {
    padding: var(--clp-spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.clp-hosts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--clp-spacing-xl);
    align-items: center;
    margin-top: var(--clp-spacing-lg);
}

.clp-hosts-image {
    position: relative;
}

.clp-hosts-image img {
    width: 100%;
    border-radius: var(--clp-radius-lg);
    box-shadow: var(--clp-shadow-xl);
}

.clp-hosts-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #22c55e;
    color: white;
    padding: 10px 20px;
    border-radius: var(--clp-radius-full);
    font-weight: 600;
    box-shadow: var(--clp-shadow-md);
    transform: rotate(15deg);
}

.clp-hosts-info h3 {
    font-size: 2rem;
    margin-bottom: var(--clp-spacing-sm);
    color: #22c55e;
}

.clp-hosts-stats {
    display: flex;
    gap: var(--clp-spacing-md);
    margin-top: var(--clp-spacing-md);
}

.clp-host-stat {
    text-align: center;
}

.clp-host-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    display: block;
}

.clp-host-stat-label {
    color: var(--clp-gray);
    font-size: 0.875rem;
}

/* ==========================================================================
   BLOQUE: Entorno
   ========================================================================== */
.clp-surroundings {
    padding: var(--clp-spacing-xl) 0;
}

.clp-surroundings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--clp-spacing-md);
    margin-top: var(--clp-spacing-lg);
}

.clp-surrounding-card {
    position: relative;
    height: 300px;
    border-radius: var(--clp-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.clp-surrounding-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--clp-transition);
}

.clp-surrounding-card:hover img {
    transform: scale(1.1);
}

.clp-surrounding-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--clp-spacing-md);
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.clp-surrounding-distance {
    display: inline-block;
    background: #22c55e;
    padding: 4px 12px;
    border-radius: var(--clp-radius-full);
    font-size: 0.875rem;
    margin-top: 5px;
}

/* ==========================================================================
   BLOQUE: 4 Estaciones
   ========================================================================== */
.clp-seasons {
    padding: var(--clp-spacing-xl) 0;
    border-radius: 20px;
}

.clp-seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--clp-spacing-lg);
    margin-top: var(--clp-spacing-lg);
}

.clp-season-card {
    display: flex;
    align-items: center;
    gap: var(--clp-spacing-md);
    background: white;
    padding: var(--clp-spacing-md);
    border-radius: var(--clp-radius-lg);
    box-shadow: var(--clp-shadow-md);
    transition: var(--clp-transition);
}

.clp-season-card:hover {
    transform: translateX(10px);
    box-shadow: var(--clp-shadow-xl);
}

.clp-season-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
}

.clp-season-card h4 {
    color: #22c55e;
    margin-bottom: 5px;
}

/* ==========================================================================
   BLOQUE: CTA Final
   ========================================================================== */
.clp-cta-final {
    padding: var(--clp-spacing-xl) 0;
    background: linear-gradient(135deg, var(--clp-primary) 0%, #22c55e 100%);
    color: white;
    text-align: center;
}

.clp-cta-final h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--clp-spacing-sm);
}

.clp-cta-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: var(--clp-spacing-md) 0;
}

.clp-cta-price small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

/* ==========================================================================
   BLOQUE: Pet Friendly
   ========================================================================== */
.clp-pet-friendly {
    padding: var(--clp-spacing-xl) 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* ==========================================================================
   BLOQUE: Ubicación con Mapa
   ========================================================================== */
.clp-location-map {
    padding: var(--clp-spacing-xl) 0;
    
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   BLOQUE: Guía de Reserva (Sin fondo)
   ========================================================================== */
.clp-booking-guide {
    padding: 0px 0 40px;
    position: relative;
    overflow: hidden;
}

.clp-booking-guide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.clp-booking-guide-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.clp-booking-guide-subtitle {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 50px;
}

/* DESTACADO: Ahorro directo */
.clp-direct-booking-highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #22c55e;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.clp-highlight-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #ef4444;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.clp-direct-booking-highlight h3 {
    font-size: 1.75rem;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.clp-direct-booking-highlight > p {
    color: #636e72;
    margin-bottom: 30px;
    font-size: 1.125rem;
}

.clp-platform-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.clp-platform-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    min-width: 180px;
}

.clp-platform-item.clp-direct {
    border: 2px solid #22c55e;
    background: #f0fdf4;
}

.clp-platform-logo {
    width: 40px;
    height: 40px;
    fill: #1a5f7a;
}

.clp-direct-icon {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clp-platform-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.clp-platform-name {
    font-weight: 600;
    color: #1a5f7a;
    font-size: 1rem;
}

.clp-platform-price {
    font-size: 0.875rem;
    color: #ef4444;
}

.clp-platform-price.clp-highlight {
    color: #22c55e;
    font-weight: 600;
}

.clp-vs {
    font-weight: 700;
    color: #636e72;
    font-size: 1.25rem;
}

.clp-savings-message {
    margin-top: 20px;
    font-size: 1.125rem;
    color: #1a5f7a;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
}

/* Beneficios */
.clp-booking-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.clp-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.clp-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #22c55e;
}

.clp-benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.clp-benefit-text strong {
    display: block;
    color: #1a5f7a;
    font-size: 1rem;
    margin-bottom: 5px;
}

.clp-benefit-text p {
    margin: 0;
    font-size: 0.875rem;
    color: #636e72;
}

/* Proceso de reserva */
.clp-booking-process {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    margin-bottom: 40px;
}

.clp-booking-process h3 {
    font-size: 1.75rem;
    color: #1a5f7a;
    margin-bottom: 30px;
}

.clp-process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.clp-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.clp-step-number {
    width: 40px;
    height: 40px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.clp-step p {
    color: #636e72;
    margin: 0;
}

.clp-step-arrow {
    color: #22c55e;
    font-size: 1.5rem;
    flex: 0;
}

/* CTA con flecha */
.clp-booking-cta {
    margin-top: 40px;
}

.clp-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.clp-arrow-container {
    display: inline-block;
}

.clp-arrow-down {
    color: #22c55e;
    animation: bounceDown 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(34, 197, 94, 0.3));
}

/* Animaciones */
@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

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





/* ==========================================================================
   RESPONSIVE - TABLETS Y MÓVILES GRANDES (768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Hero responsive mejorado */
    .clp-hero {
        min-height: 100vh;
        height: auto;
        margin: 10px;
        border-radius: 15px;
    }
    
    .clp-hero-content {
        padding: 1.5rem;
    }
    
    .clp-hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    
    .clp-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .clp-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .clp-hero .clp-btn,
    .clp-hero .clp-btn-primary,
    .clp-btn-secondary-white {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }
    
    .clp-hero-features {
        gap: 1rem;
    }
    
    .clp-hero-feature-card {
        padding: 0.75rem 1.25rem;
        min-width: 140px;
        flex: 1 1 calc(50% - 0.5rem);
    }
    
    .clp-hero-scroll {
        bottom: 15px;
    }
    
    /* Otros bloques responsive */
    .clp-hosts-content,
    .clp-surroundings-grid {
        grid-template-columns: 1fr;
    }
    
    .clp-seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .clp-season-card {
        flex-direction: column;
        text-align: center;
    }
    
    .clp-gallery-grid,
    .clp-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .clp-btn {
        width: 100%;
        text-align: center;
    }

.clp-booking-guide {
        padding: 40px 0 30px;
    }
    
    .clp-direct-booking-highlight {
        padding: 30px 20px;
    }
    
    .clp-highlight-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .clp-platform-comparison {
        flex-direction: column;
        gap: 15px;
    }
    
    .clp-platform-item {
        width: 100%;
        justify-content: center;
    }
    
    .clp-vs {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    
    .clp-booking-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clp-benefit-item {
        text-align: left;
    }
    
    .clp-booking-process {
        padding: 30px 20px;
    }
    
    .clp-process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .clp-step-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    
    .clp-cta-text {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   RESPONSIVE - MÓVILES ESTÁNDAR (480px)
   ========================================================================== */
@media (max-width: 480px) {
    .clp-hero {
        margin: 0;
        border-radius: 20px;
        min-height: 100vh;
    }
    
    .clp-hero-content {
        padding: 1rem;
    }
    
    .clp-hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .clp-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .clp-hero .clp-btn,
    .clp-hero .clp-btn-primary,
    .clp-btn-secondary-white {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .clp-hero-features {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .clp-hero-feature-card {
        width: 100%;
        flex: 1 1 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem 1.5rem;
    }
    
    .clp-hero-feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0;
    }
    
    .clp-hero-feature-value {
        font-size: 1.1rem;
    }
    
    .clp-hero-feature-label {
        font-size: 0.8rem;
    }
    
    /* Ajustes para otros bloques en móvil pequeño */
    .clp-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .clp-testimonial-card {
        padding: 1.5rem;
    }
    
    .clp-surrounding-card {
        height: 250px;
    }
}

/* ==========================================================================
   RESPONSIVE - MÓVILES PEQUEÑOS (360px)
   ========================================================================== */
@media (max-width: 360px) {
    .clp-hero-title {
        font-size: 1.75rem;
    }
    
    .clp-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .clp-hero-feature-card {
        padding: 0.875rem 1.25rem;
    }
    
    /* Ajustes adicionales para pantallas muy pequeñas */
    .clp-testimonial-quote {
        font-size: 2rem;
    }
    
    .clp-host-stat-number {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   RESPONSIVE - MÓVILES EXTRA PEQUEÑOS (320px)
   ========================================================================== */
@media (max-width: 320px) {
    .clp-hero-content {
        padding: 0.75rem;
    }
    
    .clp-hero-title {
        font-size: 1.5rem;
    }
    
    .clp-hero-subtitle {
        font-size: 0.875rem;
    }
    
    .clp-hero .clp-btn,
    .clp-hero .clp-btn-primary,
    .clp-btn-secondary-white {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   RESPONSIVE - LANDSCAPE Y ALTURAS PEQUEÑAS
   ========================================================================== */
@media (max-height: 700px) and (max-width: 768px) {
    .clp-hero {
        min-height: auto;
        padding: 3rem 0;
        border-radius: 20px;
    }
    
    .clp-hero-features {
        margin-bottom: 1rem;
    }
    
    .clp-hero-scroll {
        display: none;
    }
}