:root {
    /* Color Palette V2 */
    --primary-blue: #3004E1;
    /* Azul verdoso suave y moderno */
    --secondary-orange: #A601B3;
    /* Naranja vibrante para acentos */
    --light-bg: #ecf0f1;
    /* Fondo gris muy claro */
    --dark-bg: #34495e;
    /* Gris azulado oscuro para contraste */
    --text-dark: #2c3e50;
    /* Gris carbón para texto principal */
    --text-light: #ecf0f1;
    /* Gris claro para el texto en fondos oscuros */
    --card-bg: #fff;
    /* Fondo blanco para las tarjetas */

    /* Shadows V2 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.2);

    /* Borders V2 */
    --border-radius-lg: 18px;
    --border-radius-md: 10px;
    --border-radius-sm: 5px;
}

/*
         * Base Styles and Typography V2
         */
body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    box-sizing: border-box;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/*
         * Hero Section for Demo Page
         */
.hero-demo {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    color: var(--text-light);
    padding: 80px 20px;
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 1;
}

.hero-demo h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    margin: 0 0 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-demo p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/*
         * Content Section
         */
.content-section {
    padding: 50px 0;
    text-align: center;
}

.content-section h1,
.content-section p {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--text-dark);
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.form-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 150px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-size: 14px;             /* ← Tamaño de fuente */
    min-width: auto;             /* ← Ancho mínimo */
    height: auto;                /* ← Altura */
}

.form-button i {
    margin-right: 10px;
    font-size: 1.1em;
}

.form-button:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    margin: 0 auto;
    max-width: 800px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-demo {
        padding: 60px 15px;
    }

    .hero-demo h1 {
        font-size: 2.5em;
    }

    .hero-demo p {
        font-size: 1.1em;
    }

    .form-buttons {
        flex-direction: column;
    }
}