/* General */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf7f1;
    color: #333;
}

/* Header Animation */
.header-animation {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url('fondoDivblanco3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Container */
.logo-container {
    display: flex;
    gap: 10px;
}

/* Logo Square */
.logo {
    width: 80px;
    height: 80px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 2px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Keyframes for Logo Animation */
@keyframes moveLogos {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Header */
header {
    background-color: #a5caae;
    color: white;
    text-align: center;
    padding: 1em 0;
    border: 2px solid #fdf7f1;
    margin-bottom: 10px;
}

/* Main */
main {
    padding: 2em;
    text-align: center;
}

/* Video Section */
/* Video Section: Ajustar tamaño */
/* Video Section: Ajustar tamaño */
/* Video Section: Ajustar tamaño */
/* Video Section: Ajustar tamaño */

/* Video Section: Ajustar tamaño sin limitación de ancho máximo */
/* Video Section: Ajustar tamaño */
.video video {
    width: 100% !important;  /* El video ocupa el 100% del ancho disponible */
    max-width: 280px !important;  /* Limitar el ancho máximo a 900px */
    height: 500px !important;  /* Aumentar la altura a 500px */
    margin: 0 auto;  /* Centrar el video */
    display: block;  /* Asegurarse de que sea un bloque para que ocupe el ancho completo */
    box-sizing: border-box;  /* Asegurarse de que los márgenes y bordes no afecten el tamaño */
}
.video video {
    max-width: 90%;
    border: 5px solid #a5caae;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}





/* Product Grid: Diseño en 2x2 */
/* Product Grid: Diseño en 2x2 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.product {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}
.product:hover {
    transform: scale(1.05);
}
.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}
/* Títulos y descripciones */
.product h3 {
    font-size: 1.2em;
    margin: 10px 0 5px;
    color: #333;
}

.product p {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0 0;
}



/* Navigation Bar */
nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #f1f1f1;
    color: #4caf50;
    border-radius: 5px;
}
/* Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
    color: #fff;
    font-family: Arial, sans-serif;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    max-width: 700px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-controls span {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 15px;
    font-size: 2rem;
    border-radius: 50%;
    transition: background 0.3s;
}

.slider-controls span:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* Footer */
footer {
    background-color: #a5caae;
    background-image: url('footer2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: green;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
}
/* Sección de Beneficios */
#benefits {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f9f9f9, #e8f8f5);
    text-align: center;
}

.benefits-title {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.benefits-title span {
    color: #27ae60;
}

.benefits-intro {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-highlight {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    background: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-10px);
}

.highlight-item h3 {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 1rem;
    color: #2d3436;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    background: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.benefits-list li:hover {
    transform: translateY(-10px);
}

.benefits-list img {
    width: 40px;
    height: 40px;
}


footer p {
    font-size: 14px;
    margin-top: 10px;
    color: rgb(15, 15, 15);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
.social-links a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
}
.social-links a:hover img {
    transform: scale(1.2);
    transition: transform 0.2s;
}
