@charset "utf-8";
/* CSS Document */


.Oculto {
	display: none;
}
 .flotante {
            position: fixed;
            bottom: 30px; /* Distancia desde el borde inferior */
            right: 20px;   /* Distancia desde el borde izquierdo */
            width: 70px; /* Ancho de la imagen */
            height: 70px; /* Alto de la imagen */
	        background-color: #;  /* Fondo Trasparente div */
        }
.videoyn {
      width: 100%; /* Ancho 100% del contenedor */
      height: auto; /* Altura proporcional */
     
    }
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporción 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ColorNegro {
	color: #060000;
}
        .cookie-consent-container {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            text-align: center;
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: none; /* Oculto por defecto, se muestra con JS */
            border: 1px solid #ddd;
        }
        .cookie-consent-container h2 {
            color: #333;
            margin-top: 0;
            font-size: 1.8em;
        }
        .cookie-consent-container p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 1em;
        }
        .cookie-consent-container a {
            color: #007bff;
            text-decoration: none;
        }
        .cookie-consent-container a:hover {
            text-decoration: underline;
        }
        .buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }
        .buttons button {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .buttons .accept-all {
            background-color: #28a745;
            color: white;
        }
        .buttons .accept-all:hover {
            background-color: #218838;
        }
        .buttons .customize {
            background-color: #6c757d;
            color: white;
        }
        .buttons .customize:hover {
            background-color: #5a6268;
        }
        .buttons .reject-all {
            background-color: #dc3545;
            color: white;
        }
        .buttons .reject-all:hover {
            background-color: #c82333;
        }

        /* Estilos para el modal de personalización (ejemplo básico) */
        .modal {
            display: none; /* Oculto por defecto */
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: #fefefe;
            margin: auto;
            padding: 30px;
            border: 1px solid #888;
            width: 80%;
            max-width: 700px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            text-align: left;
        }
        .modal-content h3 {
            margin-top: 0;
            color: #333;
            font-size: 1.5em;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .modal-content .close-button {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        .modal-content .close-button:hover,
        .modal-content .close-button:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .consent-option {
            margin-bottom: 15px;
        }
        .consent-option label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
            color: #444;
        }
        .consent-option p {
            font-size: 0.9em;
            color: #777;
            margin-left: 25px;
        }
        .modal-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 30px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        .modal-buttons button {
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.95em;
            font-weight: bold;
        }
        .modal-buttons .save-preferences {
            background-color: #007bff;
            color: white;
            border: none;
        }
        .modal-buttons .save-preferences:hover {
            background-color: #0056b3;
        }
        .modal-buttons .cancel {
            background-color: #e0e0e0;
            color: #333;
            border: 1px solid #ccc;
        }
        .modal-buttons .cancel:hover {
            background-color: #d0d0d0;
        }
    
.texto-ventajas {
  font-size: 22px;
  font-family: "Times New Roman", Times, serif;
  color: #006400; /* Verde oscuro */
}

.imagen-flotante {
    /* **IMPRESCINDIBLE:** Quita el elemento del flujo normal del documento */
    position: absolute; 
    
    /* Define la posición en la esquina inferior derecha */
    bottom: 0; /* Pega la imagen al borde inferior del contenedor */
    right: 0;  /* Pega la imagen al borde derecho del contenedor */
    
    /* Tamaño solicitado: 200x200 */
    width: 200px; 
    height: 200px;
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
    
    /* Márgenes solicitados: 20px inferior, 20px derecho */
    /* Usamos 'margin' para crear la separación con el borde del contenedor */
    margin-right: 20px; 
    margin-bottom: 20px;
    
    /* Opcional: añade un estilo visual */
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

	
	.imagen-flotante {
    /* 1. Dimensiones de la imagen */
    width: 70px;
    height: 70px;
    
    /* 2. Posicionamiento Fijo (se mantiene al hacer scroll) */
    position: fixed; 
    
    /* 3. Ubicación en la esquina inferior derecha */
    right: 5px;   /* Distancia del borde derecho de la ventana */
    bottom: 5px;  /* Distancia del borde inferior de la ventana */
    
    /* Opcional: Para asegurar que esté por encima de otros elementos */
    z-index: 1000; 
    
    /* Opcional: Estilos para que se vea bien (ejemplo) */
   /* border: 3px solid #007BFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
	