/* mkt.css */

/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f7f6;
    color: #333;
}

header.fixed-header {
    background-color: #000;
    padding: 10px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header.fixed-header .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

header.fixed-header .menu > li {
    display: inline-block;
    position: relative;
}

header.fixed-header .menu > li > a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

/* Hero Section */
.hero-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #61dafb;
    color: #fff;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.hero-section p {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    color: #fff;
    flex-wrap: wrap;
}

.logo {
    width: 150px; /* Ajusta este tamaño para que coincida con el de 'index.html' */
    margin-right: 20px;
    margin-top: 20px;
    vertical-align: middle;
    padding-bottom: 0px;
}

/* Features Section */
.features-section {
    padding: 50px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: auto;
}

.features-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.features-section p, .features-section ul {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.features-section ul {
    list-style: disc inside;
    padding-left: 20px;
}

/* Contenedor Flexbox */
.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.content-row p {
    flex: 1;
    margin: 0 20px;
}

.image-container {
    flex: 1;
    max-width: 50%;
    margin-bottom: 25px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* CTA Section */
.cta-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #333;
    color: #fff;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #61dafb;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #21a1f1;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

/* Estilo del botón del menú */
.dropbtn {
    background-color: #000;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Contenedor del menú desplegable */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Contenido del menú desplegable (inicialmente oculto) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Estilo de los enlaces dentro del menú */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Cambia el color del enlace al pasar el cursor por encima */
.dropdown-content a:hover {
    background-color: #61dafb;
}

/* Muestra el menú cuando se hace clic en el botón */
.show {
    display: block;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .logo {
        width: 80px;
        margin-bottom: 20px;
    }

    .features-section p, .features-section ul {
        font-size: 16px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-button {
        padding: 10px 15px;
    }

    .content-row {
        flex-direction: column;
    }

    .content-row p, .image-container {
        max-width: 100%;
        margin: 0;
    }

    .image-container img {
        max-width: 100%;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    header.fixed-header .menu {
        flex-direction: column;
        align-items: center;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .logo {
        width: 60px;
        margin-right: 0;
    }

    .features-section h2 {
        font-size: 24px;
    }

    .features-section p, .features-section ul {
        font-size: 14px;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    .cta-button {
        padding: 8px 12px;
    }
}
