/* =========================================================
   EL ESPACIO EMPRESAS - GLOBAL CSS
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root{

  --eemp-green: #9CCB1F;
  --eemp-green-dark: #7EA814;
  --eemp-green-soft: #EAF3D2;

  --eemp-text: #1E1E1E;
  --eemp-text-soft: #5F5F5F;

  --eemp-bg: #F7F5F0;
  --eemp-white: #FFFFFF;

  --eemp-border: #E7E2D8;

  --eemp-radius: 16px;

  --eemp-shadow:
    0 10px 30px rgba(0,0,0,0.08);

}


/* =========================================================
   BASE
   ========================================================= */

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Inter', sans-serif;
    background: var(--eemp-bg);
    color: var(--eemp-text);
    line-height: 1.65;
    font-size: 16px;
    margin: 0;
    padding: 0;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #1D1D1D;
    margin-top: 0;
}

h1{
    font-size: clamp(54px, 7vw, 110px);
}

h2{
    font-size: clamp(38px, 5vw, 72px);
}

h3{
    font-size: 32px;
}

p{
    margin-bottom: 1.2em;
    color: var(--eemp-text-soft);
}


/* =========================================================
   LINKS
   ========================================================= */

a{
    color: inherit;
    text-decoration: none;
    transition: all .25s ease;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.eemp-container{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.eemp-section{
    position: relative;
    padding: 100px 0;
}


/* =========================================================
   HERO
   ========================================================= */

.home .eemp-hero{
    margin-top: -90px;
    min-height: 100vh;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.eemp-btn .elementor-button{
    background: var(--eemp-green);
    border-radius: 999px;
    padding: 16px 30px;
    font-weight: 600;
    color: #fff;
    transition: all .25s ease;
    box-shadow: var(--eemp-shadow);
}

.eemp-btn .elementor-button:hover{
    transform: translateY(-2px);
    background: var(--eemp-green-dark);
}


/* =========================================================
   CARDS
   ========================================================= */

.eemp-card{
    background: #fff;
    border-radius: var(--eemp-radius);
    overflow: hidden;
    box-shadow: var(--eemp-shadow);
}


/* =========================================================
   HEADER
   ========================================================= */

#menutop{
    background: transparent;
}
#menutop .elementor-nav-menu { background: #fff; border-radius: 8px; }

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.85);
}

.site-header.scrolled{
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}


/* =========================================================
   IMAGES
   ========================================================= */

img{
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1024px){

    .eemp-section{
        padding: 80px 0;
    }

    h1{
        font-size: clamp(48px, 8vw, 72px);
    }

    h2{
        font-size: clamp(34px, 6vw, 54px);
    }

}

@media(max-width:767px){

    .eemp-container{
        padding-left: 20px;
        padding-right: 20px;
    }

    .eemp-section{
        padding: 60px 0;
    }

    h1{
        font-size: 48px;
        line-height: 1.05;
    }

    h2{
        font-size: 38px;
    }

    h3{
        font-size: 28px;
    }

    .eemp-btn .elementor-button{
        width: 100%;
        text-align: center;
    }

}

/* ==== Generic ====== */
.iswhite,
.iswhite p { color: white; }

/* ================= FILA ICONOS ============ */
.rowicons svg {
  width: 100%;
  height: 50px;
  color: #81c62d;
  margin: auto;
  stroke-width: 1px;
}
.eemp-features{
    display:flex;
    gap:40px;
}

.eemp-feature-item{
    flex:1;
    text-align:center;
    position:relative;
    padding:0 20px;
}

.eemp-feature-item:not(:last-child)::after{
    content:'';
    position:absolute;
    top:20px;
    right:-20px;
    width:1px;
    height:140px;
    background:#DDD7CC;
}

.eemp-feature-item svg{
    width:56px;
    height:56px;
    margin:0 auto 20px;
    fill:none;
    stroke:var(--eemp-green-dark);
    stroke-width:1.5;
}

.eemp-feature-item h3{
    font-size:28px;
    margin-bottom:12px;
}

.eemp-feature-item p{
    font-size:16px;
    line-height:1.6;
}

/* MOBILE FIX TOP HERO */
@media(max-width:767px){
    #content > .e-con-inner { padding-top: 200px; }
    .site-main > .page-content > .elementor > .elementor-element:first-child{
        margin-top: -155px !important;
    }
    .site-main > .page-content > .elementor > .elementor-element:first-child .e-con-inner { padding-top: 200px; }

}


/* =========================================================
   MOBILE MENU PREMIUM
   ========================================================= */

@media(max-width:1024px){

    #menutop .elementor-nav-menu{
        background: transparent !important;
        border-radius: 0 !important;
    }

    .elementor-menu-toggle{
        width: 54px;
        height: 54px;
        border-radius: 50% !important;
        background: rgba(255,255,255,.78) !important;
        backdrop-filter: blur(14px);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        color: #1E1E1E !important;
        z-index: 10001;
    }

    .elementor-menu-toggle.elementor-active{
        background: rgba(255,255,255,.9) !important;
    }

    .elementor-nav-menu--dropdown{
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-height: none !important;
        margin: 0 !important;

        background:
            linear-gradient(
                rgba(247,245,240,.94),
                rgba(247,245,240,.94)
            ) !important;

        backdrop-filter: blur(18px);
        border: none !important;
        box-shadow: none !important;

        display: flex !important;
        align-items: center;
        justify-content: center;

        padding: 150px 32px 70px !important;
        z-index: 9998;
    }

    .elementor-nav-menu--dropdown ul{
        width: 100%;
        max-width: 420px;
        margin: 0 auto !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .elementor-nav-menu--dropdown li{
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    .elementor-nav-menu--dropdown a{
        display: block !important;

        font-family: 'Cormorant Garamond', serif !important;
        font-size: clamp(42px, 12vw, 70px) !important;
        font-weight: 500 !important;
        line-height: .95 !important;
        letter-spacing: -0.045em;

        color: #1E1E1E !important;
        background: transparent !important;

        text-align: left !important;
        padding: 10px 0 !important;
        border: none !important;
    }

    .elementor-nav-menu--dropdown a:hover,
    .elementor-nav-menu--dropdown .current-menu-item > a{
        color: var(--eemp-green-dark) !important;
        background: transparent !important;
    }

    .elementor-nav-menu--dropdown .elementor-item-active{
        color: var(--eemp-green-dark) !important;
        background: transparent !important;
    }

}