/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5; /* Fondo neutro */
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Container for Desktop Limit */
.landing-container {
    width: 100%;
    max-width: 500px; /* Limite ancho máximo desktop */
    background-color: #fff;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Sections */
section {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden; /* Prevent spillover */
}

/* Images */
section img {
    width: 100%;
    display: block;
    height: auto; /* Mantener proporción vertical */
}

/* CTA Button Styles */
.btn-cta {
    overflow: hidden;
    position: absolute;
    bottom: 20px; /* Ubicación inferior por defecto */
    left: 50%;
    transform: translateX(-50%);
    
    /* Styling */
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #9C5231, #8b4524); /* Example vibrant gradient */
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    z-index: 10;
    
    /* Animations */
    animation: pulse-animation 2s infinite ease-in-out;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 56, 32, 0.268);
}

/* Hover State */
.btn-cta:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 43, 0.6);
    filter: brightness(1.1);
}

/* Active/Click State */
.btn-cta:active {
    transform: translateX(-50%) scale(0.95);
}

/* Keyframe Animation: Scale + Micro Vertical Move + Glow/Shadow */
@keyframes pulse-animation {
    0% {
        transform: translateX(-50%) scale(1) translateY(0);
        box-shadow: 0 0 0 0 rgba(151, 38, 18, 0.7);
    }
    50% {
        transform: translateX(-50%) scale(1.05) translateY(-3px);
        box-shadow: 0 0 20px 10px rgba(255, 75, 43, 0);
    }
    100% {
        transform: translateX(-50%) scale(1) translateY(0);
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
    }
}

/* Specific Adjustments per Section if needed (example) */
/* Can customize .section-hero .btn-cta { bottom: 15%; } etc. */

/* Ripple Effect Styles (for JS) */
.ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    pointer-events: none;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
