html{

    scroll-behavior: smooth;
    
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-120deg, #f160001c 3%, #ffffff 25%);
    transition: background 0.3s, color 0.3s

}



/* Header & Navigation */
header {
    background: #ffffff;
    padding: 15px 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    
}



nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg,rgba(241, 98, 0, 1) 0%, rgba(255, 179, 128, 1) 50%, rgba(255, 255, 255, 1) 100%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:15px 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
}

.logo {
    font-size: 5px;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: center; 
    align-items: center;
    width:50%;
}

.logo img {
    width: 100px;
    max-width:100%;
    
}

@media (max-width: 1024px) {
    .logo img {
        width: 100px; /* Adjust logo size for tablets */
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 90px; /* Adjust logo size for mobile */
    }
}

@media (max-width: 768px) {
    #darkModeToggle {
        font-size: 18px; /* Make emoji bigger */
        width: 40px; /* Adjust width to fit the emoji */
        height: 40px;
        padding: 5px; /* Reduce padding */
        text-align: center;
    }

    #darkModeToggle::after {
        content: attr(data-emoji); /* Show only the emoji */
        font-size: 18px; /* Adjust emoji size */
    }

    #darkModeToggle span {
        display: none;
    }
    
}

.nav-links {
    list-style: none;
    display: flex;
    gap:25px;
}
.nav-links li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 10.9px;
    color: #1a3669;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    display: inline-block; /* Needed for transform to work properly */
}


.nav-links li {
    display: inline;
}
.nav-links li a:hover {
    transform: translateY(-5px); /* Moves up slightly */
    color: #f26700; /* Change color */
    animation: bounce 0.5s ease-in-out; /* Add bounce animation */
}

/* Keyframes for Bounce Effect */
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(-5px); }
}

/* Active Link Effect (Optional) */
.nav-links li a:active {
    transform: scale(0.95); /* Slight shrink when clicked */
}

.nav-links a {
    color: #1a3669;
    text-decoration: none;
    font-weight: bold;
}


/* Mobile Menu Toggle */
.menu-toggle   {
    display: none;
    font-size: 30px;
    color: #000000;
    cursor: pointer;
    background-color: #70645b;
    
}


/* Hero Section */
.area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    
    
}

.hero-content{
    max-width: 50%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 36px;
    color: #f26700;
    opacity: 0; /* Start invisible */
    transform: translateY(30px); /* Start slightly lower */
    animation: fadeInUp 1s ease-in-out forwards;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-content h1 span {
    font-weight: bold;
}



.subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #08265c;
    margin-top: 10px;
    opacity: 0; /* Start invisible */
    transform: translateY(40px); /* Start slightly lower */
    animation: fadeInUp 1s ease-in-out forwards;
}



.description {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}



.buttons {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping for different alignments */
    gap: 10px; /* Space between buttons */
    align-items: center; /* Align buttons vertically */
   
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    width: 100%;
    max-width: 300px;
    min-width: 250px;
    transition: 0.3s;
    gap: 15px;
    opacity: 0; /* Start hidden */
    transform: translateY(30px); /* Start lower */
    animation: fadeInButtons 1s ease-in-out forwards;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); 
}
.btn img{
    width: 20px;
    height: auto;
    gap: 10px;
    
}
/* Staggered Animation: Each button appears with a slight delay */
.btn:nth-child(1) {
    animation-delay: 0.2s;
}

.btn:nth-child(2) {
    animation-delay: 0.4s;
}

.btn:nth-child(3) {
    animation-delay: 0.6s;
}

/* Keyframes for Fade-in + Slide-up Effect */
@keyframes fadeInButtons {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect: Bounce Effect */


/* Keyframes for Bounce Effect */
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Click Effect: Slight Shrink */
.btn:active {
    transform: scale(0.95);
}

.btn-orange {
    background: #f26700;
    color: white;
    margin-top: 10px;
}
.btn-orange::after,
.btn-orange::before {
    content: '';
    position: absolute;
    background: linear-gradient(to right, #ff6200, #b63d00);
    color: white;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-out;
}
.btn-orange::before {
    top: -5px;
    transform-origin: left;
}

.btn-orange:hover::after,
.btn-orange:hover::before {
    transform: scaleX(1);
}



.btn-orange:hover {
    background: linear-gradient(90deg, #f16200, #b63d00 70.71%)
}

.btn-blue {
    background: #08265c;
    color: white;
    margin-top: 10px;
}
.btn-blue::after,
.btn-blue::before {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #1a3669, #9ecfff 70.71%);
    color: white;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-out;
}
.btn-blue::before {
    top: -5px;
    transform-origin: left;
}

.btn-blue:hover::after,
.btn-blue:hover::before {
    transform: scaleX(1);
}

.btn-blue:hover {
    background: linear-gradient(90deg, #2770f9, #9ecfff 70.71%)
}

.btn-green {
    background: #00a86b;
    color: white;
 
}

.btn-green::after,
.btn-green::before {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #00a86b, #00f2c3 70.71%);
    color: white;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-out;
}

.btn-green::before {
    top: -5px;
    transform-origin: left;
}

.btn-green:hover::after,
.btn-green:hover::before {
    transform: scaleX(1);
}  

.btn-green:hover {
    background: linear-gradient(90deg, #00a86b, #00f2c3 70.71%);
}

.buttons .btn-orange,
.buttons .btn-green{
    flex:1;
    max-width: 950px;
}

.buttons .btn-blue{
    flex: 1 1 auto;
    
}

/* 📌 Responsive Layout */
@media (max-width: 768px) {
    .buttons {
        flex-direction: column; /* Stack buttons on small screens */
        align-items: center; /* Center align */
        gap: 5px; /* Space between buttons */
    }

    .btn {
        width: 90%; /* Full width on mobile */
        max-width: 100%; /* Keep it structured */
        gap: 6px;
    }

    .btn-green {
        margin-top: 10px; /* Add space between buttons */
    }
}

/* Hero Image */
.hero-image1 {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.hero-image1 img {
    width: 100%;
    border-radius: 15px;
    filter: brightness(100%);
    opacity: 0; /* Start invisible */
    transform: translateX(80px); /* Slide from right */
    animation: fadeInSlideX 0.8s ease-in-out forwards;
    
}
.hero-image1 img .active,
.custom-card.active
.image.active
{
    opacity: 1;
    transform: translateY(0)
}

@keyframes fadeInSlideX {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Waves */
.waves {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0);
}

.wave {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    background-repeat: repeat-x;
}

.wave1 {
    background: url('https://storage.googleapis.com/linn-files/LinntaeWebPage/Firstpage/Waves/olafuerte.png') repeat-x;
    height: 100px;
    bottom: 0;
    animation: waveMove 5s ease-in-out 1;
}

.wave2 {
    background: url('https://storage.googleapis.com/linn-files/LinntaeWebPage/Firstpage/Waves/olafuerte.png') repeat-x;
    height: 120px;
    bottom: 0px;
    opacity: 0.7;
    animation: waveMove 5s ease-in-out 1;
}

.wave3 {
    background: url('https://storage.googleapis.com/linn-files/LinntaeWebPage/Firstpage/Waves/olafuerte.png') repeat-x;
    height: 140px;
    bottom: 0px;
    opacity: 0.5;
    animation: waveMove 5s ease-in-out 1;
}

.wave4 {
    background: url('https://storage.googleapis.com/linn-files/LinntaeWebPage/Firstpage/Waves/olafuerte.png') repeat-x;
    height: 160px;
    bottom: 0px;
    opacity: 0.3;
    animation: waveMove 5s ease-in-out 1;
}

/* Wave Animation */
@keyframes waveMove {
    0% { transform: translateY(10px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}




/* Responsive Design */

/* Tablet (768px) */
@media screen and (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .hero-image1 {
        max-width: 80%;
        transform: translateY(50px); /* Slide from bottom */
        animation: fadeInSlideY 0.8s ease-in-out forwards;
    }
}

@keyframes fadeInSlideY {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Mobile (480px) */
@media screen and (max-width: 768px) {
    .waves {
        height: 830px;
        max-height: 95%;
    }



    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 14px;
    }
    

    .area{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
       
    
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #ffffff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        border-width: 2px;
        padding: 20px 0;
        box-shadow: 10px 2px 0px rgba(0, 0, 0, 0.219);
        z-index: 3;
    }

   

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        background-color: #00000000;
        
        color: #f16200;
        z-index: 3;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image1{
        flex-direction: column;
        max-width: 100%;
        animation: fadeInSlideY 0.8s ease-in-out forwards;
        transform: translateY(50px); /* Slide in from below */
    }

    @media (max-width: 480px) {
        .hero-image1 img {
            width: 120%;
            max-width: 450px;
            animation: fadeInSlideY 0.8s ease-in-out forwards;
            transform: translateY(50px); /* Slide in from below */
        }
    }
    
    /* Keyframes for Mobile & Tablet Animation (Slide from Below) */
    @keyframes fadeInSlideY {
        0% {
            opacity: 0;
            transform: translateY(50px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

}



/* Global StylesHowTo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



/* Section Styling */
.how-to-sell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;    /* Responsive Design */
    @media (max-width: 1024px) {
        .custom-about-section {
            padding: 50px 5%;
        }
    
        .custom-row {
            flex-direction: column;
            text-align: center;
        }
    
        .custom-reverse {
            flex-direction: column;
        }
    
        .custom-text {
            text-align: center;
        }
    
        .custom-image img {
            width: 200px;
        }
    }
    
    @media (max-width: 768px) {
        .custom-title {
            font-size: 1.8rem;
        }
    
        .custom-text p {
            font-size: 1rem;
        }
    
        .custom-image img {
            width: 180px;
        }
    }
    
    @media (max-width: 480px) {
        .custom-title {
            font-size: 1.6rem;
        }
    
        .custom-text p {
            font-size: 0.9rem;
        }
    
        .custom-image img {
            width: 150px;
        }
    }    /* Responsive Design */
    @media (max-width: 1024px) {
        .custom-about-section {
            padding: 50px 5%;
        }
    
        .custom-row {
            flex-direction: column;
            text-align: center;
        }
    
        .custom-reverse {
            flex-direction: column;
        }
    
        .custom-text {
            text-align: center;
        }
    
        .custom-image img {
            width: 200px;
        }
    }
    
    @media (max-width: 768px) {
        .custom-title {
            font-size: 1.8rem;
        }
    
        .custom-text p {
            font-size: 1rem;
        }
    
        .custom-image img {
            width: 180px;
        }
    }
    
   /* Responsive Design */
   
    
    @media (max-width: 480px) {
        .custom-title {
            font-size: 1.6rem;
        }
    
        .custom-text p {
            font-size: 0.9rem;
        }
    
        .custom-image img {
            width: 150px;
        }
    }
}

/* Text Content */
.content {
    max-width: 50%;
}

h2 {
    font-size: 32px;
    color: #f26700;
}



h2 span {
    font-weight: bold;
}

.steps p {
    font-size: 18px;
    color: #08265c;
    margin: 10px 0;
}

.steps p strong {
    color: #08265c;
}




/* Image */
.image {
    max-width: 45%;
    position: relative;
    transform: translateY(50px); /* Slide from bottom */
        animation: fadeInSlideY 0.8s ease-in-out forwards;
    }


.image img {
    width: 100%;
}

/* Responsive Design */

/* Tablet (768px) */
@media screen and (max-width: 1024px) {
    .how-to-sell {
        flex-direction: column;
        text-align: center;
    }

    .content {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .image {
        max-width: 80%;
    }
}




.btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    width: 100%;
    max-width: 300px;
    min-width: 250px;
    transition: 0.3s;
    gap: 15px;
    opacity: 0; /* Start hidden */
    transform: translateY(30px); /* Start lower */
    animation: fadeInButtons 1s ease-in-out forwards;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); 
}
.btn1 img{
    width: 20px;
    height: auto;
    gap: 10px;
    
}
/* Staggered Animation: Each button appears with a slight delay */
.btn:nth-child(1) {
    animation-delay: 0.2s;
}

.btn:nth-child(2) {
    animation-delay: 0.4s;
}

.btn:nth-child(3) {
    animation-delay: 0.6s;
}

/* Keyframes for Fade-in + Slide-up Effect */
@keyframes fadeInButtons {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect: Bounce Effect */


/* Keyframes for Bounce Effect */
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Click Effect: Slight Shrink */
.btn1:active {
    transform: scale(0.95);
}

.btn1-orange {
    background: #f26700;
    color: white;
   
}
.btn1-orange::after,
.btn1-orange::before {
    content: '';
    position: absolute;
    background: linear-gradient(to right, #ff6200, #b63d00);
    color: white;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-out;
}
.btn1-orange::before {
    top: -5px;
    transform-origin: left;
}

.btn1-orange:hover::after,
.btn1-orange:hover::before {
    transform: scaleX(1);
}



.btn1-orange:hover {
    background: linear-gradient(90deg, #f16200, #b63d00 70.71%)
}

.btn1-blue {
    background: #08265c;
    color: white;
    margin-top: 10px;
}
.btn1-blue::after,
.btn1-blue::before {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #1a3669, #9ecfff 70.71%);
    color: white;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-out;
}
.btn1-blue::before {
    top: -5px;
    transform-origin: left;
}

.btn1-blue:hover::after,
.btn1-blue:hover::before {
    transform: scaleX(1);
}

.btn1-blue:hover {
    background: linear-gradient(90deg, #2770f9, #9ecfff 70.71%);
}


.buttons1 .btn-blue{
    flex: flex 1 1 auto;
    align-items: left;
}




.buttons1{
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the buttons horizontally */
    width: 100%; /* Ensures full width for centering */

}

.btn1 {
    width: 80%; /* Makes buttons take 80% of container width */
    max-width: 300px; /* Prevents buttons from being too wide */
    text-align: center; /* Ensures text is centered */
}

/* Mobile (480px) */
@media screen and (max-width: 768px) {
    .how-to-sell {
        flex-direction: column;
        text-align: center;
    }

    .content {
        width: 50%;
        max-width: 100%;
        font-stretch: expanded;
    }
    .steps p {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        font-stretch: extra-condensed;

    }

    .image {
        max-width: 100%;
    }

    .btn1 {
      
        width: 100%; /* Full width on mobile */
       
    }
    
}

/* Register Section Background */
.backend-message-container {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    background-color: #ffe0e0;
    color: #b30000;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .backend-message-container.hidden {
    display: none;
  }
  .registro-container {
    display: none;
  }
  .registro-container.active {
    display: block;
  }


  #toast {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    border-left: 6px solid #dc3545;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 90%;
    max-width: 600px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  #toast.hidden {
    display: none;
  }
  
  #toast h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
    color: #212529;
  }
  
  .toast-error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
  }
  
  #toast-close {
    align-self: flex-end;
    background-color: #dc3545;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s;
  }
  
  #toast-close:hover {
    background-color: #c82333;
  }
 
  
  
  .modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
  }

  .modal-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .modal-close-btn:hover {
    background-color: #b02a37;
  }

  /* Fondo del modal */
#modalError {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.55); /* oscurece fondo */
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
  }
  
  /* Mostrar modal */
  #modalError.show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  /* Contenedor del contenido */
  #modalErrorContent {
    background-color: #f8d7da;
    padding: 24px 28px;
    border-radius: 12px;
    width: 100%;
    max-width: 750px;
    max-height: 85vh; /* Limita la altura para evitar desbordamiento */
    overflow-y: auto; /* Scroll interno si hay muchos errores */
    color: #721c24;
    border-left: 6px solid #dc3545;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
  }
  
  /* Botón de cerrar */
  #modalErrorClose {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #ffffff;
    -webkit-text-stroke: 1px #f16200;
    font-size: 22px;
    font-weight: bolder;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
  }
  
  #modalErrorClose:hover {
    color: #dc3545;
  }
  
  /* Animación */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive ajustes */
  @media (max-width: 480px) {
    #modalErrorContent {
      font-size: 15px;
      padding: 20px;
      width: 95%;
    }
  
    #modalErrorClose {
      top: 8px;
      right: 12px;
      font-size: 20px;
    }
  }
  
  
  @keyframes fadeInUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }  

.register-section {
    background-image: url(https://storage.googleapis.com/linn-files/LinntaeWebPage/Formulario/ineedyou.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Background Container */
.register-background {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(6.1px);
    border: 1px solid rgba(255, 255, 255, 16);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    transform: translateY(50px); /* Slide from bottom */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;

    
}

/* Hide password validation initially */
#password-validation {
    display: none;
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.password-container {
    display: flex;
    align-items: center;
    position: relative;
}

.password-container input {
    flex: 1;
    padding-right: 40px;
}

.password-container button {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 10px;
}

/* Password validation text */
.password-requirements li {
    font-size: 14px;
    color: red;
}


#toggle-password img {
    width: 20px;
    height: 20px;
    color: #f16200;
}



.register-background{
    opacity: 1;
    transform: translateY(0);
}

/* Form Container */
.register-form-container {
    text-align: center;
    
}

/* Title */
.register-title {
    font-size: 26px;
    font-weight: bold;
    color: #08265c;
    margin-bottom: 20px;
}

/* Form */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    
}

/* Labels */
.register-form label {
    font-size: 14px;
    font-weight: bold;
    color: #1a3669;
    text-align: left;
}

/* Inputs & Selects */
.register-form input,
.register-form select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #dddddd;
    border-radius:26px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Row Layout */
.register-row {
    display: flex;
    gap: 15px;
}

.register-column {
    flex: 1;
}

/* Register Button */
.register-button {
    background: #08265c;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    transition: 0.3s;
}

.register-button:hover {
    background: linear-gradient(180deg, #2770f9, #004991 70.71%);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-width: 15px;
    border-color: #ffffff;
}


.dark-mode .register-button:hover{
    background-color: #f16200;
}
/* Responsive Design */

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
    .register-background {
        max-width: 500px;
        padding: 30px;
    }

    .register-title {
        font-size: 22px;
    }

    .register-form input,
    .register-form select {
        font-size: 14px;
    }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
    .register-background {
        max-width: 90%;
        padding: 25px;
    }

    .register-title {
        font-size: 20px;
    }

    .register-row {
        flex-direction: column;
    }

    .register-button {
        width: 100%;
    }
    #toggle-password img {
        width: 20px;
        height: 20px;
        color: #f16200;
    }
}


/* Services Section */
.services1-background{
    background-image: url(https://storage.googleapis.com/linn-files/LinntaeWebPage/cardsection/servicesbackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.services-title {
    font-size: 28px;
    color: #f26700;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Description */
.services-description {
    font-size: 16px;
    color: #1a3669;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.55);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(6.1px);
    border: 2px solid rgb(255, 255, 255);
    text-align: center;
    transition: 0.3s;
}



.service-card:hover {
    transform: translateY(-5px);
}

/* Service Icon */
.service-icon {
    width: 50px;
    margin-bottom: 10px;
}

/* Service Title */
.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #08265c;
    margin-bottom: 10px;
}


/* Service Text */
.service-text {
    font-size: 14px;
    color: hsl(0, 0%, 0%);
}

/* Responsive Design */

/* Tablet (768px) */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (480px) */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        max-width: 90%;
        margin: 0 auto;
    }

    .services-title {
        font-size: 24px;
    }

    .services-description {
        font-size: 14px;
    }
}

/* General Styling */
.service-payments-container {
    background: linear-gradient(180deg, #eee5df 0.5%, #ffffff 50%);
    padding: 50px 20px;
    text-align: center;
}

/* Top Section */
.service-payments-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Image & Logos */
.service-payments-image {
    position: relative;
    max-width: 400px;
}

.service-payments-image img {
    width: 100%;
    border-radius: 10px;
}


.service-payments-logos img {
    width: 70px;
}

/* Right Text Content */
.service-payments-info {
    max-width: 500px;
    text-align: left;
}

.service-payments-title {
    font-size: 28px;
    font-weight: bold;
    color: #f26700;
}

.service-payments-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #08265c;
    margin-top: 10px;
}

.service-payments-text {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}


/* Register Button */
.service-payments-button {
    display: inline-block;
    background: #f26700;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.service-payments-button:hover {
    background: #d85600;
}

/* Steps Section */
.service-payments-steps {
    margin-top: 50px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    max-width: 1000px;
    margin: 50px auto;
}

.service-payments-steps-title {
    font-size: 22px;
    font-weight: bold;
    color: #08265c;
    margin-bottom: 20px;
}

/* Steps Grid */
.service-payments-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.step-card {
    background: #08265c;
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */

/* Tablet (768px) */
@media screen and (max-width: 1024px) {
    .service-payments-top {
        flex-direction: column;
        text-align: center;
    }

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

    .service-payments-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (480px) */
@media screen and (max-width: 768px) {
    .service-payments-title {
        font-size: 24px;
    }

    .service-payments-subtitle,
    .service-payments-text {
        font-size: 14px;
    }

    .service-payments-button {
        width: 80%;
    }

    .step-card {
        padding: 12px;
    }
}

/* Virtual Recharges Section */
.virtual-recharges-container {
    background: linear-gradient(180deg, #f5b285 3%, #f16200 8%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}


/* Title */
.virtual-recharges-title {
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
}

.virtual-recharges-subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-top: 10px;
}

/* Slider Container */
.virtual-recharges-slider {
    position: relative;
    max-width: 900px;
    margin: 30px auto;
    overflow: hidden;
}

/* Slider Track */
.virtual-recharges-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide {
    flex: 0 0 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 90%;
    max-width: 200px;
    border-radius: 10px;
    transition: 0.3s;
}

/* Hover Effect */
.slide img:hover {
    transform: scale(1.05);
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.slider-btn:hover {
    color: #ff6200;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Design */

/* Tablet (768px) */
@media screen and (max-width: 1024px) {
    .slide {
        flex: 0 0 50%;
    }
}

/* Mobile (480px) */
@media screen and (max-width: 768px) {
    .slide {
        flex: 0 0 100%;
    }

    .slider-btn {
        font-size: 25px;
    }
}

/* Recharge Devices Section */
.recharge-devices-container {
    background: linear-gradient(180deg, #eee5df 5%, #ffffff 30%);
    padding: 50px 20px;
    text-align: center;
}
.dark-mode .recharge-devices-container{
    background: linear-gradient(180deg, #06102e 2%, #1a3669 25%);
    padding: 50px 20px;
    text-align: center;
}

/* Title */
.recharge-devices-title {
    font-size: 28px;
    font-weight: bold;
    color: #08265c;
    max-width: 900px;
    margin: 0 auto;
}

/* Description */
.recharge-devices-description {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 15px auto 30px auto;
    line-height: 1.6;
}



/* Icons Section */
.recharge-devices-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

/* Icons */
.recharge-icon {
    width: 80px;
    transition: transform 0.3s;
}

.recharge-icon:hover {
    transform: scale(1.1);
}

/* Responsive Design */

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
    .recharge-devices-title {
        font-size: 24px;
    }

    .recharge-devices-description {
        font-size: 14px;
    }

    .recharge-icon {
        width: 70px;
    }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
    .recharge-devices-icons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .recharge-devices-title {
        font-size: 22px;
    }

    .recharge-devices-description {
        font-size: 14px;
    }

    .recharge-icon {
        width: 60px;
    }
}

/* Recharge Platform Section */
.recharge-platform-container {
    background: linear-gradient(180deg, #eee5df 2%, #fdfdfdb2 10%);
    padding: 50px 20px;
    text-align: center;
}


/* Title */
.recharge-platform-title {
    font-size: 28px;
    font-weight: bold;
    color: #f16200;
    margin-bottom: 10px;
}

/* Subtitle */
.recharge-platform-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #08265c;
}
/*Darkkmode*/
.dark-mode .recharge-platform-subtitle{
    color: #ffffff;
}

.dark-mode .recharge-platform-description{
    color: #ffffff;
}
/* Description */
.recharge-platform-description {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 10px auto 30px auto;
    line-height: 1.5;
}

/* Recharge Grid */
.recharge-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Recharge Card */
.recharge-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: 0.3s;
    border: 2px solid transparent;
}

.recharge-card:hover {
    border-color: #f26700;
    transform: translateY(-20px);
}

/* Recharge Icon */
.recharge-icon {
    width: 50px;
    margin-bottom: 10px;
}


/* Recharge Card Title */
.recharge-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #08265c;
    margin-bottom: 10px;
}

/* Recharge Card Text */
.recharge-card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Recharge Card Button */
.recharge-card-button {
    display: inline-block;
    background: #08265c;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.recharge-card-button:hover {
    background: #f16200;
}

.dark-mode .recharge-card-button{
    background-color: #f16200;
}
.dark-mode .recharge-card-button:hover{
    background-color: forestgreen;
}
/* Responsive Design */

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
    .recharge-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
    .recharge-platform-grid {
        grid-template-columns: 1fr;
    }

    .recharge-platform-title {
        font-size: 24px;
    }

    .recharge-platform-subtitle,
    .recharge-platform-description {
        font-size: 14px;
    }

    .recharge-card {
        max-width: 90%;
        margin: 0 auto;
    }

    .recharge-card-button {
        width: 80%;
    }
}

/* Recharge Sales Section */
.recharge-sales-container {
    background: linear-gradient(180deg, #eee5df 5%, #ffffff 30%);
    padding: 50px 20px;
    text-align: center;
}



/* Title */
.recharge-sales-title {
    font-size: 28px;
    font-weight: bold;
    color: #08265c;
    max-width: 900px;
    margin: 0 auto 10px auto;
}

.dark-mode .recharge-sales-title{
    color: #ffffff;
}

/* Subtitle */
.recharge-sales-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #08265c;
    margin-bottom: 15px;
}


/* Description */
.recharge-sales-description {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}


/* List of Features */
.recharge-sales-list {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding-left: 20px;
}

.recharge-sales-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Content Section */
.recharge-sales-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Recharge Sales Image */
.recharge-sales-image {
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s;
}

.recharge-sales-image:hover {
    transform: scale(1.05);
}

/* Recharge Sales Button */
.recharge-sales-button {
    display: inline-block;
    background: #08265c;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.dark-mode .recharge-sales-button{
    background: #f16200;
}

.recharge-sales-button:hover {
    background: #00bf77;
}

/* Responsive Design */

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
    .recharge-sales-title {
        font-size: 24px;
    }

    .recharge-sales-description,
    .recharge-sales-list li {
        font-size: 14px;
    }

    .recharge-sales-image {
        max-width: 350px;
    }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
    .recharge-sales-title {
        font-size: 22px;
    }

    .recharge-sales-description {
        font-size: 14px;
    }

    .recharge-sales-list {
        text-align: center;
        padding-left: 0;
    }

    .recharge-sales-content {
        flex-direction: column;
        text-align: center;
    }

    .recharge-sales-image {
        max-width: 300px;
    }

    .recharge-sales-button {
        width: 80%;
    }
}

/*Container carrusel pagos de servicios*/

/* General Styling */
.interactive-carousel-container {
    text-align: center;
    position: relative;
    padding: 50px 20px;
}

/* Carousel Wrapper */
.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Arrows */
.carousel-arrow {
    background: none;
    border: none;
    font-size: 30px;
    color: #f26700;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-arrow:hover {
    color: #08265c;
}
.dark-mode .carousel-arrow:hover{
    color: #ffffff;
}

/* Icons Container */
.carousel-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Side Icons */
.carousel-side-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.carousel-side-icon img {
    width: 50px;
}

/* Center Icon */
.carousel-center-icon {
    width: 130px;
    height: 130px;
    background: #08265c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}

.carousel-center-icon img {
    width: 60px;
}

/* Arc Styling */
.carousel-arc {
    width: 80%;
    height: 50px;
    margin: 20px auto;
    border-top: 8px solid linear-gradient(to right, #eee5df, #eee5df);
    border-radius: 50%;
}

/* Text Below Carousel */
.carousel-text {
    max-width: 600px;
    margin: 20px auto;
}

.carousel-text h2 {
    font-size: 24px;
    color: #08265c;
}

.carousel-text p {
    font-size: 16px;
    color: #f26700;
}


/* Responsive Design */

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
    .carousel-side-icon {
        width: 80px;
        height: 80px;
    }

    .carousel-center-icon {
        width: 110px;
        height: 110px;
    }

    .carousel-text h2 {
        font-size: 20px;
    }

    .carousel-text p {
        font-size: 14px;
    }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
    .carousel-icons {
        gap: 10px;
    }

    .carousel-side-icon {
        width: 60px;
        height: 60px;
    }

    .carousel-center-icon {
        width: 90px;
        height: 90px;
    }

    .carousel-text h2 {
        font-size: 18px;
    }

    .carousel-text p {
        font-size: 12px;
    }
}



/* General Styling */
.app-sale-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: white;
    animation: fadeIn 1s ease-in-out;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Wrapper */
.app-sale-section-content {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    gap: 40px;
    
}


/* Left Side - Text Box */
.app-sale-text-box {
    background: linear-gradient(135deg, #f26700, #ff9c00);
    padding: 30px;
    border-radius: 15px;
    color: white;
    width: 50%;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Bouncy Hover Effect */
.app-sale-text-box:hover {
    transform: scale(1.05);
}

.app-sale-section-container{
    background: linear-gradient(180deg, #ffffff, #f8b88d);
}


/* Title */
.app-sale-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Subtitle */
.app-sale-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* List */
.app-sale-list {
    list-style-type: none;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
}

.app-sale-list li {
    margin-bottom: 8px;
}

/* Button */
.app-sale-button {
    display: inline-block;
    background: #08265c;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}


/* Bouncy Hover Effect on Button */
.app-sale-button:hover {
    background: #041c44;
    transform: scale(1.1);
}

/* Right Side - Image Box */
.app-sale-image-box {
    width: 50%;
    text-align: center;
}

/* Image with Hover Effect */
.app-sale-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.app-sale-image:hover {
    transform: scale(1.1);
}

/* Responsive Design */

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
    .app-sale-section-content {
        flex-direction: column;
        text-align: center;
    }

    .app-sale-text-box {
        width: 90%;
        padding: 25px;
    }

    .app-sale-image-box {
        width: 90%;
    }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
    .app-sale-title {
        font-size: 20px;
    }

    .app-sale-subtitle {
        font-size: 14px;
    }

    .app-sale-list {
        font-size: 12px;
    }

    .app-sale-button {
        width: 100%;
        text-align: center;
    }
}

/* How to cards data*/

/* General Styling */
.sell-recharges-section-container {
    text-align: center;
    padding: 30px;
    padding-bottom: 50px;
    background: linear-gradient(180deg, #ffffff, #ffffff);
}

/* Content Layout */
.sell-recharges-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 100px;
}


/* Text Box */
.sell-recharges-text-box {
    width: 50%;
    text-align: left;
    color: #ffffff;
}

.sell-recharges-subtitle{
    color: #ffffff;
}
.sell-recharges-title {
    font-size: 26px;
    font-weight: bold;
    color: #ff6200;
}

.sell-recharges-description {
    font-size: 18px;
    font-weight: bold;
    color: #1a3669;
   
}


/* Steps Box */
.sell-recharges-steps-box {
    width: 45%;
    padding: 20px;
    background: linear-gradient(135deg, #f26700, #ff9c00);
    color: white;
    border-radius: 10px;
    text-align: left;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}


/* Buttons Section */
.sell-recharges-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.sell-recharges-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Bouncy Hover Effect */
.sell-recharges-card:hover {
    transform: scale(1.05);
}

.sell-recharges-card img {
    width: 50px;
    margin-bottom: 10px;
}

.sell-recharges-card h4 {
    font-size: 16px;
    font-weight: bold;
    color: #08265c;
}

/* Buttons */
.sell-recharges-button {
    display: inline-block;
    background: #08265c;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}


.sell-recharges-button:hover {
    background: #f16200;
    transform: scale(1.1);
}

/* Responsive Design */

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
    .sell-recharges-content {
        flex-direction: column;
        text-align: center;
    }

    .sell-recharges-text-box,
    .sell-recharges-steps-box {
        width: 90%;
    }

    .sell-recharges-steps-box {
        text-align: center;
    }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
    .sell-recharges-title {
        font-size: 20px;
    }

    .sell-recharges-description {
        font-size: 16px;
        text-align: center;
    }

    .sell-recharges-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .sell-recharges-card {
        width: 100%;
    }
}


/* General Styles */


/* Navbar */
.navbar {
    background: #ff6600;
    padding: 15px;
    text-align: center;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    display: inline;
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.content {
    max-width: 50%;
}

h1 span {
    color: #ff6600;
    font-weight: bold;
}

h1 {
    color: #ff6600;
    font-size: 2.5em;
}

h3 {
    color: #1d3557;
    font-weight: bold;
}

p {
    font-size: 1.2em;
}

/* Buttons */
.buttons {
    margin-top: 20px;
}



.btn-dark {
    background: #1d3557;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-dark:hover {
    background: #f16200;
}

/* Hero Image */
.hero-image {
    position: relative;
    max-width: 50%;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

.image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, 0.3);
    top: 0;
    left: 0;
    border-radius: 10px;
}



/* FAQ Section */
.faq-section {
    max-width: 50%;
    margin: 100px auto;
}

h2 {
    color: #ff6600;
    font-size: 2em;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

/* FAQ Item */
.faq-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 48%;
    transition: transform 0.3s ease-in-out;
}

/* FAQ Icon */
.faq-icon {
    font-size: 24px;
    margin-right: 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.faq-icon:hover {
    transform: scale(1.3);
}

/* FAQ Text */
.faq-text h3 {
    font-size: 1.2em;
    color: #1d3557;
    transition: transform 0.3s ease-in-out;
}

.faq-text p {
    font-size: 1em;
    color: #555;
    transition: transform 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1024px) { /* Tablets */
    .faq-container {
        flex-direction: column;
        align-items: center;
    }

    .faq-item {
        width: 90%;
    }
}

@media screen and (max-width: 768px) { /* Smartphones */
    h2 {
        font-size: 1.5em;
        text-align: center;
    }
    .faq-container {
        width: 100%; /* Full width */
        max-width: 100%; /* Prevents stretching too much */
        padding: auto; /* Keep consistent spacing */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        margin: auto;
        
        
    }

    .faq-text h3 {
        font-size: 1.3em;

    }
    .faq-text p {
        font-size: 0.9em;
      
    }	

    .faq-item {
        width: 100%; /* Use full width of the container */
        max-width: 768px; /* Increase width to match other containers */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center content */
        justify-content: center;
        background: white;
        padding: 25px; /* Increase padding */
        border-radius: 15px; /* Adjust border radius */
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Match other elements */
    }

    .faq-icon {
        font-size: 24px;
        align-self: center;
        
    }


}


/****/






/* Section Header */
.custom-plans-section {
    padding: 50px 10%;
    background-image: url(https://storage.googleapis.com/linn-files/LinntaeWebPage/Formulario/ineedyou.png);
    background-repeat: no-repeat;
    background-size: cover;
   
}


h2 {
    font-size: 2rem;
    margin-bottom: 2px;
}

.custom-orange-text {
    color: #ffffff;
    font-weight: bold;
}

.custom-plans-section h2{
    font-size: 2rem;
    text-align: center;
}



.custom-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

/* Cards Container */
.custom-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Card */
.custom-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
    opacity: 0;
    animation: custom-fadeInUp 1s ease-in-out forwards;
    border-bottom: 4px solid transparent;
    
}

/* Adding delay to make animations sequential */
/* Animations Delay */
.custom-card:nth-child(2) {
    animation-delay: 0.4s;
}

.custom-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Hover Effects */
.custom-card {
color: #1a3669;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}


/* Zoom + Lift Effect on Hover */
.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(#f16200, #f89e63);
    border-bottom: 4px solid #F36D1D;
    
}

/* Card Icon */
.custom-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    transition: transform 0.8s ease-in-out;
}

/* Rotate Icon on Hover */
.custom-card:hover .custom-icon img {
    transform: rotate(360deg);
}

/* Card Title */
.custom-card h3 {
    font-size: 1.4rem;
    color: #0C2C5E;
    margin-bottom: 10px;
}

/* Card Button */
.custom-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #0C2C5E;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Button Hover Effect - Scale Up */
.custom-btn:hover {
    background: #F36D1D;
    transform: scale(1.07);
}

/* Button Click Effect - Slight Rotation */
.custom-btn:active {
    transform: scale(0.95) rotate(-3deg);
}

/* Entrance Animation */
@keyframes custom-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .custom-plans-section {
        padding: 50px 5%;
    }

    .custom-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-card {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

    .custom-subtitle {
        font-size: 1rem;
    }

    .custom-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.6rem;
    }

    .custom-card {
        width: 95%;
    }
}



/* Footer Styling */
.unique-footer {
    background: linear-gradient(90deg,rgba(241, 98, 0, 1) 0%, rgba(255, 179, 128, 1) 50%, rgba(255, 150, 123, 1) 100%);
    z-index: 1000;
    box-shadow: 0px -10px 50px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 30px 10%;
    text-align: left;
}

.unique-footer-container {
    display: flex;
    flex-direction: column;
}

.datosFooter {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.datosFooter li {
    padding: 10px;
    box-sizing: border-box;
}

.datosFooter h5 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.datosFooter p {
    margin: 0;
    font-size: 1rem;
}

.datosFooter a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
}

.datosFooter a:hover {
    opacity: 0.7;
}

#socialNetwork {
    display: flex;
    flex-direction: column;
}

#socialNetwork a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
}

.unique-footer-bottom {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .datosFooter {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .unique-footer {
        padding: 30px 5%;
    }

    .datosFooter {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .unique-footer-title {
        font-size: 1.3rem;
    }

    .unique-footer-text,
    .datosFooter p {
        font-size: 0.9rem;
    }

    #socialNetwork a {
        font-size: 1rem;
    }
}

/* About Section */
.custom-about-section {
    padding: 50px 10%;
    background: linear-gradient(180deg, #ffffff, #f8b88d);
}

/* Container */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Rows */
.custom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

/* Image */
.custom-image img {
    width: 250px;
    max-width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.custom-image img:hover {
    transform: scale(1.05);
}

/* Text */
.custom-text {
    flex: 1;
    text-align: left;
}

/* Titles */
.custom-title {
    font-size: 2rem;
    color: #0C2C5E;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-orange {
    color: #f16200;
}

/* Small Title */
.custom-small-title {
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Paragraph */
.custom-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

/* Reverse Row for Second Section */
.custom-reverse {
    flex-direction: row-reverse;
}

/* Fade-in Animation */
.custom-row {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.custom-row:nth-child(2) {
    animation-delay: 0.3s;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .custom-about-section {
        padding: 50px 5%;
    }

    .custom-row {
        flex-direction: column;
        text-align: center;
    }

    .custom-reverse {
        flex-direction: column;
    }

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

    .custom-image img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .custom-title {
        font-size: 1.8rem;
    }

    .custom-text p {
        font-size: 1rem;
    }

    .custom-image img {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .custom-title {
        font-size: 1.6rem;
    }

    .custom-text p {
        font-size: 0.9rem;
    }

    .custom-image img {
        width: 150px;
    }
}

#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.loader-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ff6600;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



  