 :root {
            --aspect-ratio: 1350 / 1080;
            --bg-color: #f8f9fa;
            --header-bg: #111111;
            --text-light: #ffffff;
            --text-dark: #333;
            --accent-color: #666;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
            
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- Header --- */
        header {
            width: 100%;
            background-color: #C5BA9F;
            color: #3F2D1F;
            padding: 60px 20px;
            text-align: center;
            box-sizing: border-box;
        }

        header h1 {
            font-size: 2.5rem;
            margin: 0 0 10px 0;
            letter-spacing: 1px;
        }

        header .info-container {
            opacity: 0.9;
        }

        header p {
            margin: 5px 0;
            font-size: 1.1rem;
            font-weight: 300;
        }

        /* --- Main Carrusel --- */
        main.carrusel {
            width: 100%;
            max-width: 900px;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1080 / 1350;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            background: #000;
        }

        .carousel-slide {
            display: none;
            width: 100%;
            height: 100%;
            transition: opacity 0.5s ease-in-out;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .active {
            display: block;
        }

        /* Botones de navegación */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            color: #000;
            padding: 18px 12px;
            cursor: pointer;
            border: none;
            font-size: 18px;
            user-select: none;
            transition: 0.3s;
            z-index: 10;
        }

        .prev { left: 0; border-radius: 0 8px 8px 0; }
        .next { right: 0; border-radius: 8px 0 0 8px; }

        .prev:hover, .next:hover { background-color: #fff; }

        /* Indicadores (Dots) */
        .dots-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 15;
        }

        .dot {
            cursor: pointer;
            height: 10px;
            width: 10px;
            background-color: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            transition: 0.3s;
        }

        .active-dot, .dot:hover {
            background-color: white;
            transform: scale(1.2);
        }

        /* Contenedor de Texto */
        .text-container {
            width: 100%;
            max-width: 600px;
            margin-top: 30px;
            padding: 20px;
            line-height: 1.8;
            text-align: center;
        }

        .text-container h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .text-container p {
            color: #555;
        }

           

         

        /* Estilos principales del botón */
        .container {
            display: flex;
            justify-content: center;
            align-content: center;
            margin-top: 50px;
            margin-bottom: 50px;
        }
        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #dc3545; /* Rojo tipo PDF */
            color: #ffffff;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

        /* Efecto al pasar el cursor (Hover) */
        .btn-download:hover {
            background-color: #bd2130;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        /* Efecto al hacer clic (Active) */
        .btn-download:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Estilo para el icono (SVG) */
        .btn-download svg {
            fill: currentColor;
            width: 20px;
            height: 20px;
        }
        