        :root {
            --blanco: #ffffff;
            --naranja: #e60a14; /* Color sofisticado sugerido #fc4b08*/
            --verde: #55a00f;
            --oscuro: rgba(0, 0, 0, 0.7);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Quicksand', sans-serif;
        }

        body {
            background: url('../images/fondo.png') no-repeat center center fixed;
			font-family: 'Quicksand', sans-serif;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blanco);
            overflow: hidden;
        }

        /* Capa de sofisticación sobre el fondo */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: radial-gradient(circle, rgba(255,255,255,0.1) 5%, rgba(255,255,255,0.2) 100%);*/
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 40px;
            /*background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 25px 45px rgba(0,0,0,0.2);*/
        }

        .logo {
            width: 180px;
            margin-bottom: 30px;
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

        h1 {
            font-size: 3rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 10px;
            /*font-family: 'Quicksand', sans-serif;*/
			font-weight: 700; /* Si seleccionaste el peso 700 */
        }

        p.tagline {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--naranja);
        }

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

        .preview-images img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            border: 1px solid var(--naranja);
            transition: transform 0.3s ease;
        }

        .preview-images img:hover {
            transform: scale(1.05);
        }

        .contact-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 30px;
        }

        .qr-code {
            width: 100px;
            background: white;
            padding: 5px;
            border-radius: 10px;
        }

        .info-text {
            text-align: center;
        }

        .btn-whatsapp {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 20px;
            background: var(--naranja);
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: 0.3s;
        }

        .btn-whatsapp:hover {
            background: var(--verde);
        }

        @media (max-width: 600px) {
            h1 { font-size: 1.8rem; }
            .preview-images { display: none; } /* Ocultar en móviles pequeños para limpieza */
            .contact-section { flex-direction: column; text-align: center; }
            .info-text { text-align: center; }
        }