/* ==========================================
   ABOUT SECTION (Quiénes Somos)
   ========================================== */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-section:hover .about-image img {
    transform: scale(1.03);
}

.about-content {
    padding: 1rem 0;
}

.about-content .section-pretitle {
    text-align: left;
}

.about-content .section-main-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.about-highlight {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 0;
}

/* ==========================================
   GASTRONOMY SECTION (Sabores)
   ========================================== */
.gastronomy-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.gastronomy-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gastronomy-content {
    padding: 1rem 0;
}

.gastronomy-content .section-pretitle {
    text-align: left;
}

.gastronomy-content .section-main-title {
    text-align: left;
    margin-bottom: 2rem;
}

.gastronomy-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.gastronomy-highlight {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.gastronomy-image {
    position: relative;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow);
}

.gastronomy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gastronomy-section:hover .gastronomy-image img {
    transform: scale(1.03);
}

/* ==========================================
   FLORAL SECTION (Escenarios)
   ========================================== */
.floral-section {
    padding: 6rem 0;
    background: white;
}

.floral-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.floral-image {
    position: relative;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow);
}

.floral-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.floral-section:hover .floral-image img {
    transform: scale(1.03);
}

.floral-content {
    padding: 1rem 0;
}

.floral-content .section-pretitle {
    text-align: left;
}

.floral-content .section-main-title {
    text-align: left;
    margin-bottom: 2rem;
}

.floral-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.floral-text:last-child {
    margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE - NUEVAS SECCIONES
   ========================================== */

/* Tablets */
@media (max-width: 1024px) {
    .about-wrapper,
    .gastronomy-wrapper,
    .floral-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image,
    .gastronomy-image,
    .floral-image {
        height: 400px;
        order: 1;
    }
    
    .about-content,
    .gastronomy-content,
    .floral-content {
        order: 2;
    }
    
    .about-content .section-pretitle,
    .about-content .section-main-title,
    .gastronomy-content .section-pretitle,
    .gastronomy-content .section-main-title,
    .floral-content .section-pretitle,
    .floral-content .section-main-title {
        text-align: center;
    }
    
    .about-highlight,
    .gastronomy-highlight {
        padding-left: 1rem;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .about-section,
    .gastronomy-section,
    .floral-section {
        padding: 4rem 0;
    }
    
    .about-wrapper,
    .gastronomy-wrapper,
    .floral-wrapper {
        gap: 2rem;
    }
    
    .about-image,
    .gastronomy-image,
    .floral-image {
        height: 350px;
    }
    
    .about-text,
    .gastronomy-text,
    .floral-text {
        font-size: 1rem;
    }
    
    .about-highlight,
    .gastronomy-highlight {
        font-size: 1rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .about-section,
    .gastronomy-section,
    .floral-section {
        padding: 3rem 0;
    }
    
    .about-image,
    .gastronomy-image,
    .floral-image {
        height: 280px;
    }
    
    .about-text,
    .gastronomy-text,
    .floral-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-highlight,
    .gastronomy-highlight {
        font-size: 0.95rem;
        padding-left: 0.75rem;
    }
}