:root {
    --primary-color: #2d9157;
    --secondary-color: #27ae60;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --gray-color: #95a5a6;
}

body {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.navbar {
    padding: 1rem 0;
    background-color: #fff;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo-img {
    max-width: 120px;
    height: auto;
    margin-right: 10px;
}

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    color: var(--dark-color);
    font-size: 1rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.navbar .btn-primary {
    padding: 8px 24px;
    font-size: 1rem;
    margin-left: 15px;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.5rem 0;
        margin: 0;
    }
    
    .navbar .btn-primary {
        margin: 1rem 0;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .feature-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    #tempo-guarda {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    #tempo-guarda .feature-box {
        margin-bottom: 30px;
    }

    #tempo-guarda h4 {
        min-height: auto;
        margin-bottom: 15px;
        font-size: 1rem;
        padding: 0 10px;
    }

    .time-badge {
        font-size: 1.1rem;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .section-title {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta {
        padding: 60px 0;
        margin-top: -30px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .feature-box {
        margin: 15px 0;
    }

    #como-funciona {
        padding: 40px 0;
    }

    #como-funciona .feature-box {
        margin-bottom: 30px;
    }

    #como-funciona h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .row.g-4 {
        margin-top: 0 !important;
    }

    .row.g-3 {
        margin-top: 10px !important;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        margin-top: 30px;
    }
}

.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero h1 {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
}

.feature-box {
    padding: 40px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 5px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.counter-box {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    color: white;
    border-radius: 0 0 50% 50% / 100px;
    margin-top: -50px;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-form {
    padding: 40px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
}

/* Tempo de Guarda Section Styles */
.time-badge {
    display: inline-block;
    background-color: rgba(129, 141, 133, 0.15);
    color: #27ae60;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 10px;
    border: 2px solid rgba(82, 199, 131, 0.3);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 1.3rem;
    margin-top: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.time-badge:hover {
    background-color: rgba(46, 204, 113, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: none;
}

.feature-box:hover .time-badge {
    background-color: rgba(46, 204, 113, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

#tempo-guarda {
    padding-top: 20px;
}

#tempo-guarda .section-title {
    margin-bottom: 40px;
}

#tempo-guarda .feature-box {
    padding-bottom: 20px;
}

#tempo-guarda h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

#tempo-guarda .feature-icon {
    margin-bottom: 10px;
}

.text-justify {
    text-align: justify;
} 