 /* Reset y estilos generales */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* Header y navegación */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    color: #637d0e;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #637d0e;
}

/* Hero section */
.hero {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 50%;
}

.hero-image {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

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

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #637d0e;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #4a5e0a;
}

/* Sobre nosotros */
.about {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about-image {
    width: 100%;
    height: 200px;
    background-image: url('./imgs/2.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}

/* Servicios */
.services {
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background-color: #637d0e;
    color: white;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
}

.service-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-title {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Testimonios */
.testimonials {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.testimonial-text {
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
}

/* Por qué elegirnos */
.why-us {
    padding: 50px 0;
}

.why-us-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: #637d0e;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Contacto */
.contact {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.contact-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f0f0f0;
}

.btn-submit {
    width: 100%;
    background-color: #637d0e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #4a5e0a;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 25px 0;
    border-top: 1px solid #ddd;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: bold;
    color: #637d0e;
}

.footer-links {
    display: flex;
}

.footer-links a {
    margin-left: 15px;
    color: #333;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

.social-icons {
    display: flex;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #637d0e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: white;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #637d0e;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    z-index: 999;
    display: none;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.accept-btn {
    background-color: white;
    color: #333;
}

.reject-btn {
    background-color: white;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid, .testimonials-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .services-grid, .testimonials-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}