/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 15 abr. 2026, 10:06:36
    Author     : jbrenes
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

header {
    background-image: url('imagen principal.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    background-position: center;
}

header h1 {
    font-size: 2.5em;
    font-family: 'Raleway', sans-serif;  /* Aplicamos la fuente Raleway */
    font-weight: normal;  /* Asegura que no esté en negrita */
}

header p {
    font-size: 1.2em;
    font-family: 'Raleway', sans-serif;  /* Aplicamos la fuente Raleway */
    font-weight: normal;  /* Asegura que no esté en negrita */
}

.container {
    width: 80%;
    margin: 40px auto;
}

.section-title {
    text-align: center;
    color: #fba313;
    margin-bottom: 40px;
    font-size: 2em;
}

.content {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-left: 5px solid #fba313;
}

.section-title1 {
    text-align: center;
    color: #fba313;
    margin-bottom: 40px;
    font-size: 2em;
}

.contentb-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contentb {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 30%;
    box-sizing: border-box;
}

.contentb-cumplimiento {
    border-left: 5px solid #fba313;
}

.contentb-declaracion {
    border-left: 5px solid #fba313;
}

.contentb-politica {
    border-left: 5px solid #fba313;
}

.contentb-aire {
    border-left: 5px solid #dcd4d4;
}

.contentb-agua {
    border-left: 5px solid #0e42c3;
}

.contentb-suelo {
    border-left: 5px solid #943126;
}

.contentb-energia {
    border-left: 5px solid #e8eb0f;
}

.contentb-adquisicion {
    border-left: 5px solid #1abc9c;
}

.contentb-papel {
    border-left: 5px solid #3a7c21;
}

.content p {
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fba313;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #fba313;
}

footer {
    background-color: #fbbb44;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Estilo para el video */
.video-container {
    text-align: center;
    margin: 40px 0;
}

.video-container video {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

/* Estilos para el carrusel */
.carousel-container {
    text-align: center;
    margin: 40px 0;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.carousel-item {
    display: none;
}

.carousel-item img {
    width: 100%;
    border-radius: 8px;
}

.carousel-item.active {
    display: block;
}

/* Estilos para los controles */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

/*Texto en el carrusel*/
.carousel-item-content {
    position: relative;
    text-align: center;  /* Alinea todo el contenido al centro */
}

.carousel-item img {
    width: 100%;
    border-radius: 8px;
}

.carousel-text {
    position: absolute;   /* Posiciona el texto dentro de la imagen */
    bottom: 0;            /* Lo coloca en la parte inferior de la imagen */
    left: 50%;            /* Centra el texto horizontalmente */
    transform: translateX(-50%); /* Ajuste para centrar exactamente */
    background-color: rgba(0, 0, 0, 0.5);  /* Fondo semitransparente para el texto */
    color: white;
    padding: 20px;
    width: 100%;  /* El contenedor de texto ocupa todo el ancho de la imagen */
    box-sizing: border-box; /* Asegura que el padding no haga que el texto se desborde */
}

.carousel-text h3 {
    margin: 0;
    font-size: 1.5em;
}

.carousel-text p {
    margin: 5px 0 0;
    font-size: 1em;
}

.espacio {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
}

.circulo {
    width: 150px;
    height: 150px;
    background-color: yellowgreen;
    border-radius: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.circulo:hover {
    background-color: orange;
    transform: scale(1.1);
}

.circulo img {
    width: 60px;
    height: 60px;
}

a {
    text-decoration: none;
}
ol li {
    padding: 10px;
    margin-left: 20px;
}

button {
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

