.elementor-1506 .elementor-element.elementor-element-945c637{--display:flex;--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;}.elementor-1506 .elementor-element.elementor-element-1501c89{--display:flex;--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;}.elementor-1506 .elementor-element.elementor-element-ef4f778{--alignment:right;--grid-side-margin:10px;--grid-column-gap:10px;--grid-row-gap:10px;--grid-bottom-margin:10px;}.elementor-1506 .elementor-element.elementor-element-ef4f778 .elementor-share-btn{font-size:calc(1.1px * 10);}.elementor-1506 .elementor-element.elementor-element-ef4f778 .elementor-share-btn__icon{--e-share-buttons-icon-size:3.2em;}.elementor-1506 .elementor-element.elementor-element-02bc755{--display:flex;--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;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1506 .elementor-element.elementor-element-d58ff12{text-align:right;}@media(max-width:1024px){ .elementor-1506 .elementor-element.elementor-element-ef4f778{--grid-side-margin:10px;--grid-column-gap:10px;--grid-row-gap:10px;--grid-bottom-margin:10px;}}@media(max-width:767px){ .elementor-1506 .elementor-element.elementor-element-ef4f778{--grid-side-margin:10px;--grid-column-gap:10px;--grid-row-gap:10px;--grid-bottom-margin:10px;}}/* Start custom CSS for html, class: .elementor-element-7ce7889 *//* ========================================
   VARIABLES Y RESET
   ======================================== */
:root {
    --primary-purple: #A855F7;
    --primary-pink: #EC4899;
    --primary-orange: #F59E0B;
    --primary-blue: #3B82F6;
    --dark: #1F2937;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    --gradient-2: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --gradient-3: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #FB923C 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    opacity: 0.5;
}

.hero-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to bottom, #FDF4FF, #FAE8FF, #F5D0FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        3px 3px 0px rgba(168, 85, 247, 0.4),
        6px 6px 0px rgba(168, 85, 247, 0.2);
    filter: drop-shadow(0 4px 8px rgba(168, 85, 247, 0.3));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-locations span {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-purple);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-section {
    padding: 100px 20px;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.white-text {
    color: var(--white);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

.intro-image {
    position: relative;
    height: 400px;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}


@media (max-width: 768px) {
    .intro-image img {
    width: 100vw!important;}
    .intro-section, .container{
    padding:0!important;
    }
}

/* REMOVIDO EL FILTRO DE COLOR */
.intro-image::before {
    display: none;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.card-purple {
    border-color: var(--primary-purple);
}

.card-pink {
    border-color: var(--primary-pink);
}

.card-orange {
    border-color: var(--primary-orange);
}

.card-blue {
    border-color: var(--primary-blue);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* HOVER SOLO EN ESCRITORIO */
@media (min-width: 769px) {
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .card-purple:hover {
        background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
        color: var(--white);
    }

    .card-pink:hover {
        background: var(--primary-pink);
        color: var(--white);
    }

    .card-orange:hover {
        background: var(--gradient-2);
        color: var(--white);
    }

    .card-blue:hover {
        background: var(--gradient-3);
        color: var(--white);
    }
}

/* ========================================
   AREAS SECTION
   ======================================== */
.areas-section {
    padding: 100px 20px;
    background: var(--white);
}

.areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.areas-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 10px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.area-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.area-card:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.05);
}

.area-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.area-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.area-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 100px 20px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 620px;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color:white!important;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   METHODOLOGY SECTION
   ======================================== */
.methodology-section {
    padding: 100px 20px;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255,255,255,.03) 50px, rgba(255,255,255,.03) 100px);
    pointer-events: none;
}

.methodology-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.timeline-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location-pin {
    font-size: 2rem;
}

.location-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.location-item p,
.location-item a {
    color: var(--gray);
    text-decoration: none;
    font-size: 1rem;
}

.location-item a:hover {
    color: var(--primary-purple);
}

.location-zones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zone-tag {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.location-map {
    background: var(--gradient-1);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.location-map::before {
    content: '🗺';
    font-size: 8rem;
    opacity: 0.2;
    position: absolute;
}

.map-button {
    position: relative;
    z-index: 2;
    background: var(--white);
    color: var(--primary-purple);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.map-button:hover {
    transform: scale(1.05);
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: 100px 20px;
    background: var(--white);
}

.cta-box {
    background: var(--gradient-2);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-orange);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
    background: var(--gradient-1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #FCD34D;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .intro-content,
    .location-content {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .location-map {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .title-line {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .intro-section,
    .features-section,
    .areas-section,
    .methodology-section,
    .location-section,
    .final-cta,
    .gallery-section,
    .testimonials-section {
        padding: 60px 20px;
    }

    .features-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .methodology-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .intro-image {
        height: 300px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .cta-box {
        padding: 60px 30px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }

    /* CARDS CON COLORES PERMANENTES EN MÓVIL */
    .card-purple {
        background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
        color: var(--white);
    }

    .card-pink {
        background: var(--primary-pink);
        color: var(--white);
    }

    .card-orange {
        background: var(--gradient-2);
        color: var(--white);
    }

    .card-blue {
        background: var(--gradient-3);
        color: var(--white);
    }

    /* DESACTIVAR TRANSFORMACIÓN EN MÓVIL */
    .feature-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-locations {
        flex-direction: column;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 16px 35px;
        font-size: 1rem;
    }
}/* End custom CSS */