.elementor-2527 .elementor-element.elementor-element-948a7dd{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-948a7dd *//* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* TIPOGRAFÍA */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ESTRUCTURA BASE DE HERO SECTIONS */
.hero-section {
    display: flex;
    min-height: 750px;
    width: 100%;
}

.hero-image {
    flex: 1;
    width: 50%;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%; /* ancho fijo igual que ESCALANDO */
    height: 750px;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    margin: 0;
}

/* TIPOGRAFÍA COMÚN */
.hero-content * {
    font-family: 'Poppins', sans-serif;
}

.pre-hero {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
}

.hero-date {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 1rem 0;
}

/* COUNTDOWN COMÚN */
.countdown {
    display: flex;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.countdown-item {
    text-align: center;
    margin-right: 1rem;
}

.countdown-item:last-child {
    margin-right: 0;
}

.countdown-item span {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 0.5rem;
}

.countdown-item label {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* BOTÓN COMÚN */
.hero-button {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.hero-button:hover {
    opacity: 0.9;
}

/* ESTILOS ESPECÍFICOS - CREAR Y CREAR */
.crear-section .crear-content {
    background-color: #c9c9e3;
    color: #2E3D70;
}

.crear-section .hero-title {
    color: #7C7FB8;
}

.crear-section .countdown-item span {
    background-color: #7C7FB8;
    color: #fff;
}

.crear-section .countdown-item label {
    color: #2E3D70;
}

.crear-section .hero-button {
    background-color: #7C7FB8;
    color: #fff;
}

/* ESTILOS ESPECÍFICOS - ESCALANDO */
.escalando-section .escalando-content {
    background-color: #fa8f6f;
    color: #ffffff;
}

.escalando-section .hero-title {
    color: #ffffff;
}

.escalando-section .pre-hero {
    color: #ffffff;
}

.escalando-section .hero-subtitle {
    color: #ffffff;
}

.escalando-section .hero-date {
    color: #ffffff;
}

.escalando-section .countdown-item span {
    background-color: #ffffff;
    color: #fa8f6f;
}

.escalando-section .countdown-item label {
    color: #ffffff;
}

.escalando-section .hero-button {
    background-color: #ffffff;
    color: #fa8f6f;
}

/* RESPONSIVE DESIGN */

/* Tablets y pantallas medianas (768px y menor) */
@media screen and (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }
    
    /* ESCALANDO: Invertir orden en móvil (imagen primero, contenido después) */
    .escalando-section {
        flex-direction: column-reverse;
    }
    
    .hero-image {
        width: 100%;
        height: 400px;
        overflow: hidden;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        width: 100%;
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .pre-hero {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .countdown-item {
        margin-right: 0.5rem;
    }
    
    .countdown-item span {
        width: 2.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
        font-size: 1rem;
    }
    
    .hero-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 250px;
    }
}

/* Móviles (480px y menor) */
@media screen and (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .pre-hero {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-date {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .countdown {
        margin-bottom: 1.5rem;
    }
    
    .countdown-item span {
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
        font-size: 0.9rem;
    }
    
    .countdown-item label {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
    
    .hero-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Móviles muy pequeños (320px y menor) */
@media screen and (max-width: 320px) {
    .hero-content {
        padding: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .countdown-item span {
        width: 1.75rem;
        height: 1.75rem;
        line-height: 1.75rem;
        font-size: 0.8rem;
    }
    
    .countdown-item label {
        font-size: 0.65rem;
    }
}

/* SECCIÓN ACERCA DE MI */
.about-section {
    display: flex;
    min-height: 100vh;
    background: #94acfb;
    position: relative;
    overflow: hidden;
}

.about-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #2d3436;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.about-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.about-number {
    background: #2d3436;
    color: #fa8f6f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
    padding-top: 10px;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #2d3436;
    line-height: 1.5;
    margin: 0;
}

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.star-decoration {
    position: absolute;
    top: 10%;
    left: 20%;
    font-size: 3rem;
    color: #ff6b47;
    animation: float 3s ease-in-out infinite;
}

.blob-decoration {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob 8s ease-in-out infinite;
}

.about-image img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 1000;
    position: relative;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(15deg);
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

@keyframes blob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 60% 30% 60% 40%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 60% 40% 60% 30% / 30% 50% 70% 60%;
        transform: rotate(270deg);
    }
}

/* RESPONSIVE ACERCA DE MI */
@media screen and (max-width: 768px) {
    .about-section {
        flex-direction: column;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .about-content {
        padding: 40px 20px;
    }
    
    .about-title {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .about-items {
        gap: 30px;
    }
    
    .about-item {
        gap: 20px;
    }
    
    .about-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .about-image {
        padding: 40px 20px;
    }
    
    .about-image img {
        max-width: 300px;
        max-height: 400px;
        width: auto;
        height: auto;
    }
    
    .star-decoration {
        font-size: 2rem;
    }
    
    .blob-decoration {
        width: 150px;
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .about-content {
        padding: 30px 15px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-item {
        gap: 15px;
    }
    
    .about-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-image img {
        max-width: 250px;
        max-height: 320px;
        width: auto;
        height: auto;
    }
}

/* SECCIÓN LA SALA CREATIVA */
.sala-section {
    display: flex;
    min-height: 600px;
    width: 100%;
    background: #eeecdd;
}

.sala-content {
    flex: 1;
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    position: relative;
    background-color: #eeecdd;
}

.sala-text {
    z-index: 2;
}

.sala-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fa8f6f;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.sala-price {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.price-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #333333;
}

.sala-graphics {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.star-icon {
    position: absolute;
    top: 20%;
    left: 80%;
    font-size: 2rem;
    color: #ff4d6d;
    transform: rotate(15deg);
}

.heart-icon {
    position: absolute;
    bottom: 30%;
    right: 15%;
    font-size: 1.5rem;
}

.leaf-icon {
    position: absolute;
    top: 60%;
    left: 10%;
    font-size: 1.8rem;
    color: #4ecdc4;
    transform: rotate(-20deg);
}

.sala-image {
    flex: 1;
    width: 33.33%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sala-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sala-form {
    flex: 1;
    width: 33.33%;
    padding: 3rem;
    background-color: #eeecdd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #333333;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.form-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.form-group input {
    font-family: 'Poppins', sans-serif;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b5a;
}

.submit-button {
    font-family: 'Poppins', sans-serif;
    background-color: #ff6b5a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #ff5543;
}

/* RESPONSIVE - LA SALA CREATIVA */
@media screen and (max-width: 768px) {
    .sala-section {
        flex-direction: column;
        min-height: auto;
        padding: 20px;
    }
    
    .sala-content {
        width: 100%;
        flex: none;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        background-color: #eeecdd;
    }
    
    .sala-title {
        font-size: 3.5rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .sala-price {
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .sala-graphics {
        position: static;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }
    
    .star-icon, .heart-icon, .leaf-icon {
        position: static;
        font-size: 2rem;
        animation: none;
    }
    
    .sala-image {
        display: none; /* Ocultar imagen en móvil */
    }
    
    .sala-form {
        width: 100%;
        flex: none;
        padding: 30px 20px;
        background-color: #ffffff;
    }
    
    .registration-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-header h3 {
        font-size: 2rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 480px) {
    .sala-content {
        padding: 25px 15px;
    }
    
    .sala-title {
        font-size: 2.8rem;
        line-height: 0.9;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .sala-graphics .star-icon,
    .sala-graphics .heart-icon, 
    .sala-graphics .leaf-icon {
        font-size: 1.5rem;
    }
    
    .sala-form {
        padding: 25px 15px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
}

/* SECCIÓN MOTIVACIONAL */
.motivation-section {
    display: flex;
    min-height: 600px;
    background: #fa8f6f;
    position: relative;
    overflow: hidden;
}

.motivation-image {
    flex: 1;
    width: 50%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.motivation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    position: relative;
}

.motivation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    z-index: 2;
}

.motivation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.motivation-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 40px;
    opacity: 0.9;
}

.motivation-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    opacity: 0.8;
}

/* RESPONSIVE SECCIÓN MOTIVACIONAL */
@media screen and (max-width: 768px) {
    .motivation-section {
        flex-direction: column;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .motivation-image {
        padding: 40px 20px;
        order: 2;
    }
    
    .motivation-image img {
        max-width: 350px;
        max-height: 400px;
    }
    
    .motivation-content {
        padding: 40px 20px;
        text-align: center;
        order: 1;
    }
    
    .motivation-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .motivation-subtitle {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .motivation-description {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .motivation-content {
        padding: 30px 15px;
    }
    
    .motivation-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .motivation-subtitle {
        font-size: 1.4rem;
    }
    
    .motivation-description {
        font-size: 1rem;
    }
    
    .motivation-image img {
        max-width: 280px;
        max-height: 320px;
    }
}

/* SECCIÓN HEADER PRINCIPAL */
.main-header {
    display: flex;
    min-height: 100vh;
    background:  #1c345c;
    position: relative;
    overflow: hidden;
}

.header-content {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    z-index: 2;
}

.header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.header-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.9;
}

.header-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.8;
    font-style: italic;
}

.header-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.header-button:hover {
    background: #ffffff;
    color: #2E4057;
}

.header-image {
    flex: 1;
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.header-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.orange-blob {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 300px;
    height: 400px;
    background: #ff8a65;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float-blob 6s ease-in-out infinite;
}

.cream-blob {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 200px;
    height: 250px;
    background: #f5f5dc;
    border-radius: 50% 60% 30% 60% / 60% 30% 60% 40%;
    z-index: 1;
    animation: float-blob 8s ease-in-out infinite reverse;
}

.white-curve {
    position: absolute;
    top: 20%;
    right: 0;
    width: 120px;
    height: 200px;
    background: #ffffff;
    border-radius: 0 0 0 100%;
    z-index: 1;
    opacity: 0.8;
}

.header-image img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

@keyframes float-blob {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    66% {
        transform: translateY(10px) rotate(240deg);
        border-radius: 50% 60% 30% 60% / 60% 30% 60% 40%;
    }
}

/* RESPONSIVE HEADER PRINCIPAL */
@media screen and (max-width: 768px) {
    .main-header {
        flex-direction: column;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .header-content {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
        order: 1;
    }
    
    .header-title {
        font-size: 3rem;
        margin-bottom: 25px;
        line-height: 1;
    }
    
    .header-subtitle {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .header-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .header-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .header-image {
        width: 100%;
        height: 400px;
        order: 2;
        padding: 20px;
    }
    
    .orange-blob {
        width: 200px;
        height: 250px;
        top: 10%;
        right: 5%;
    }
    
    .cream-blob {
        width: 150px;
        height: 180px;
        bottom: 15%;
        left: 10%;
    }
    
    .white-curve {
        width: 80px;
        height: 120px;
    }
    
    .header-image img {
        max-width: 300px;
        max-height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .header-content {
        padding: 30px 15px;
    }
    
    .header-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .header-subtitle {
        font-size: 1.3rem;
    }
    
    .header-description {
        font-size: 1rem;
    }
    
    .header-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .header-image img {
        max-width: 250px;
        max-height: 280px;
    }
    
    .orange-blob {
        width: 150px;
        height: 180px;
    }
    
    .cream-blob {
        width: 120px;
        height: 140px;
    }
}/* End custom CSS */