/* =================== */
/* 🎨 ESTILOS GENERALES */
/* =================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&family=Overpass:wght@300;400;700&display=swap');

body {
    font-family: 'Overpass', sans-serif; /* Cambié la fuente global a Overpass */
    margin: 0;
    padding: 0;
    color: #FFFFFF; /* Texto en blanco */
    line-height: 1.6;
    background-color: #fff; /* Fondo blanco global */
}

/* =================== */
/* 🌟 MENÚ ANIMADO */
/* =================== */
.logo-header {
    width: 400px; /* Ajusta el ancho */
    height: auto;  /* Mantiene la proporción */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    font-weight: 400;
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px; /* Espacio para la línea */
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: small;
}

nav ul li a::after {
    content: "";
    display: block;
    width: 0%; /* Comienza con la línea invisible */
    height: 2px;
    background-color: white;
    transform: translateY(8px); /* Ajusta el valor para mover la línea más abajo */
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%; /* La línea se completa de lado a lado */
    opacity: 1;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 5)); /* Agrega sombra */
    transform: translateY(8px); /* Mueve la línea más abajo */
    
}

nav ul li a:hover,
nav ul li a.active {
    color: #5CAC73; /* Color de texto al estar activo o hover */
    transform: scale(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* =================== */
/* 🎬 VIDEO DE FONDO */
/* =================== */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* =================== */
/* 🏠 CONTENEDOR PRINCIPAL */
/* =================== */
.main-container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    max-width: 900px;
    margin: 50px auto;
    border-radius: 10px;
}

/* =================== */
/* 📌 ENCABEZADO Y NAVEGACIÓN */
/* =================== */
header {
    background-color: transparent;
    color: white;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

a {
    color: white;
    text-decoration: none;
}

/* =================== */
/* 📌 PIE DE PÁGINA */
/* =================== */
footer {
    background-color: rgba(141, 216, 163, 0);
    color: #FFFFFF;
    text-align: center;
    padding-bottom:  10px;
    width: 100%;
    font-size: 14px;
    position: relative;
    bottom: 0;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* =================== */
/* 🔗 ICONOS */
/* =================== */
.linkedin-icon  {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.linkedin-icon:hover  {
    transform: scale(1.2);
    filter: brightness(1.5);
}
.x-icon  {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.x-icon:hover  {
    transform: scale(1.2);
    filter: brightness(1.5);
}
.instagram-icon  {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.instagram-icon:hover  {
    transform: scale(1.2);
    filter: brightness(1.5);
}

#text-footer{
    font-size: 11px;
}

/* =================== */
/* 🔠 TIPOGRAFÍA */
/* =================== */
h1, h2 {
    font-family: 'Quicksand', sans-serif; /* Cambié la fuente a Quicksand */
    font-weight: 400; /* Peso de fuente ajustado a 400 */
    color: #FFFFFF;
    text-transform: uppercase; /* Títulos en mayúsculas */
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 22px;
}

p {
    font-family: 'Overpass', sans-serif; /* Cambié la fuente a Overpass */
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    color: white;
}

/* =================== */
/* 🔘 BOTONES */
/* =================== */
button {
    background-color: #5CAC73;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #8DD8A3;
}

/* =================== */
/* 💬 WHATSAPP FLOTANTE */
/* =================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: heartbeat 1.5s infinite ease-in-out;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transition: 0.3s;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}





/* Fondo global para la página */
body {
    background-color: #fff; /* Fondo blanco global */
    margin: 0;
    padding: 0;
}

#bienvenido-camino-neutro {
    font-size: 2.3rem; /* Ajusta el tamaño según lo necesites */
    font-weight: medium;
    margin-top: 5%;
    margin-bottom: 0%;
    line-height: 1.2;
    font-family: 'Overpass', sans-serif; 
}

#explora {
    font-size: 1.3rem; /* Ajusta el tamaño según lo necesites */
    font-weight: 400;
    text-align: center;
    color: white;
}
.cta-button {
    display: inline-block;
    background-color:  white;
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px; /* Redondeo moderado */
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 3%;
    text-transform: uppercase; /* Convertir texto a mayúsculas */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transiciones suaves */
}
#cta-calculadora {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px; /* Redondeo moderado */
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 3%;
    text-transform: uppercase; /* Convertir texto a mayúsculas */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transiciones suaves */
}
.cta-button:hover {
    background-color: #45a049; /* Efecto de color al pasar el ratón */
    transform: scale(1.1); /* Efecto de expansión al pasar el ratón */
}

/* Animación al presionar el botón */
.cta-button:active {
    animation: press-animation 0.2s ease-out;
}

/* Definición de la animación de presionar */
@keyframes press-animation {
    0% {
        transform: scale(1); /* Estado inicial */
    }
    50% {
        transform: scale(0.95); /* El botón se hace más pequeño al inicio */
    }
    100% {
        transform: scale(1); /* Vuelve a su tamaño original */
    }
}

/* Alineación general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Títulos principales */
#titulo-principal {
    font-size: 2em;
    color: #006747; /* Verde oscuro */
    text-align: left;
}

/* Sección de introducción */
#introduccion {
    background-color: #c5e1a5; /* Verde claro */
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

/* Títulos secundarios */
#como-empezar, #tiempo-calculo, #periodo-medicion {
    color: #004d30; /* Verde más oscuro para títulos secundarios */
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Texto de las preguntas y contenido */
#introduccion-texto, #tiempo-texto, #periodo-texto {
    color: #333;
    line-height: 1.6;
}

/* Sección de formulario */
#formulario {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
}

/* Estilo de las preguntas */
.question {
    font-size: 1.1em;
    margin-top: 20px;
    color: #006747; /* Verde para las preguntas */
}

/* Inputs y selectores */
input[type="number"], select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 1em;
}

/* Estilo de botones */
#boton-enviar {
    background-color: #006747; /* Verde */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    text-transform: uppercase; /* Texto en mayúsculas */
    width: 100%;
    margin-top: 20px;
}

#boton-enviar:hover {
    background-color: #004d30; /* Verde oscuro */
}

/* Estilos para los selectores y otros inputs */
select, input[type="number"] {
    font-size: 1.1em;
    padding: 10px;
}

/* Mejorar contraste en formularios */
input:focus, select:focus {
    border: 2px solid #004d30;
    outline: none;
}

input::placeholder, select option {
    text-transform: uppercase;
}

/* Alineación general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Contenedor principal */
.main-container {
    width: 80%;
    margin: 0 auto;
    padding: 30px 0;
}

/* ======================== */
/* 📞 SECCIÓN DE CONTACTO */
/* ======================== */
#contacto-section {

    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* 📌 TÍTULO */
#contacto-titulo {
    color: white;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
    margin-top: 0%;
}

/* 📌 ETIQUETAS */
label {
    font-size: 0.8em;
    color: white;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

/* 📌 INPUTS Y TEXTAREA */
input[type="text"], input[type="email"], textarea {
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 12px;
    border: 0.1px solid white;
    font-size: 0.9em;
    transition: border-color 0.3s ease;
    border-radius: 5px;
    color: white;
}

input:focus, textarea:focus {
    border-color: white;
    outline: none;
}

/* 📌 BOTÓN DE ENVÍO */
#submit-btn {
    background-color: #004d30;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s ease;
}

#submit-btn:hover {
    background-color: #00291e;
}

/* 📌 ESPACIADO ENTRE ELEMENTOS */
.form-group {
    margin-bottom: 25px;
}
#titulo-footsprint {
    font-weight: bold; /* Hace la fuente más gruesa */
    color: #5CAC73; /* Verde personalizado */
    font-size: 1.5rem; /* Ajusta el tamaño según necesites */
    text-transform: uppercase; /* Convierte el texto a mayúsculas (opcional) */
    letter-spacing: 1px; /* Espaciado entre letras (opcional) */
  }
  

/* Estilo de la sección de contacto para pequeños dispositivos */
@media (max-width: 600px) {
    #contacto-titulo {
        font-size: 1.8em;
    }
    #submit-btn {
        font-size: 1em;
        padding: 12px 25px;
    }
}

/* Alineación general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Contenedor principal */
.main-container {
    width: 80%;
    margin: 0 auto;
    padding: 30px 0;
}

/* Estilo para la sección Acerca de Nosotros */
#about-container {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Título principal de la sección */
#about-title {
    color: white;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 10px;
}

/* Descripción o párrafo */
#about-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: WHITE;
    text-align: center;
    margin-bottom: 20px;
}

/* Mejora del foco en los elementos */
input:focus, textarea:focus {
    border-color: #004d30;
    outline: none;
}

/* Estilo para la sección Acerca de Nosotros para pequeños dispositivos */
@media (max-width: 600px) {
    #about-title {
        font-size: 2em;
    }
    #about-description {
        font-size: 1em;
    }
}

/* Estilo base */
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;  /* Ajuste de padding para el enlace */
    display: block;
}

/* Submenú */
.submenu-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: transparent;
    list-style: none;
    padding: 0;
    text-align: center; /* Asegura que los enlaces en el submenú estén centrados */
    margin: 0;
    min-width: 100%; /* Esto hace que el submenú tenga el mismo ancho que el enlace principal */
    z-index: 10;
}

/* Asegurarse de que los elementos en el submenú estén centrados */
.submenu-content li {
    width: 100%;
}

.submenu-content a {
    background: white;
    padding: 6px;
    display: block;
    color: #333;
}

/* Hover en los elementos del submenú */
.submenu-content a:hover {
    background: #F6FFF9;
    color: #5CAC73;
}

/* Mostrar submenú al pasar el mouse */
.submenu:hover .submenu-content {
    display: block;
}
.calculadora-header,
.calculadora-footer {
    background-color: #004d30;  /* Fondo verde */
}

/* Si necesitas más personalización, puedes aplicar estilos adicionales solo a estos elementos dentro de la calculadora */
.calculadora .calculadora-header,
.calculadora .calculadora-footer {
    /* Otros estilos que quieras aplicar, como color de texto, padding, etc. */
        background-color: #004d30;  /* Fondo verde */
    }
    
    /* Si necesitas más personalización, puedes aplicar estilos adicionales solo a estos elementos dentro de la calculadora */
    .calculadora .calculadora-header,
    .calculadora .calculadora-footer {
        /* Otros estilos que quieras aplicar, como color de texto, padding, etc. */
        color: white;
    }
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        background-color: #f5f5f5;
        color: #333;
      }
      
      #main-container-calculadora{
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
        background: white;
        box-shadow: 0 0 8px rgba(0,0,0,0.1);
        border-radius: 8px;
      }
      
      h1, h2 {
        text-align: center;
      }
      
      .progress-bar-container {
        width: 100%;
        background-color: #ccc;
        border-radius: 5px;
        overflow: hidden;
        height: 10px;
        margin-bottom: 20px;
      }
      
      #progress-bar {
        height: 10px;
        background-color: #4caf50;
        width: 0%;
        transition: width 0.3s ease-in-out;
      }
      
      .section {
        margin-top: 2rem;
      }
      
      .paso {
        margin-top: 1rem;
      }
      
      input, select {
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
        margin: 0.5rem 0 1rem;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 4px;
      }
      
      button {
        padding: 0.6rem 1.2rem;
        margin-right: 0.5rem;
        background-color: #4caf50;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }
      
      button:hover {
        background-color: #45a049;
      }
      
      .calculadora-header,
      .calculadora-footer {
        background-color: #e0e0e0;
        padding: 1rem;
        text-align: center;
      }
      
      .justificado {
        text-align: justify;
      }
      
#titulo-formulario{
    color: #004d30;
}
/* Contenedor de las tarjetas */
.cards-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Tarjeta */
.card {
    background-color: #fff;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

/* Sección superior con la imagen */
.card-image {
    width: 100%;
    height: 200px; /* Altura fija para evitar que la imagen se expanda demasiado */
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ícono circular centrado en la línea divisoria */
.icon-container {
    position: absolute;
    top: 190px; /* Ajusté la posición para que el ícono quede bien ubicado */
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-container img {
    width: 40px;
    height: 40px;
}

/* Contenido de la tarjeta */
.card-content {
    padding: 20px;
    text-align: center;
}

/* Títulos y texto */
.card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card p {
    font-family: 'Overpass', sans-serif;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

/* Botón */
.cta-button {
    background-color:  white;
    color: #4CAF50;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: white;
}
.titulo-footsprint {
    font-weight: bold; /* Hace la fuente más gruesa */
    color: #5CAC73; /* Verde personalizado */
    font-size: 1.5rem; /* Ajusta el tamaño según necesites */
    text-transform: uppercase; /* Convierte el texto a mayúsculas (opcional) */
    letter-spacing: 1px; /* Espaciado entre letras (opcional) */
  }
  