/* Reset de Bootstrap y estilos base */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Poppins, sans-serif;
    overflow-x: hidden;
    background-color: #8cc63f;
}

/* Reset de contenedores Bootstrap */
.container, 
.container-fluid {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.row {
    margin: 0;
}

.col, [class*="col-"] {
    padding: 0;
}

/* Contenedor principal */
.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.container::before,
.container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: rgba(195, 219, 182, 0.363);
    z-index: 5;
}

.container::before {
    width: 30px;
    height: 30px;
    top: 25%;
    left: 20%;
    z-index: 5;
}

.container::after {
    width: 150px;
    height: 150px;
    bottom: 35%;
    left: 71%;
    z-index: 4;
}

/* Fondo verde */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #8cc63f;
}

/* Curva blanca */
.curve {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 50%;
    height: 100%;
    background-color: white;
    border-top-left-radius: 120%;
    overflow: hidden;
    z-index: 5;
}

.curve::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 20px;
    left: 20px;
    z-index: 5;
}

/* Slider */
.slider {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120%;
    height: 120%;
    background-image: url('/images/slide-1.jpg');
    background-size: cover;
    background-position: -400px -30px;
}

/* Contenido */
.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.logo {
    font-weight: bold;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

/* Contenido principal */
.main-content {
    margin-top: 30px;
    margin-left: 100px;
}

/* Estilos para el texto "DISEÑO" */
.design-outline-1 {
    font-size: 7.8em;
    line-height: 0.898em;
    font-weight: 700;
    letter-spacing: 0px;
    animation-delay: 600ms;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    text-stroke: 1px rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
}

.design-outline-1:hover {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
    text-stroke-color: rgba(255, 255, 255, 0.6);
}

.design-outline-2 {
    font-size: 7.8em;
    line-height: 0.898em;
    font-weight: 700;
    letter-spacing: 0px;
    animation-delay: 600ms;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-stroke: 1px rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.design-outline-2:hover {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.8);
    text-stroke-color: rgba(255, 255, 255, 0.8);
}

.design-outline-3 {
    font-size: 7.8em;
    line-height: 0.898em;
    font-weight: 700;
    letter-spacing: 0px;
    animation-delay: 600ms;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 1);
    text-stroke: 1px rgba(255, 255, 255, 1);
    margin-bottom: 5px;
}

.design-text {
    font-size: 9.8em;
    line-height: 0.898em;
    font-weight: 700;
    letter-spacing: 0px;
    color: white;
}

/* Estilo para centrar el contenido en la columna */
.col-md-4 {
    display: flex;              /* Activa Flexbox */
    justify-content: center;    /* Centra horizontalmente el contenido */
    align-items: center;        /* Centra verticalmente el contenido */
    height: 100%;               /* Asegúrate de que la altura sea suficiente para el centrado vertical */
}

.logo h1 {
    font-size: 24px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.logo-img {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;    
    width: 200px; /* Ajusta el tamaño del logo según sea necesario */
    height: auto;
    max-width: 100%;
}

/* Redes sociales */
.social-icons {
    display: flex;
    gap: 10px;
    padding: 10px;
}
.social-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    z-index: 1;
}
.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #095fe9;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.social-icon:hover::before {
    opacity: 1;
}
.social-icon span, .social-icon svg {
    position: relative;
    z-index: 2;
}

/* Navigation */
nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-right: 50px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500; /* Increased from 500 to 600 for bolder text */
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px; /* Added for slightly more spacing between letters */
    text-shadow: 0 0 1px rgba(255,255,255,0.5); /* Added subtle text shadow for more prominence */
}

.nav-link:hover {
    color: white; /* Cambia a negro al pasar el mouse */
}

/* Estilo de la línea que aparece debajo del enlace */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0; /* La línea empieza sin ancho */
    height: 2px;
    background-color: white; /* Color de la línea debajo del enlace */
    left: 0;
    bottom: -5px; /* Posición justo debajo del enlace */
    transition: width 0.3s ease; /* Transición suave para mostrar la línea */
}

/* La línea aparece completamente solo al pasar el mouse */
.nav-link:hover::after {
    width: 100%;
}

/* Mantener la línea en el enlace activo */
.nav-link.active::after {
    width: 100%; /* La línea aparece completamente debajo del enlace activo */
}

/* Cuando se pasa el mouse sobre cualquier enlace, la línea del activo desaparece */
nav:hover .nav-link.active::after {
    width: 0;
}

/* sirve para visualizar la linea cuando se pasa por home */
nav ul:hover .nav-link.active:hover::after {
    width: 100%;
}      

.row {    
    display: flex;           /* Utiliza flexbox para alinear los elementos dentro de la fila */
    flex-wrap: wrap;         /* Permite que las columnas se ajusten a la siguiente línea si no hay suficiente espacio */
    margin-top: 30px;
    margin-right: -15px;     /* Elimina los márgenes negativos para alinear bien con el contenedor */
    margin-left: -15px;      /* Similar al margen derecho, alinea los bordes de la fila */
    box-sizing: border-box;  /* Asegura que el padding y border no afecten el tamaño total */
    background-color: #8cc63f;
}
     
.x-logo svg {
    width: 12px;
    height: 12px;
}

.search-icon svg {
    width: 14px;
    height: 14px;
}                
