/* Reset y estilos base */
      /* Variables y estilos base */
        :root {
            --color-bg: #E9E8E0;
            --color-text: #4f4f4f;
            --color-accent: #8a7f66;
            --color-gold: #c9a959;
            --color-light: #f8f7f2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #E9E8E0;
    color: #4f4f4f;
    line-height: 1.6;
}

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

/* Estilos del Header */
header {
    background-color: #E9E8E0;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 15px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #4f4f4f;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #8a7f66;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Sección Hero */
.hero {
    margin-top: 120px;
    position: relative;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold-border {
    border: 3px solid #8a7f66;
    border-radius: 5px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Botones */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8a7f66;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #6d6553;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Secciones comunes */
 .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--color-accent);
        }
        

/* Carrusel de Tarjetas */
        .carousel-section {
            padding: 80px 0;
            background-color: rgba(138, 127, 102, 0.05);
        }
        
        .carousel-container {
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-card {
            min-width: 100%;
            padding: 40px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 0 10px;
            position: relative;
            border: 2px solid var(--color-gold);
        }
        
        .carousel-card::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 1px solid var(--color-gold);
            border-radius: 10px;
            pointer-events: none;
        }
        
        .carousel-card p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background-color: var(--color-accent);
            transform: scale(1.2);
        }


/* Sección Quiénes Somos */
.about-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.5);
}

.about-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.mission-vision {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

      .mission-box, .vision-box {
            flex: 1;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--color-gold);
        }
        
        .mission-box h3, .vision-box h3 {
            color: var(--color-accent);
            margin-bottom: 15px;
            font-size: 24px;
        }

/* Sección Servicios */
.services-section {
    padding: 80px 0;
    background-color: #E9E8E0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--color-gold);
}

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

.service-img-container {
    height: 200px;
    overflow: hidden;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: #8a7f66;
    font-size: 22px;
}

.service-card ul {
    padding: 0 20px 20px;
    list-style-position: inside;
}

.service-card ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Sección Productos */
.products-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--color-gold);
    transition: transform 0.3s ease;
}

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

.product-img-container {
    height: 250px;
    overflow: hidden;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px;
    color: #8a7f66;
    font-size: 22px;
}

.product-card ul {
    padding: 0 20px 20px;
    list-style-position: inside;
}

.product-card ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Sección Contacto */
.contact-section {
    padding: 80px 0;
    background-color: #E9E8E0;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3, .contact-form h3 {
    color: #8a7f66;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 18px;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #8a7f66;
    border-radius: 5px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #4f4f4f;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-style: italic;
    color: #8a7f66;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: #8a7f66;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #8a7f66;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .about-content, .mission-vision {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
        text-align: center;
        margin-top: 15px;
    }
    
    .hero-overlay h1 {
        font-size: 36px;
    }
    
    .hero-overlay p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
       .carousel-card {
                padding: 25px;
            }
            
            .carousel-card p {
                font-size: 16px;
            }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-overlay h1 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}