.elementor-62 .elementor-element.elementor-element-f39b8fa{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-10px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-62 .elementor-element.elementor-element-1002f74{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-1002f74 *//* =========================================
 * ECUADOR GARDENS - CSS MASTER 
 * Tipografía: Georgia
 * Colores: Dorado, Vino, Verde
 * ========================================= */

:root {
    --eg-gold: #D8B16D;
    --eg-wine: #762941;
    --eg-green: #174C3A;
    --eg-white: #FFFFFF;
    --eg-light: #FDFBF7;
    --eg-dark: #111111;
    --eg-text: #222222;
    --font-serif: 'Georgia', 'Times New Roman', serif;
}

/* --- CONTENEDOR MAESTRO (ROMPE EL ANCHO DE ELEMENTOR) --- */
.eg-full-width-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-family: var(--font-serif);
    color: var(--eg-text);
    line-height: 1.8;
    font-size: 1.15rem;
    background-color: var(--eg-white);
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

.eg-full-width-wrapper * { 
    box-sizing: border-box; 
}

.eg-full-width-wrapper h1, 
.eg-full-width-wrapper h2, 
.eg-full-width-wrapper h3 {
    color: var(--eg-wine);
    font-weight: normal;
    margin-top: 0;
    line-height: 1.2;
}

.eg-full-width-wrapper p {
    margin-bottom: 25px;
    color: #444;
    text-align: justify;
}

.eg-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 0;
}

.eg-section-subtitle {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--eg-gold);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--eg-gold);
    padding-bottom: 5px;
}

.eg-section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 40px;
}

/* --- 1. HERO PARALLAX (CULTIVO DE ROSAS) --- */
.eg-hero-parallax {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1559563362-c667ba5f5480?auto=format&fit=crop&q=80&w=1920') !important;
    background-color: var(--eg-green);
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.eg-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(23, 76, 58, 0.4), rgba(118, 41, 65, 0.6));
    z-index: 1;
}

.eg-hero-box {
    position: relative;
    z-index: 2;
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(216, 177, 109, 0.6);
    padding: 60px 40px;
    max-width: 900px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.eg-hero-box h1 {
    color: var(--eg-white);
    font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.eg-hero-box p {
    color: var(--eg-gold);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    margin: 0;
}

/* --- 2. HISTORIA Y ORIGEN --- */
.eg-history-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.eg-dropcap {
    float: left;
    font-size: 6.5rem;
    line-height: 0.7;
    color: var(--eg-wine);
    margin-right: 20px;
    margin-top: 15px;
}

.eg-image-frame {
    position: relative;
    padding: 30px;
}

.eg-image-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 40px; bottom: 40px;
    border: 3px solid var(--eg-gold);
    z-index: 0;
}

.eg-image-frame img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
    transform: translate(20px, 20px);
}

/* --- 3. POST-COSECHA --- */
.eg-postharvest-bg {
    background-color: var(--eg-light);
    width: 100vw;
    border-top: 1px solid rgba(216, 177, 109, 0.3);
}

.eg-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.eg-card {
    background: var(--eg-white);
    padding: 50px 30px;
    text-align: center;
    border-bottom: 5px solid var(--eg-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.eg-card:hover { transform: translateY(-10px); }

.eg-card i {
    font-size: 3rem;
    color: var(--eg-green);
    margin-bottom: 20px;
}

/* --- 4. MISIÓN Y VISIÓN --- */
.eg-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.eg-mv-box {
    padding: 60px;
    border: 2px solid var(--eg-gold);
    position: relative;
    background: var(--eg-white);
}

.eg-mv-box::before {
    content: '✦';
    position: absolute;
    top: -30px;
    left: 50px;
    font-size: 3rem;
    color: var(--eg-gold);
    background: var(--eg-white);
    padding: 0 15px;
}

/* --- 5. MARQUEE DE DESTINOS --- */
.eg-marquee {
    background-color: var(--eg-green);
    padding: 25px 0;
    overflow: hidden;
    width: 100vw;
    border-top: 3px solid var(--eg-gold);
}

.eg-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: egScroll 30s linear infinite;
}

.eg-marquee-item {
    color: var(--eg-white);
    font-size: 1.8rem;
    font-style: italic;
    padding: 0 50px;
}

.eg-marquee-item span { color: var(--eg-gold); margin-left: 20px; }

@keyframes egScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- 6. FOOTER PREMIUM --- */
.eg-footer {
    background-color: var(--eg-dark);
    color: var(--eg-white);
    width: 100vw;
    padding: 80px 0 30px;
    border-top: 5px solid var(--eg-gold);
}

.eg-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.eg-footer-title {
    color: var(--eg-white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--eg-wine);
    padding-bottom: 10px;
}

.eg-contact-list { list-style: none; padding: 0; margin: 0; }
.eg-contact-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.eg-contact-list i { color: var(--eg-gold); font-size: 1.3rem; width: 25px; text-align: center; }
.eg-contact-list a { color: #ccc; text-decoration: none; font-size: 1.1rem; transition: color 0.3s; }
.eg-contact-list a:hover { color: var(--eg-gold); }

.eg-social-icons { display: flex; gap: 15px; }
.eg-social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px;
    background-color: rgba(255,255,255,0.05); color: var(--eg-white);
    border-radius: 50%; text-decoration: none; font-size: 1.5rem;
    border: 1px solid rgba(216, 177, 109, 0.3); transition: all 0.3s;
}
.eg-social-icons a:hover { background-color: var(--eg-gold); color: var(--eg-wine); transform: translateY(-5px); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .eg-history-grid, .eg-cards-grid, .eg-mv-grid, .eg-footer-grid { grid-template-columns: 1fr; }
    .eg-image-frame { order: -1; margin-bottom: 40px; }
    .eg-hero-parallax { background-attachment: scroll !important; }
}/* End custom CSS */