 body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow-x: hidden;
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
        }

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.fade-slider > div {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 15s infinite;
}

.fade-slider > div:nth-child(1) {
    background-image: url('/images/bg1.jpg');
    animation-delay: 0s;
}

.fade-slider > div:nth-child(2) {
    background-image: url('/images/bg2.jpg');
    animation-delay: 5s;
}

.fade-slider > div:nth-child(3) {
    background-image: url('/images/bg3.jpg');
    animation-delay: 10s;
}

@keyframes fade {
    0%   { opacity: 1; }
    30%  { opacity: 0; }
    60%  { opacity: 0; }
    100% { opacity: 1; }
}

.content-overlay {
    position: relative;
    z-index: 10;
}

.btn-ingreso {
    position: absolute; /* para posicionarlo sobre el slider */            
    z-index: 15;
    right: 20px;
    color: green;
}

.btn-descubre {
    position: absolute; /* para posicionarlo sobre el slider */            
    z-index: 15;
}

.text-naranja{
    color:#de651f;
}

.text-verde{
    color: #2b442b;
}

.btn-verde{
    background: #2b442b;
    color: white;
}

.btn-verde:hover{
    color: #2b442b;
    background: white;
    border: solid #2b442b;
}

.btn-naranja{
    background: #de651f;
    color: white;
}

.btn-naranja:hover{
    color: #de651f;
    background: white;
    border: solid #de651f;
}

.instagram i.fab.fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem; /* puedes ajustar tamaño si quieres */
    transition: transform 0.3s ease;
}
.instagram i.fab.fa-instagram:hover {
    transform: scale(1.2);
}

.tiktok i.fab.fa-tiktok {
    background: linear-gradient(135deg, #69C9D0 0%, #EE1D52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}
.tiktok i.fab.fa-tiktok:hover {
    transform: scale(1.2);
}

.facebook i.fab.fa-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #3b5998 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}
.facebook i.fab.fa-facebook:hover {
    transform: scale(1.2);
}

.youtube i.fab.fa-youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}
.youtube i.fab.fa-youtube:hover {
    transform: scale(1.2);
}

section#proposito {
    position: relative;
    z-index: 51;
}

section#redes {
    position: relative;
    z-index: 50;
}

section#ubicacion {
    position: relative;
    z-index: 52;
}

a:link{
    text-decoration: none;
}

footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background-color: #000;
    border-top: 1px solid #333;
}

footer a:hover {
    text-decoration: underline;
    color: #28a745; /* verde */
}

.btn-wpp {
    position: fixed;
    bottom: -100px;
    right: 20px;
    width: 95px;
    height: 95px;
    background-image: url('/images/icons/whatsapp.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 999;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

/* Animación de entrada */
@keyframes slideUp {
    to {
        bottom: 20px;
        opacity: 1;
    }
}

/* Tooltip */
.tooltip-wpp {
    position: absolute;
    bottom: 65px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Mostrar tooltip al hacer hover */
.btn-wpp:hover .tooltip-wpp {
    opacity: 1;
    transform: translateY(0);
}

/*Plan OCR*/
.plan-card {
    width: 320px;
    background: #0e0e0e;
    background-image: radial-gradient(rgba(255,120,0,0.15), transparent 70%);
    border: 2px solid #ff6a00;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    box-shadow:
        0 0 20px rgba(255, 90, 0, 0.4),
        inset 0 0 20px rgba(255, 90, 0, 0.2);
    transition: 0.35s;
}

.plan-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow:
        0 0 35px rgba(255, 90, 0, 0.8),
        inset 0 0 30px rgba(255, 90, 0, 0.3);
}

.plan-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #ff6a00;
    letter-spacing: 1.5px;
}

.plan-price {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin: 15px 0 25px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 90, 0, 0.5);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    margin: 12px 0;
    font-size: 16px;
    opacity: 0.85;
    display: flex;
    align-items: center;
}

.plan-btn {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    border: none;
    padding: 14px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.4);
    z-index: 88;
}

.plan-btn:hover {
    background: linear-gradient(90deg, #ff8a1f, #ff5020);
    box-shadow: 0 0 20px rgba(255, 90, 0, 0.7);
    z-index: 88;
}

.imagenEvento{
    height: 200px;
    object-fit: cover;  
}