/* ===================================
   ARAGON Inmobiliaria - Estilos Personalizados
   =================================== */

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Tipografía */
body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Animación del botón de WhatsApp */
.whatsapp-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Hero Background */
.hero-bg {
    background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(30, 58, 95, 0.7)),
                      url('../img/lote-premium-playa-chancay.jpg');
    background-size: cover;
    background-position: center;
}

/* Gradientes corporativos */
.gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F59E0B 50%, #D4AF37 100%);
}

.gradient-turquoise {
    background: linear-gradient(135deg, #0EA5C0 0%, #0891B2 100%);
}

.gradient-deep-blue {
    background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
}

/* Utilidades de color */
.text-gold {
    color: #D4AF37;
}

.text-turquoise {
    color: #0EA5C0;
}

.border-gold {
    border-color: #D4AF37;
}

.bg-corporate-blue {
    background-color: #1E3A5F;
}
