:root {
    --color-principal: #31F501;
    --color-background: #040708;
    --card-background: #1A1F22;
    --color-secundario: #2ecc71;
    --color-text: white;
    --fuente-base: 'Segoe UI', sans-serif;
    --espaciado: 16px;
    --borde-radius: 4px;
    --box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;

    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    background-color: var(--color-background);
}

.logo img {
    height: 25px;
    width: auto;
}


header {
    background: var(--color-background);
    color: #333;
    padding-top: 20px;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    display: block;
}

header nav ul li .get-started {
    background-color: var(--color-principal);
    color: black;
    padding: 10px 20px;
    border-radius: var(--borde-radius);
}

/* Dropdown submenu */
nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--color-background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: 180px;
    border-radius: var(--borde-radius);
}

nav ul li .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul li .dropdown-menu li:last-child {
    border-bottom: none;
}

nav ul li .dropdown-menu li a {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}

nav ul li .dropdown-menu li a:hover {
    background-color: var(--color-principal);
    color: black;
}

nav ul li:hover .dropdown-menu {
    display: block;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
}

button:hover {
    background-color: #0056b3;
    /* Azul más oscuro al pasar el ratón  */
}


header nav {
    float: right;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    padding: 0 15px;
}


.row {
    display: flex;
    flex-direction: row;
}

.col {
    flex-direction: column;
}


.container__1 {
    width: 40%;
    height: 100%;
    margin: auto;
    display: flex;
    gap: 20px;
    padding: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    text-align: start;
}

.container__2 {
    width: 60%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Importante para el posicionamiento de la sombra */
}

.container__2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.8;
}

.container__2 img {
    max-height: 500px;
    width: auto;
    margin-bottom: 40px;
    object-fit: contain;
    display: block;
    position: relative;
    /* Para apilar la imagen sobre la sombra */
    z-index: 1;
    /* Asegura que la imagen esté encima de la sombra */
}

.container__1 .titulo {
    font-size: 36px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.text__container1 {
    font-size: 18px;
    color: #ccc;
    font-weight: bold;
}

.text__resaltar__container1 {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-principal);
}




.text__resaltar {
    color: var(--color-principal) !important;
}


.hero {
    width: 80%;
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: center;
}

.hero .container__1 {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centrado vertical 
    */
    gap: 20px;
    height: 100%;
    /* Muy importante */
}

.hero .container__1 div {
    display: flex;
}

.btns__hero a {
    width: 100%;
    border: 0px;
    padding: 10px;
    margin: 20px 0px !imporntatnt;
    background-color: var(--color-principal);
    border-radius: var(--borde-radius);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: black;
}


.hero .container__1 .btns__hero button:first-child {
    background-color: var(--color-principal);
    color: black;
}

.hero .container__1 .btns__hero button:first-child:hover {
    background-color: var(--color-principal);
}

.hero .container__1 .btns__hero button:last-child {
    background-color: transparent;
    border: 2px solid gray;
    color: white;
}

.hero .container__1 .btns__hero button:last-child:hover {
    background-color: #38adcd;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px;
    background-color: #0a0a0a;
    /* Fondo oscuro */
}

.testimonials {
    text-align: center;
    padding: 20px 0;
    color: var(--color-background);
    background-color: var(--color-principal);
}

.testimonials h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}



.clientes {
    background-color: var(--color-background);
    padding: 10px 30px;
    text-align: center;
    overflow: hidden;
}

.titulo-clientes {
    font-size: 2rem;
    color: var(--color-principal);
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff88;
}

/* Slider */
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 12);
    /* 12 logos en total */
    animation: scroll 25s linear infinite;
}

.logo {
    width: 150px;
    height: auto;
    margin: 0 20px;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.4));
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Animación */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.contacto {
    background-color: var(--color-background);
    padding: 20px 0px;
    text-align: center;
}

.titulo-contacto {
    font-size: 2rem;
    color: var(--color-principal);
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff88;
}

.formulario-contacto {
    max-width: 600px;
    margin: 0 auto;
    background-color: #111;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.campo {
    margin-bottom: 20px;
    text-align: left;
}

.campo label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 600;
}

.campo input,
.campo textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.1);
    transition: box-shadow 0.3s ease;
}

.campo input:focus,
.campo textarea:focus {
    box-shadow: 0 0 10px #00ff88;
}

.boton-enviar {
    padding: 12px 25px;
    font-size: 1rem;
    background-color: var(--color-principal);
    color: #000;
    border: none;
    border-radius: var(--borde-radius);
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.boton-enviar:hover {
    background-color: var(--color-principal);
}

.titulo__services {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    overflow: hidden;
    color: var(--color-text);
}

.titulo__services h2 {
    font-size: 36px;
}



/* Estilos adicionales para mejorar la apariencia  */
.service-card {
    position: relative;
    /* Necesario para posicionar el círculo */
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: flex-start;
    align-content: flex-start;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: var(--borde-radius);
    text-align: start;
    transition: transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
    /* Sombra blanca sobria */
}

.service-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-description {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}

.learn-more {
    color: #31F501;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.learn-more:hover {
    text-decoration: underline;
}

.service-card::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 20%;
    transform: translateY(-50%);
    width: 7px;
    height: 65px;
    background-color: var(--color-principal);
    /* o cualquier color que desees */
    border-radius: 8px 0px 0px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--color-principal);
    color: #111;
}

.service-card:hover .service-description {
    color: #111;
}

.service-card p,
h2 {
    padding: 0px;
    margin: 0px;
    font-weight: bold;
}

.service-card h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 15px;
}

.service-card:hover h2 {
    color: black;
}

.service-card:hover p {
    color: black;
}

.service-card:hover a {
    color: #111;
}

.service-card:hover img {
    background-color: #248c01;
    /* Verde más opaco/suave */
}

.service-card a {
    color: var(--color-principal);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer__espacio {
    height: 40px;
}

.footer {
    bottom: 0;
    height: 75px;
    color: #fff;
    padding: 20px 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    box-shadow: 0 -1px 10px rgba(0, 255, 0, 0.2);
}

.footer-content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.footer-right {
    display: flex;
    gap: 10px;
}

.footer-right a {
    color: #fff;
    font-size: 30px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-right a:hover {
    color: var(--color-principal);
    transform: scale(1.2);
}