/* Basic Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.fixed-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.fixed-header .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #0d6efd;
    text-decoration: none;
}

.fixed-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.fixed-header nav ul li {
    margin-left: 1.5rem;
}

.fixed-header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.fixed-header nav ul li a:hover {
    color: #0d6efd;
}

/* Hero Section */
.hero-section {
    background-color: #f0f8ff;
    padding: 10rem 1rem;
    text-align: center;
    margin-top: 70px; /* Adjust for fixed header */
}

.hero-section h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.whatsapp-cta {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-cta:hover {
    background-color: #1da851;
}

/* Jornada Section */
.jornada-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.jornada-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    width: 80%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-item h3 {
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Recursos Section */
.recursos-section {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
    text-align: center;
}

.recursos-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.recursos-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.recursos-section ul li {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    color: #555;
}

/* Galeria Section (Carousel) */
.galeria-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.galeria-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0;
    display: block;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots .dot.active {
    background-color: #0d6efd;
}

/* Video Section */
.video-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.video-player {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    cursor: pointer;
}

.video-player img.video-poster {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-player .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player video {
    width: 100%;
    height: auto;
    display: none; /* Hidden by default */
}

/* Contact Section */
.contato-section {
    background-color: #f0f8ff;
    padding: 4rem 1rem;
    text-align: center;
}

.contato-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #0d6efd;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0a58ca;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1da851;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .timeline {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .timeline-item {
        width: 30%;
    }
}

@media (max-width: 767px) {
    .fixed-header nav {
        flex-direction: column;
    }

    .fixed-header nav ul {
        margin-top: 1rem;
    }

    .fixed-header nav ul li {
        margin: 0 0.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .whatsapp-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 100;
        padding: 0.6rem 1.5rem;
    }
}


