* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* styles.css */
body {
    margin: 0;
    padding: 0;
    color: #ff9900;
    text-align: center;
    font-family: 'Roboto';
    background: linear-gradient(135deg, #000000, #a65cd5);
}

header,
.hero,
.aws-section,
.solutions-card,
.case-card,
footer,
.success-cases {
    /* background: rgba(0, 0, 0, 0.8); */
    /* padding: 40px;
    border-radius: 10px;
    margin: 20px; */
    /* box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); */
}

h1,
h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    font-size: 0.8em;
    
}


body {
    font-family: 'Source Code Pro', monospace;

    line-height: 1.6;
    /* color: #fff;
    background: #1a1a1a; */
}

ul li {
    width: 50%;
}

.hero {
    /* background: linear-gradient(135deg, #6a1b9a, #000000); */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

button {
    background-color: #6a1b9a;
    border: none;
    color: #ff9900;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #8e24aa;
}

.contact {
    display: flex;
    flex-direction: row-reverse;
}

.services,
.about,
.contact {
    padding: 50px 0;
    /* background: #121212; */
}

.services .container,
.about .container,
.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 74px 15px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff9900;
}

.service-cards {
    display: flex;
    justify-content: space-evenly;
}

.card {
    /* background: #333; */
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    transition: transform 0.3s ease;
    background: rgba(128, 0, 128, 0.8);
    /* Morado con opacidad */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Sombra más intensa para destacar */
    overflow: hidden;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
}

.container-contact {
    width: 50%;
}

.contact form {
    display: grid;
    gap: 20px;
}

input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
}

button[type="submit"] {
    /* background: #6a1b9a; */
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

/* footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
} */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}





.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    /* background: linear-gradient(135deg, #000000, #8851aa); */
    background: linear-gradient(135deg, #3e1459, #77389e);
    /* background: linear-gradient(135deg, #000000, #713795); */
    /* background: linear-gradient(to right, #1a1a2e, #0f3460); */
    /* Color inicial del navbar */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background-color 0.3s ease, background 0.3s ease;
    /* Para transición suave del fondo */
}

/* .navbar.scrolled {
    background: linear-gradient(135deg, #491f1f, #8851aa);
    /* Gradiente morado */


.navbar .logo img {
    max-width: 150px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #fff;
}

.hero {
    /* background: linear-gradient(135deg, #6a1b9a, #000000); */
    background: linear-gradient(to right, #1a1a2e, #0f3460);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    animation: fadeIn 2s ease-in-out;
}

.hero-content {
    display: flex;
    align-items: center;
    /* flex-direction: row; */
    justify-content: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

button {
    /* background-color: #6a1b9a; */
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button:hover {
    /* background-color: #8e24aa; */
}

.about {
    padding: 60px 0;
    /* background: linear-gradient(135deg, #6a1b9a, #000000); */
    color: #fff;
    text-align: center;
}

.about-container {
    width: 80%;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 40px;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2em;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    transition: all 0.3s ease;
}

.about-text {
    flex: 1;
    max-width: 48%;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards 0.5s;
}

.about-vision,
.about-values {
    margin-top: 30px;
}

.about-values h3,
.about-vision h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.values-list {
    display: flex;
    flex-direction: column;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
    animation-delay: 0.8s;
}

.value-item i {
    font-size: 2em;
    color: #8e24aa;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.value-item i:hover {
    transform: scale(1.2);
}

.value-item h4 {
    font-size: 1.5em;
    margin: 0;
    color: #fff;
}

.value-item p {
    font-size: 1.1em;
    color: #ddd;
}

.about-image {
    flex: 1;
    max-width: 48%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards 1.2s;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Icon styles */
.icon-innovation::before {
    content: '\f0c8';
    /* Icono de innovación */
    font-family: 'FontAwesome';
}

.icon-security::before {
    content: '\f0a7';
    /* Icono de seguridad */
    font-family: 'FontAwesome';
}

.icon-commitment::before {
    content: '\f0c0';
    /* Icono de compromiso */
    font-family: 'FontAwesome';
}

/* Animación de fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.solutions-section {
    padding: 50px 0;
    /* background: linear-gradient(135deg, #6a1b9a, #000000); */
    color: #fff;
    text-align: center;
}

.solutions-container {
    width: 80%;
    margin: 0 auto;

}

.solutions-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 22%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: rgba(128, 0, 128, 0.8);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.solution-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.solution-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 1em;
    color: #ddd;
}


.aws-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aws-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    text-align: center;
    animation: fadeIn 1.5s;
}

.aws-image img {
    max-width: 100px;
    height: auto;
}

.aws-text {
    color: #333;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.aws-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.aws-button:hover {
    transform: scale(1.1);
}

.solutions-card ol {
    text-align: left;
    padding: 0 15px;
}

.solutions-card li {
    margin: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Chatbot */
#chatbot {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

#chatbot-btn {
    background-color: #6a1b9a;
    color: white;
    font-size: 24px;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#chatbot-btn:hover {
    background-color: #8e24aa;
}

#chatbot-window {
    display: none;
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    height: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    bottom: 10px;
}

#chatbot-window.hidden {
    display: none;
}

#chatbot-header {
    background-color: #6a1b9a;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1.1rem;
    border-radius: 5px;
}

#chatbot-messages {
    overflow-y: auto;
    height: 80%;
    margin-top: 10px;
    border-bottom: 1px solid #ddd;
}

#chatbot-input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}

#chatbot-input:focus {
    outline: none;
    border-color: #6a1b9a;
}

/* Chatbot */
#chatbot {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

#chatbot-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #6a1b9a;
    color: white;
    font-size: 24px;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#chatbot-btn:hover {
    background-color: #8e24aa;
}

#chatbot-window {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 20px;
    background-color: #fff;
    width: 320px;
    height: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}

#chatbot-window.hidden {
    display: none;
}

#chatbot-header {
    background-color: #6a1b9a;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1.1rem;
    border-radius: 5px;
}

#chatbot-messages {
    overflow-y: auto;
    height: 80%;
    margin-top: 10px;
    border-bottom: 1px solid #ddd;
}

#chatbot-input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}

#chatbot-input:focus {
    outline: none;
    border-color: #6a1b9a;
}

.message {
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    max-width: 80%;
}

.user {
    background-color: #6a1b9a;
    color: white;
    align-self: flex-end;
    text-align: right;
}

.bot {
    background-color: #f0f0f0;
    color: #333;
    align-self: flex-start;
    text-align: left;
}

/* Caja de entrada de texto */
#chatbot-input {
    width: calc(100% - 60px);
    /* Espacio para el botón */
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

/* Estilo para el botón de enviar */
#send-btn {
    padding: 10px;
    font-size: 1rem;
    background-color: #6a1b9a;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#send-btn:hover {
    background-color: #8e24aa;
}

.success-cases {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #6a1b9a, #000000);
    color: white;
}

.cases-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.case-card {
    background: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 300px;
    text-align: center;
    padding: 20px;
}

.case-card img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.case-card p {
    padding: 15px;
}


.margin-social-networks {
    margin: 0 2px 2px 0;
}

.txt-align-justify {
    text-align: justify;
}

footer {
    background: linear-gradient(to right, #1a1a2e, #0f3460);
    /* Fondo oscuro */
    color: #fff;
    /* Color de texto blanco */
    padding: 40px 0;
    font-family: 'Roboto';
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Información principal */
.footer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-info p {
    font-size: 14px;
    margin: 0;
}

.footer-info a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    margin-top: 10px;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Enlaces rápidos */
.footer-links {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-links ul {
    display: flex;
    list-style: none;
    padding: 0;
    align-items: center;
    flex-direction: column;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Redes sociales */
.footer-social {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.footer-social img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

/* AWS Partner Logos */
.footer-aws-partner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.footer-aws-partner h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.aws-partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.aws-partner-logos img {
    width: 150px;
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.aws-partner-logos img:hover {
    opacity: 1;
}

/* Estilos generales para el section "success-cases" */
.success-cases {
    background-color: #2a2a2a;
    /* Fondo oscuro para que combine con la paleta de la página */
    color: #fff;
    /* Color de texto blanco */
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.success-cases h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #9b59b6;
    /* Color morado en tono suave */
}

/* Contenedor de las cards */
.cases-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Estilos para cada card */
.case-card {
    background: rgba(128, 0, 128, 0.8);
    border-radius: 8px;
    padding: 20px;
    width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #fff;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Estilos para la imagen de la card */
.case-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Estilos para el texto dentro de la card */
.case-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsividad */
@media (max-width: 768px) {
    .cases-container {
        flex-direction: column;
        align-items: center;
    }

    .case-card {
        width: 80%;
        margin-bottom: 20px;
    }
}


/* Términos de uso y política de privacidad */
.footer-legal {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.footer-legal a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    margin: 0 10px;
}

.footer-legal a:hover {
    text-decoration: underline;
}



form {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #6A0DAD;
    /* Borde morado */
    background-color: #555555;
    /* Fondo gris oscuro */
    color: #FFFFFF;
}

form button {
    background-color: #6A0DAD;
    /* Morado */
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #5a0e8f;
    /* Un morado ligeramente más oscuro */
}

.testimonials {
    background: rgba(128, 0, 128, 0.8);
    color: #fff;
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    max-width: 1200px;
}

.testimonials-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: #fff;
    color: #3c096c;
    padding: 30px;
    margin: 0 15px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    transform: translateY(20px);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.carousel-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    transition: background-color 0.3s;
}

.carousel-dots span.active {
    background-color: #ffcc00;
}

/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact {
    background: linear-gradient(135deg, #3a3a3a, #1f1f1f);
    color: white;
    padding: 60px 150px;
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: auto;
    gap: 30px;
}

/* Información de Contacto */
.contact-info p {
    margin: 10px 0;
    font-size: 14px;
}

/* Formulario de Contacto */
.contact-form {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: #1f1f1f;
    color: white;
}

.contact-form button {
    background: #9b59b6;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #8e44ad;
}

/* Mensaje de éxito */
.hidden {
    display: none;
}

#form-message {
    color: #27ae60;
    font-weight: bold;
    margin-top: 10px;
}

/* Redes Sociales */
.contact-social img {
    width: 30px;
    margin: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


.free-consultation {
    background: rgba(128, 0, 128, 0.8);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    max-width: 700px;
    transition: transform 0.3s ease-in-out;
}

.free-consultation:hover {
    transform: scale(1.05);
}

.consultation-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.consultation-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.primary-btn {
    display: inline-block;
    background: #ffcc00;
    color: #3c096c;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
}

.primary-btn:hover {
    background: #ffaa00;
    transform: scale(1.1);
}

/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none; /* Se muestra solo cuando el usuario hace scroll */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

/* */

.img-volver {
    background-image: url(/assets/icons/volver-al-inicio.png);
}


/* Other styles remain the same... */


/* Other styles remain the same as before... */