:root {
    --primary-color: #80A417;
    --secondary-color: #91C3E7;
    --tertiary-color: #314900;
    --text-color: #434041;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    background: #f7f7f7;
    padding-top: 76px; /* Account for fixed navbar */
}

/* Navbar styles */
.navbar {
    background: white;
    border-bottom: 3px solid var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

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

.navbar-brand img {
    max-height: 50px;
}

/* Hero section styles */
.hero-section {
    margin-top: -76px;
}

.carousel-item {
    height: 100vh;
    min-height: 400px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-item img {
    object-fit: cover;
    height: 100vh;
    min-height: 400px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

/* Section styles */
section {
    padding: 5rem 0;
}

section h2 {
    color: var(--tertiary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Card styles */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Service cards */
.card .bi {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-title {
    color: var(--tertiary-color);
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 2rem;
}

.btn-primary:hover {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}
/* Values section */
.values-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#valores .text-center {
    padding: 2rem;
    transition: transform 0.3s ease;
}

#valores .text-center:hover {
    transform: translateY(-10px);
}

/* Contact section */
.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info i {
    color: var(--primary-color);
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
/* Footer */
footer {
    background-color: var(--tertiary-color) !important;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* Policy section */
blockquote {
    background: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    margin: 1em 0;
    padding: 1.5em;
    font-style: italic;
    color: var(--tertiary-color);
}

/* Responsive styles */
@media (max-width: 992px) {
    .carousel-item {
        height: 70vh;
    }
    
    .carousel-item img {
        height: 70vh;
    }
    
    section {
        padding: 4rem 0;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }

    .carousel-item, .carousel-item img {
        height: 50vh;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    #valores .text-center {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .carousel-item, .carousel-item img {
        height: 40vh;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
}
