/* General body styling */
body {
    background-image: url('/assets/img/illustrations/back.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar styling */
.navbar {
    background-color: transparent;
    transition: background-color 0.5s ease; /* Smooth transition */
}

.navbar {
    background-color: transparent;
    border: none;
}

.navbar .navbar-brand {
    color: #ffffff;
}

.navbar .nav-link {
    color: #ffffff;
}

.navbar .btn-primary {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.navbar .btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}


/* Main content section */
main {
    padding-top: 100px;
}

section {
    padding: 60px 0;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #ffd700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffae42;
}

/* Paragraph and text styling */
p {
    font-size: 1rem;
    line-height: 1;
    color: #000000;
    margin-bottom: 4px;
    text-align: justify;
}

/* Link styles */
a {
    color: #ffae42;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
}

/* Button styling */
.btn-primary {
    background-color: #ff7f50;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff4500;
}

/* Footer styling */
footer {
    background-color: #ffffff;
    color: #000000;
}

footer a {
    color: #000000;
}

footer a:hover {
    color: #00B5F1;
}

footer .border-bottom {
    border-color: #e0e0e0;
}

footer .text-1100 {
    color: #000000;
}


/* Responsive design adjustments */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.875rem;
    }
}


/* Styling for Términos y Condiciones */
#terms h3 {
    color: #ffae42;
}

#terms p {
    font-size: 1.1rem;
}

/* Styling for Política de Devolución */
#refund-policy h3 {
    color: #ffd700;
}

#refund-policy p {
    font-size: 1.1rem;
}

/* Styling for Soporte */
#support h3 {
    color: #ff4500;
}

#support p {
    font-size: 1.1rem;
}

#support .btn-primary {
    background-color: #ff7f50;
    color: #fff;
}

#support .btn-primary:hover {
    background-color: #ff4500;
}

/* TERMINOS y CONDICIONES */

#term {
    padding-top: 150px; /* Adjust this value to increase/decrease the space */
}

#term h2 {
    padding-top: 20px; /* You can adjust this value as needed */
    margin-top: 0;
}

#term .term {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#term .term h5 {
    color: #ffdd57;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

#term .term p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}


/* POLITICA y DEVOLUCIONES */

#polit {
    padding-top: 150px; /* Adjust this value to increase/decrease the space */
}

#polit h2 {
    padding-top: 20px; /* You can adjust this value as needed */
    margin-top: 0;
}

#polit .polit {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#polit .polit h5 {
    color: #ffdd57;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

#polit .polit p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

/* SOPORTE */

#soporte {
    padding-top: 150px; /* Adjust this value to increase/decrease the space */
}

#soporte h2 {
    padding-top: 20px; /* You can adjust this value as needed */
    margin-top: 0;
}

#soporte .soporte {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#soporte .soporte h5 {
    color: #ffdd57;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

#soporte .soporte p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}