/* ==========================================================================
   1. VARIABLES DE DISEÑO & CONFIGURACIÓN BASE
   ========================================================================== */
   
   
   
:root {
    --bg-dark-radial: radial-gradient(circle at 50% 30%, #161b22 0%, #0d1117 100%);
    --bg-card: rgba(22, 27, 34, 0.7);
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-gradient: linear-gradient(135deg, #b38728 0%, #fbf5b7 50%, #9aa047 100%);
    --gold-text-gradient: linear-gradient(135deg, #ffe082 0%, #d4af37 100%);
    --text-main: #f0f6fc;
    --text-muted: #8b949e;
    --font-family: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #0d1117;
    background-image: url('fondo.png');
    
    /* CONFIGURACIÓN PARA TU TIRA DE DEGRADADO */
    background-repeat: repeat-y;      /* Se repite únicamente en vertical (hacia abajo) */
    background-position: top center;  /* Se alinea perfectamente al centro horizontal y arriba */
    background-size: auto;            /* Mantiene el tamaño original de 1400px de ancho */

    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

/* Contenedor Maestro alineado al centro del viewport */
.site-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

/* ==========================================================================
   2. HEADER & LOGO (ESTILO DORADO)
   ========================================================================== */
.main-header {
    text-align: center;
}

.logo-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

/* Simulación temporal de diseño de circuitos dorados en CSS */
.brand-logo-mock {
    width: 191px;
    height: 215px;
    background: transparent;
	background-image: url('logo.jpg');

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0.5rem;
}



.brand-subtext {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold-light);
    font-weight: 500;
    opacity: 0.8;
}

/* ==========================================================================
   3. HERO SECTION (TEXTOS PRINCIPALES)
   ========================================================================== */
.hero-section {
    text-align: center;
    margin-bottom: 3.5rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 6px;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.sub-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-main);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.status-message {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==========================================================================
   4. GRID DE TARJETAS (FEATURES / PRODUCTOS)
   ========================================================================== */
   /* Esto evita que el navegador le ponga subrayado al texto o altere los colores */
.card-link {
    text-decoration: none;
    color: inherit; /* Hereda los colores que ya configuraste para tus h3 y p */
    display: block; /* Hace que el enlace use el 100% del tamaño del cuadro */
    width: 100%;
    height: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(214, 175, 87, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Efecto de iluminación interactiva al pasar el mouse */
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 175, 87, 0.4);
    box-shadow: 0 10px 30px rgba(214, 175, 87, 0.1);
}

.card-icon-container {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 0.7rem;
}

.gold-highlight {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* ==========================================================================
   5. FOOTER & BARRA DE CONTACTO
   ========================================================================== */
.main-footer {
    margin-top: auto;
    border-top: 1px solid rgba(240, 246, 252, 0.1);
    padding-top: 2rem;
}

.footer-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.launch-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.contact-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold-primary);
}

.icon-whatsapp { color: #25D366; }
.icon-email { color: #84b6f4; }

.social-media {
    display: flex;
    gap: 1rem;
}

.social-media a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-title { font-size: 2.3rem; }
    .sub-title { font-size: 1.1rem; }
    
    .footer-top-bar {
        flex-direction: column;
        text-align: center;
    }

    .contact-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}