/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    text-align: left;
    max-width: 420px;
    color: var(--color-verde-primario);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.75);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.hero-title {
    font-size: 2.5rem; 
    font-weight: bold;
    margin-bottom: 0; 
    line-height: 1.1;
    margin-top: -10px;
}

.hero-subtitle {
    font-size: 2.5rem; 
    font-weight: bold;
    margin-top: 5px; 
    margin-bottom: 25px; 
    line-height: 1.1;
}

.hero-button {
    text-decoration: none;
    background: var(--color-boton);
    color: white;
    border: none;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 20px;
    transition: background 0.3s;
}

.hero-button:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
    cursor: pointer;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-nav:hover {
    background: rgba(0, 0, 0, 0.45);
    transform: translateY(-50%) scale(1.05);
}

.hero-nav.prev {
    left: 14px;
}

.hero-nav.next {
    right: 14px;
}

.hero-dots {
    position: absolute;
    bottom: 18px;
    left: 5%;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active {
    background: var(--color-verde-primario);
    border-color: var(--color-verde-primario);
    transform: translateY(-1px);
}


/* Catalog Section */
.catalog-section {
    padding: 60px 20px;
    background: #F4F4F4;
}

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

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--color-verde-primario);
    margin-bottom: 30px;
}

.section-title{
    font-size: 2rem;
    color: var(--color-verde-primario);
}

.category-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.category-square {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 15px;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-item {
    width: 300px; 
    height: 110px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-icono-gris); 
    border-radius: 4px;
    padding: 10px; 
    margin: 10px; 
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.category-item:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}


.category-item .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(240, 237, 237);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-item .icon-image {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain; 
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-thumb {
    width: 100%;
    height: 320px;
    max-height: 320px;
    min-height: 320px;
    background: #f5f5f5;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-verde-primario);
    margin: 0;
    line-height: 1.3;
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.size-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 10px;
    background: #eef5f2;
    color: var(--color-verde-primario, #4b8673);
    font-size: 0.78rem;
    font-weight: 600;
}

.size-chip.more {
    background: #e6e6e6;
    color: #555;
}

.product-price {
    font-weight: 700;
    color: var(--color-gris-oscuro);
    margin: 0;
}

/* Promo Section */
.promo-section {
    max-width: 900px; 
    margin: 30px auto;
    border-radius: 15px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
    background-image: url('/public/assets-img/banner2.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 35px 20px; 
    text-align: center;
    color: var(--color-verde-primario);
}

.promo-container {
    max-width: 500px;
    margin: 0 auto;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700; 
    margin-bottom: 0px; 
    color: var(--color-verde-primario); 
    text-transform: uppercase;
}

.promo-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2px;
    margin-bottom: 10px;
    color: var(--color-verde-primario); 
}

.promo-description {
    font-size: 1rem; 
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 20px;
    color: var(--color-verde-primario); 
    opacity: 0.9;
}

.promo-button {
    text-decoration: none;
    background: var(--color-boton);
    color: white;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.promo-button:hover {
    transform: scale(1.05);
}

/* Footer */

.main-footer {
    background-color: var(--color-verde-secundario); 
    color: white;
    padding: 50px 20px 20px; 
    font-family: "poppins"; 
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px; 
    margin: 0 auto;
    flex-wrap: wrap; 
}

.footer-column {
    width: 10%; 
    min-width: 150px; 
    margin-bottom: 20px;
}

.brand-info {
    width: 30%; 
    min-width: 250px;
}

.column-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff; 
}

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

.footer-column li {
    margin-bottom: 8xpx;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.85; 
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}


.logo-container {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 5px; 
}

.footer-logo {
    width: 250px; 
    height: auto; 
    filter: brightness(2);
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
    margin-top: 5px; 
}

/* Social Icon */

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: white;
    opacity: 1; /
}


/* Copyright */

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: left;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3); 
    margin: 0 0 20px;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}
/* Breadcrumb Navigation */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.9rem;
    background: #73a8a0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #ffffff;
}

/* Category Filter */
.category-filter {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-filter h3 {
    margin: 0 0 15px 0;
    color: var(--color-verde-primario);
    font-size: 1.2rem;
}

.category-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

/* Header */
.main-header .logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .main-header .logo {
        width: 160px;
    }
}

.category-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
}

.category-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.category-option.active {
    background: var(--color-verde-primario, #4b8673);
    color: white;
}

.category-count {
    color: var(--color-gris-oscuro);
    font-size: 0.9rem;
}

/* Catalog Page Layout */
.catalog-page {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.main-content {
    flex: 1;
}
/* Product Detail */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-detail-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-image-section {
    flex: 1;
}

.detail-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-info-section {
    flex: 1;
    padding: 20px 0;
}

.product-title {
    font-size: 2rem;
    color: var(--color-verde-primario);
    margin-bottom: 20px;
}

.product-description {
    color: var(--color-gris-oscuro);
    line-height: 1.6;
    margin-bottom: 30px;
}

.size-selector, .color-selector {
    margin-bottom: 25px;
}

.size-selector label, .color-selector label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-verde-primario);
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    padding: 10px 15px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-btn:hover, .size-btn.active {
    border-color: var(--color-verde-primario);
    background: var(--color-verde-primario);
    color: white;
}

.size-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s;
}

.color-option:hover, .color-option.active {
    border-color: var(--color-verde-primario);
}

.price-section {
    margin-bottom: 30px;
    display: grid;
    gap: 12px;
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-verde-primario);
}

.price-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gris-oscuro, #4b4b4b);
    font-size: 0.9rem;
}

.price-option input[type="checkbox"] {
    accent-color: var(--color-verde-primario);
}

.price-option input[type="checkbox"]:disabled + span {
    opacity: 0.5;
}

/* Map Section */
.map-section {
    padding: 60px 20px 80px;
    background: #f5f7f6;
}

.map-card {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    min-height: 420px;
}

.map-info {
    padding: 32px 36px;
    background: linear-gradient(135deg, #e8f2ef, #f8fbfa);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: var(--color-gris-oscuro, #3d3d3d);
}

.map-kicker {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-verde-primario);
    font-weight: 700;
    margin: 0;
    font-size: 0.9rem;
}

.map-title {
    margin: 0;
    color: var(--color-verde-primario);
    font-size: 1.8rem;
}

.map-description {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.map-frame {
    position: relative;
    min-height: 360px;
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.1) saturate(1.05);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #0cb9fd;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn img {
    width: 24px;
    height: 24px;
}

/* Related Products */
.related-products {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.related-products h2 {
    text-align: center;
    color: var(--color-verde-primario);
    margin-bottom: 40px;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
}

.nosotros-page-content { 
    font-family: 'poppins', sans-serif;
    color: #333;
}
.mission-hero-section {
    position: relative;
    width: 100%;
    height: 70vh; 
    min-height: 500px; 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start; 
    align-items: center;     
    font-family: 'poppins', sans-serif;
    overflow: hidden;
    padding-left: 8%; 
    padding-right: 2%;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}

.mission-content {
    position: relative; 
    z-index: 10;
    width: 700px; /* Ancho fijo para el bloque de texto */
    max-width: 40%;
    text-align: left;
    padding: 30px 0;
    transform: translateY(0);
}

.mission-headline {
    font-size: 3.2rem; 
    font-weight: 700;
    color: white; 
    line-height: 1.1;
    margin-bottom: 15px; /* Reducido ligeramente */
    text-transform: uppercase;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.mission-slogan {
    font-size: 1.35rem;
    color: #f0f0f0; 
    margin-bottom: 40px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.mission-button {
    display: inline-block;
    background-color: var(--color-boton); 
    color: #3d3d3d;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    text-decoration: none;
}

.mission-button:hover {
    background-color: #bfa170; 
    transform: scale(1.03);
}

.values-section {
    padding: 80px 20px;
    background-color: white; 
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-verde-primario); 
    margin-bottom: 60px;
    text-transform: uppercase;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; 
}

.value-card {
    flex: 1; 
    min-width: 280px;
    padding: 20px;
}

.value-icon i {
    font-size: 1.8rem;
    border: 2px solid var(--color-beige-boton);
    border-radius: 50%;
    padding: 20px;
    display: inline-block;
    color: var(--color-verde-primario);
    background-color: rgba(209, 184, 142, 0.2); /* Beige suave de fondo */
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-verde-primario); 
    margin-bottom: 10px;
}

.value-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


.cta-section {
    padding: 60px 20px;
    background-color: #F5F5F0; 
    text-align: center;
}

.cta-headline {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-verde-primario);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-verde-primario); 
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #4a8079;
    transform: scale(1.03);
}

.contact-page-wrapper {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    padding-bottom: 10px;
}

.contact-hero {
    background-color: var(--color-fondo-claro);
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--color-verde-primario);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.1rem;
    color: var(--color-texto-oscuro);
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    max-width: 1000px;
    margin: 60px auto;
    background-color: white; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); 
    border-radius: 12px;
    overflow: hidden; 
}

.contact-image-area {
    flex: 0 0 35%;
    height: auto; 
    min-height: 100%; 
    background: var(--color-acento-beige); 
    position: relative;
    overflow: hidden; 
}

.contact-visual {
   width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form-area {
    flex: 1; 
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-area h2 {
    color: var(--color-verde-primario);
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-texto-oscuro);
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid black;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box; 
    background-color: white; 
    color: var(--color-texto-oscuro);
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-verde-primario);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-top: -10px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-texto-oscuro);
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--color-verde-primario);
    width: 18px;
    height: 18px;
}

.form-status {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    display: none;
}

.form-status.status-info {
    display: block;
    background: #eef4ff;
    color: #254f8a;
}

.form-status.status-success {
    display: block;
    background: #e6f4ea;
    color: #1e6b3a;
}

.form-status.status-error {
    display: block;
    background: #fdecea;
    color: #b23b3b;
}


.contact-submit-button {
    width: 100%;
    background-color: var(--color-verde-primario);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    margin-top: 25px; 
}

.contact-submit-button:hover {
    background-color: #2b5548; 
}

.contact-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-fondo-claro);
    margin: 40px 0; 
}

.contact-info h3 {
    color: var(--color-verde-primario);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--color-texto-oscuro);
    margin-bottom: 8px;
}

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

.contact-info a:hover {
    color: var(--color-verde-primario);
}

.social-links {
    margin-top: 20px;
}

.social-links i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--color-verde-primario);
    transition: color 0.3s;
}

.social-links i:hover {
    color: var(--color-verde-secundario);
}


