/* style.css */

body {
    font-family: 'Inter', sans-serif;
    background-color: #386D4A; /* Dark Background Green from brand style guide */
    color: #FFFFFF; /* White text for contrast */
}

.section {
    /* Hidden by default, shown by JS */
    animation: fadeIn 0.8s ease-out; /* Smooth fade-in effect */
}

/* Custom colors from brand style guide */
.bg-verde-crecimiento { background-color: #66BB6A; }
.text-verde-crecimiento { color: #66BB6A; }
.bg-azul-ia { background-color: #2196F3; }
.text-azul-ia { color: #2196F3; }
.bg-dark-background-green { background-color: #386D4A; }
.text-dark-gray { color: #333333; }
.border-azul-ia { border-color: #2196F3; }
.hover\:bg-deep-circuit-blue:hover { background-color: #1976D2; }
.hover\:text-deep-circuit-blue:hover { color: #1976D2; }
.hover\:bg-light-leaf-green:hover { background-color: #A5D6A7; }
.hover\:text-light-leaf-green:hover { color: #A5D6A7; }

/* Keyframe for fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slideshow specific styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 1rem; /* rounded-xl */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
}
.mySlides {
    display: none;
    text-align: center;
}
.mySlides img {
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    object-fit: cover; /* Cover the area */
    border-radius: 1rem 1rem 0 0; /* Rounded top corners */
}
.testimonial-content {
    background-color: #f9fafb; /* bg-gray-50 */
    padding: 1.5rem; /* p-6 */
    border-radius: 0 0 1rem 1rem; /* Rounded bottom corners */
    color: #333333; /* text-dark-gray */
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active-dot, .dot:hover {
    background-color: #717171;
}
