body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
p, a, span, div {
    font-family: 'Roboto', sans-serif;
}

@media (min-width: 1280px) {
    html {
        font-size: 17px;
    }
}

/* Fondo de "Aurora" moderno para el Hero */
.hero-bg {
    background-color: #f0f4f8;
    position: relative;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 98, 61, 0.15), transparent 40%),
                      radial-gradient(circle at 80% 70%, rgba(26, 55, 96, 0.15), transparent 40%);
    animation: pulse-bg 10s infinite alternate ease-in-out;
}
@keyframes pulse-bg {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    100% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

/* Botón CTA con gradiente y pulso */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    animation: pulse-cta 2.5s infinite;
    background-image: linear-gradient(to right, #FF623D, #F4876E);
    color: white;
    z-index: 1;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 98, 61, 0.4);
    animation-play-state: paused;
}
@keyframes pulse-cta {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 98, 61, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(255, 98, 61, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 98, 61, 0); }
}

/* Efecto Shine */
.shine-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
    z-index: 1;
}
.shine-button:hover::before {
    left: 100%;
}

/* Botón Secundario */
.secondary-button {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    color: #FF623D;
    border: 2px solid #FF623D;
    transition: all 0.3s ease;
    z-index: 1;
}
.secondary-button:hover {
    background-color: #FF623D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 98, 61, 0.2);
}

/* Animaciones de scroll */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Otros estilos */
.text-gradient-orange {
    background-image: linear-gradient(to right, #FF623D, #F4876E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
