* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

html {
    scroll-behavior: smooth;
}

#sobre,
#productos,
#servicios,
#contacto {
    scroll-margin-top: 100px;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgb(120, 133, 134);
    color: white;
    width: 100%;
    padding: 10px;
}

nav img {
    width: 28px;
}

nav .logo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 28px;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

nav .mobile-header {
    display: flex;
    justify-content: end;
    gap: 5px;
    margin-right: 30px;
}

nav .links {
    list-style: none;
    flex-direction: column;
    align-items: end;
    display: none;
}

nav .links li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

nav .links.show {
    display: flex;
}

.sobre {
    position: relative;
    min-height: 100vh;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./img/banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: rgb(0, 0, 0, 0.4);
    background-blend-mode: overlay;
}

.contenido-sobre {
    color: white;
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 50px;
}

.contenido-sobre h2 {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contenido-sobre p {
    line-height: 1.6;
}

.contenido-sobre {
    word-break: break-word;
}

.suscribite {
    width: 80%;
    max-width: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2)
}

.suscribite:hover {
    transform: translate(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.suscribite i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

.productos {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.imagenes {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: pink;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.imagenes:hover img {
    transform: scale(1.05);
}

.texto {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
    text-align: center;

}

.texto h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.texto p {
    font-size: 0.85rem;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.79);
    opacity: 0.95;
}

.imagenes:hover .texto {
    transform: translateY(0px);
}

.atras,
.adelante {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.atras:hover,
.adelante:hover {
    background: rgba(255, 255, 255, 1);
    color: #c8e2bc;
}

.atras {
    left: 10px;
}

.adelante {
    right: 10px;
}

.puntos {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.puntos span {
    width: 12px;
    height: 12px;
    background: #ccc;
    transition: all 0.3s ease;
    display: block;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0;
    user-select: none;
}

.puntos span.activo {
    background: red;
    transform: scale(1.2);
}

.puntos span:hover {
    background: #0056b3;
}

.servicios {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    line-height: 1.6;
    padding: 3rem 1rem;
    min-height: 100vh;
}


.servicios-container {
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.servicios-header {
    text-align: center;
    margin-bottom: 3rem;
}

.servicios-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.servicios-subtitle {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.servicio-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.servicio-card:hover::before {
    transform: scaleX(1);
}

.servicio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);

}

.servicio-icon {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00ff88;
    letter-spacing: 1px;
    border: 2px solid #00ff88;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
}

.servicio-title {
    font-size: 1.5rem;
    font-weight: 600px;
    margin-bottom: 1rem;
    color: white;
}

.servicio-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.servicio-features {
    list-style: none;
}

.servicio-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ddd;
}

.servicio-features li::before {
    content: '';
    position: absolute;
    color: #00ff88;
    font-weight: bold;
}

.cta-seccion {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(45deg, #00ff88, #00ccff);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #00ff88;
    margin-bottom: 2rem;
}

.contacto {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 3rem 2em;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    z-index: 1;
}

.contacto-header {
    margin-bottom: 2rem;
}

.contacto-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
}


.suscripcion {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.contacto-description {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}


.inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email_input,
.submit_input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email_input {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email_input:focus {
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.email_input::placeholder {
    color: #aaa;
}

.submit_input {
    background: linear-gradient(45deg, #00ff88, #00ccff);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit_input:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
}

.submit_input:active {
    transform: translateY(0);
}

.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;

}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ccff);

}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.redes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    color: #00ff88;
    font-size: 1.5rem;
    text-decoration: none;
}

.redes a:hover {
    background: rgba(0, 255, 136, 0.2);
    border: #00ff88;
    color: #00ccff;
    transform: translateY(-3px);
}

.footer-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

@media screen and (min-width: 768px) {
    nav .mobile-header {
        display: none;
    }

    nav .links {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.1rem
    }

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

    nav.log {
        margin-bottom: 0;
    }

    .sobre {
        padding: 3rem 2rem;
        background-attachment: fixed;
    }

    .contenido-sobre {
        max-width: 600px;
        padding: 2rem;
    }

    .contenido-sobre h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .contenido-sobre p {
        font-size: 1.1rem;
        line-height: 1.7;
    }


    .suscribite {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }

    .productos {
        padding: 3rem 2rem;
    }

    .imagenes {
        width: 600px;
        height: 350px;
        border-radius: 40px;
    }

    .texto h3 {
        font-size: 1.3rem;
    }

    .texto p {
        font-size: 1.3rem;
    }

    .atras,
    .adelante {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .puntos span {
        width: 14px;
        height: 14px;
    }

    .servicios {
        padding: 4rem 2rem;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicios-title {
        font-size: 2.5rem;
    }


    .servicio-card {
        padding: 2.5rem;
    }

    .contacto {
        padding: 3.5rem;
    }

    .inputs {
        flex-direction: row;
        max-width: 500px;
    }

    .email_input {
        flex: 1;
    }

    .submit_input {
        min-width: 150px;
    }

    .suscripcion {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .redes {
        justify-content: flex-start;
    }

}

@media screen and (min-width: 1024px) {
    .sobre {
        padding: 4rem 2rem;
    }

    .contenido-sobre {
        max-width: 800px;
        padding: 3rem;
    }

    .contenido-sobre h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .contenido-sobre p {
        font-size: 1.2rem;
        line-height: 1.8;
    }


    .suscribite {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }

    .imagenes {
        width: 800px;
        height: 450px;
        border-radius: 40px;
    }

    .texto h3 {
        font-size: 1.6rem;
    }


    .texto p {
        font-size: 1.5rem;
    }

    .atras,
    .adelante {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .puntos span {
        width: 16px;
        height: 16px;
    }

    .servicios {
        padding: 5rem 2rem;
    }

    .servicios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .servicios-title {
        font-size: 3.5rem;
    }

    .cta-seccion {
        padding: 3rem;
        ;
    }

    .contacto {
        padding: 4rem 4rem;
    }

    .suscripcion {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
        justify-content: space-between;
    }

    .footer-info {
        grid-column: 1/-1;
        text-align: center;
        margin-top: 2rem;
        line-height: 1.8;
    }
}