/* Custom Styles */
body {
    max-width: 100vw !important;
}
:root {
    --primary-color: #2A5D34;
    --secondary-color: #7AB730;
}

.hero-section {
    padding-top: 100px;
    background-color: #2A5D34;
    color: white;
    margin-bottom: 100px;
}

.card {
    border: none;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#image-01 {
    margin-bottom: -90px;
    position: relative;
    z-index: 2;
}


.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
}
.btn-primary:hover {
    background-color: var(--secondary-color);
}

footer {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
}

#solutions {
    margin-top: 100px;
    margin-bottom: 100px;
}

/* page3.css Additions */
.solution-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.tech-features li {
    padding: 1rem;
    background: rgba(61, 136, 76, 0.05);
    box-shadow: 2px 2px 8px  rgba(0, 0, 0, 0.164);
    border-radius: 8px;
}

.bg-card {
    background-color: #2A5D34;
    color: white;
}

.case-card {
    border: 1px solid #00000036;
    border-radius: 8px;
    overflow: hidden;

}

.video-section {
    margin-top: 130px;
    margin-bottom: 130px;
}

.video-section iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.newsletter { 
    margin-bottom: 100px;
    margin-top: 100px;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    background-color: #6cf5f5;
}

.subscribe-home{
    background-color: #005F4088;
    border-radius: 12px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-cta .cta-box {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(42,93,52,0.1);
}


@media (max-width: 768px) {
    .hero-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.certifications {
    height: 100vh; /* Ajuste a altura conforme necessário */
    display: flex;
    align-items: center;
    justify-content: center;
}

#rotating-image {
    transition: transform 0.1s ease-out; /* Suaviza a transição da rotação */
}

#roller {
    margin-top: 190px;
    margin-bottom: 190px;
}

@media (max-width: 768px) {
    #roller {
        margin-top: 90px;
        margin-bottom: 90px;
    }
}

@media (max-width: 400px) {
    #roller {
        max-width: 350px !important;
        max-height: 350px !important;
    }
}