.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-936671c *//* =================================
   GOOGLE FONT
================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =================================
   RESET
================================= */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: clip;
    font-family: 'Inter', sans-serif;
}

/* =================================
   HEADER — Frosted Glass
================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);

    border-bottom: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);

    transition: background .3s ease, box-shadow .3s ease;
}

/* Al hacer scroll se vuelve más sólido */
.header.scrolled {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .10);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 78px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =================================
   LOGO
================================= */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 46px;
    height: auto;
    display: block;
}

.logo-text {
    color: #1e293b;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    transition: color .3s;
}

.logo-text small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #475569;
    transition: color .3s;
}

/* =================================
   MENÚ
================================= */
.header-nav {
    display: flex;
    align-items: center;
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-list a {
    color: #1e293b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color .3s;
}

.header-nav-list a:hover {
    color: #014aad;
}

/* =================================
   CTA
================================= */
.header-cta {
    background: #014aad !important;
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 20px rgba(1, 74, 173, .20);
    transition: background .3s, transform .3s;
    text-decoration: none;
}

.header-cta:hover {
    background: #0256c7 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* =================================
   HAMBURGUESA
================================= */
.header-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: #1e293b;
    border-radius: 999px;
    transition: transform .3s ease, opacity .3s ease;
}

.header-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 768px) {

    .header-container {
        height: 72px;
        padding: 0 20px;
    }

    .logo-img {
        width: 40px;
    }

    .logo-text {
        font-size: 16px;
    }

    .header-menu-toggle {
        display: block;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, .06);
        padding: 20px;
        box-sizing: border-box;
    }

    .header-nav.active {
        display: block;
    }

    .header-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .header-nav-list a {
        font-size: 16px;
    }
}

/* =================================
   QUITAR VIÑETAS
================================= */
.header-nav ul,
.header-nav li {
    list-style: none !important;
}

.header-nav li::before,
.header-nav li::marker {
    display: none !important;
    content: none !important;
}

/* =================================
   ESPACIO PARA HEADER FIJO
================================= */
body {
    padding-top: 78px;
}

/* =================================
   HERO
================================= */
.hero {
    min-height: calc(100vh - 78px);
    padding-top: 120px !important;
    padding-bottom: 80px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}/* End custom CSS */