
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0e0e0e; 
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.text-green {
    color: #4CAF50;
}


.navbar {
    background: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: 0.3s;
}

    .nav-link:hover {
        color: #4CAF50 !important;
    }

.btn-nav-action {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-nav-action:hover {
        background: white;
        color: black;
    }


.hero-wrapper {
    position: relative;
    height: 100vh; 
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    padding-top: 100px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero-bg.jpg') no-repeat center center/cover;
    z-index: -2;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14,14,14,0.3) 0%, #0e0e0e 100%);
    z-index: -1;
}


.big-bg-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw; 
    font-weight: 800;
    color: rgba(255,255,255,0.03); /* Quase transparente */
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 50px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}


.hero-cards-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 50px;
    z-index: 2;
    flex-wrap: wrap;
}

.mini-card {
    width: 160px;
    height: 220px;
    background: rgba(0,0,0,0.5);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
}

    .mini-card:hover {
        transform: translateY(-10px);
        border-color: #4CAF50;
    }

    .mini-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.7;
    }

.mini-card-text {
    padding: 15px;
    font-weight: 600;
    color: white;
    background: linear-gradient(to top, black, transparent);
    width: 100%;
}


.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #4CAF50;
        margin: 10px auto;
    }

.about-container {
    position: relative;
    padding: 100px 0;
}


.timeline-line-center {
    position: absolute;
    left: 50%;
    top: 150px;
    bottom: 100px;
    width: 2px;
    background: rgba(255,255,255,0.1);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

   
    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.timeline-content {
    width: 40%;
}

.timeline-image {
    width: 40%;
}

    .timeline-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.1);
    }

.timeline-point {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}


.included-section {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 40px 30px;
    transition: 0.3s;
}

    .feature-box:hover {
        background: rgba(255,255,255,0.1);
    }

.icon-box {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 20px;
}


.contact-section {
    position: relative;
    padding: 100px 0;
    background: url('/images/hero-bg.jpg') no-repeat bottom center/cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0e0e0e 10%, rgba(14,14,14,0.8) 100%);
}

.contact-form-glass {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 500px;
}

.form-control-glass {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 5px;
}

    .form-control-glass::placeholder {
        color: rgba(255,255,255,0.5);
    }

.btn-submit {
    background: white;
    color: black;
    width: 100%;
    padding: 15px;
    border: none;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-submit:hover {
        background: #4CAF50;
        color: white;
    }


@media (max-width: 768px) {
    .big-bg-text {
        font-size: 20vw;
        top: 15%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cards-row {
        display: none; 
    }

    .timeline-line-center {
        display: none;
    }

    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        margin-bottom: 50px;
    }

    .timeline-content, .timeline-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-point {
        display: none;
    }
}
