:root {
            --primary: #e63946;
            --dark: #1a1a1a;
            --light: #f4f4f4;
            --white: #ffffff;
            --gray: #666;
            --header-height: 100px;
            --pastel:#f98eca;
            --carmesi:#d31031;
            --amarillo:#f9d756; /* #ffe040 */
            --half: 50%;
            --working:#36B2E7;
            --orange: #f78e05;
            --virtual: #12a6e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            padding-top: var(--header-height);
        }

        /* --- NAVEGACIÓN --- */
        header {
            background: var(--amarillo);
            height: var(--header-height);
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .working{
            background-color: var(--working);
        }

        .logo-placeholder {
            width: 180px;
            height: 45px;
            /*background: #eee;
            border: 2px dashed #ccc;
            */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: #999;
            text-transform: uppercase;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            padding: 0 1.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-left: 20px;
        }

        .social-icons a {
            color: var(--dark);
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .social-icons a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* --- MENÚ HAMBURGUESA --- */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            transition: 0.3s;
        }

        /* --- CONTENIDO GENERAL --- */
        .hero {
            padding: 5rem 1rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 5px;
            margin-top: 1rem;
        }

        .hers{
            display: flex;
            flex-direction: row;
            width: 100%;
            justify-content: center;
            
        }
        .photo-profile{
            width: var(--half);
        }
        .profile{
            width: var(--half);
            max-width: 500px;
        }

        .rotate-20 {
            display: inline-block;
            transform: rotate(20deg); /* Rotates clockwise by 45 degrees */
            /* By default, rotation occurs around the element's center */
        }

        .calendar-section {
            background: var(--light);
            padding: 4rem 1rem;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .calendar-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            margin-top: 2rem;
        }

        .calendar-table th, .calendar-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .calendar-table th { background: var(--dark); color: var(--white); }

        .status-soldout { color: var(--primary); font-weight: bold; }
        .status-available { color: #2a9d8f; font-weight: bold; }
        .status-limited {color: var(--orange); font-weight: bold;}

        .event-virtual { color: var(--virtual); font-weight: bold;}
        .event-presencial {color: var(--presencial); font-weight: bold;}

        /* Por qué venir */
        .features {
            padding: 4rem 1rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            padding: 2rem;
            border-left: 4px solid var(--dark);
            background: #fafafa;
        }

        blockquote {
            font-size: 1.5rem;
            font-style: italic;
            text-align: center;
            margin: 3rem 0;
            padding: 0 2rem;
            color: var(--gray);
        }


        footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 1rem;
            text-align: center;
        }

        /* --- BARRA LATERAL FLOTANTE --- */
.side-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 2000;
}

.side-link {
    display: flex;
    align-items: center;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    padding: 12px;
    margin-bottom: 5px;
    border-radius: 5px 0 0 5px;
    transition: all 0.3s ease;
    width: 50px; /* Ancho inicial (solo icono) */
    overflow: hidden;
    white-space: nowrap;
}

/* Efecto Hover: se expande a la izquierda */
.side-link:hover {
    width: 160px;
    background: var(--primary);
    transform: translateX(-5px);
}

.side-link i {
    font-size: 1.5rem;
    min-width: 26px;
    text-align: center;
}

.side-link span {
    margin-left: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Colores específicos opcionales */
.side-link.whatsapp:hover { background-color: #25d366; }
.side-link.youtube:hover { background-color: #ff0000; }
.side-link.calendar-btn:hover { background-color: var(--primary); }


/* --- RESPONSIVE --- */
@media (max-width: 992px) {
            .nav-links {
                position: absolute;
                right: -100%;
                top: var(--header-height);
                width: 100%;
                height: calc(100vh - var(--header-height));
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                transition: 0.5s;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .hamburger {
                display: flex;
            }

            .social-icons {
                margin-left: 0;
                margin-top: 20px;
            }

            h1 { font-size: 2.5rem; }

            .under{
                width: 990px;
                height: auto;
            }
}

@media (max-width: 768px){
    .under{
        width: 768px;
        height: auto;
    }
}

/* Ocultar en móviles muy pequeños si molesta */
@media (max-width: 480px) {
    .side-bar {
        top: auto;
        bottom: 20px;
        transform: none;
    }
    .side-link:hover {
        width: 50px; /* No expandir en móvil para no tapar pantalla */
    }
    .under{
        width: 420px;
        height: auto;
    }
}