/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #ffffff;
    padding: 10px 5%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav .logo a {
    color: #000000;
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav .nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

nav .cta-button {
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 1%;
    background: linear-gradient(to right, #1a1a1a, #333);
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-image {
    margin-top: 20px;
}

.features-section, .info, .info.item, .info-section, .pricing-section, .contact-section {
    padding: 60px 5%;
    text-align: center;
}

.features-grid, .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item, .pricing-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.feature-icon
{
    width: 400px;
    max-width: 100%;
    object-fit: 10px 0;
}

.feature-item h3, .pricing-item h3 {
    margin-bottom: 15px;
}

.pricing-item .price {
    font-size: 2em;
    color: #ff6600;
}

.info-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 5%;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.cta-section {
    background: #ff6600;
    color: #fff;
    padding: 40px 5%;
    text-align: center;
}

img.xxx
{
    max-width: 100%;
}

/* Efecto hover para los enlaces de navegación */
nav .nav-links a:hover {
    position: relative;
}

nav .nav-links a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 3px;
    background-color: #ff6600; /* Color naranja */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

nav .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* Media Queries para Responsividad */
@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        text-align: left;
    }

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

    .features-grid, .pricing-grid {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 100px 10%;
    }

    .features-grid, .pricing-grid {
        gap: 40px;
    }

    .cta-section {
        padding: 60px 10%;
    }
}

/* Estilo para centrar el botón en responsive */
@media (max-width: 767px) {
    .cta-button {
        display: block;
        width: fit-content;
        margin: 0 auto;
        margin: 20px auto; /* Aumenta el margen superior e inferior */
        text-align: center;
        padding: 10px 20px; /* Ajusta el padding si es necesario */
    }
}

/* Ocultar barra de scroll vertical en modo responsive pero permitir deslizar */
@media (max-width: 767px) {
    body, html {
        overflow-y: scroll; /* Permite el scroll vertical */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    /* Para otros navegadores (como Chrome, Safari y Opera) */
    body::-webkit-scrollbar {
        display: none; /* Oculta la barra de scroll */
    }
}

.sombra {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}