/*
	Theme Name: Hello Elementor Child
	Description: Tema hijo de Hello Elementor
	Author: Elementor Team
	Template: hello-elementor
	Version: 1.0.1
	Text Domain: hello-elementor-child
*/

@keyframes float {
	0% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-15px) rotate(2deg); }
	100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes Pulse {
    0% { opacity: .7; transform: scale(1); }
    70% { opacity: 0; transform: scale(1.08); }
    100% { opacity: 0; transform: scale(1.08); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

.floating-fast {
    animation: float 4s ease-in-out infinite;
}

.menu-enroll {
	background-color: #B57C83 !important;
	padding: 20px !important;
	color: white !important;
	border: none !important;
	border-radius: 20px !important;
}

/*Section Home*/
.badge-verified {
    display: inline-block;
    text-align: center;
	background: white;
	color: #8B8D5C;
	padding: 12px 16px;
	border-radius: 20px;
	box-shadow:
		0 0 #0000,
		0 0 #0000,
		0 1px 2px 0 rgb(0 0 0 / 0.05);
	font-family: "Montserrat", sans-serif;
}

.badge-verified .icon {
	padding-right: 10px;
}
.img-home {
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.img-home img {
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.border-white {
	border: 8px solid white;
}

.bg-honey {
	padding: 0.5rem;
	background-color: rgb(242 182 84 / 0.2);
}

.border-honey-gold {
	border: 2px dashed #F2B654;
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.scalloped-bottom::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background-size: 40px 40px;
    background-image: radial-gradient(circle at 20px 20px, #faf3e0 20px, transparent 21px);
    z-index: 10;
}

/* Seccion About */
.image-about {
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.image-about img {
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.bg-grove {
	padding: 0.5rem;
	background-color: rgb(139 141 92 / 0.1);
}

.features {
    width: 100%;
    max-width: 568px;
    margin: 30px auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    min-height: 74px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #eee8c9;
    border-radius: 24px;
    background: #fff;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 21px;
    font-weight: 400;
}

.feature-card span {
    color: #202638;
    font-size: 16px;
    line-height: 1.4;
	font-family: "Plus Jakarta Sans", Sans-serif;
}

/* Colores de los iconos */
.pink {
    background: rgb(223 106 140 / 0.2);
    color: #DF6A8C;
}

.green {
    background: rgb(139 141 92 / 0.2);
    color: #8B8D5C;
}

.purple {
    background: rgb(168 129 174 / 0.2);
    color: #A881AE;
}

.orange {
    background: rgb(242 182 84 / 0.3);
    color: #A16207;
}

/* Section Services */
.scalloped-top-gray::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background-size: 40px 40px;
    background-image: radial-gradient(circle at 20px 0, transparent 20px, #f6f7be 21px);
}

/* Slide Services */
.services {
    width: 100%;
    overflow: hidden;
}

.services-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.services-track {
    display: flex;
    gap: 35px;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

/* Cards */
.service-card {
    position: relative;
    flex: 0 0 calc((100% - 64px) / 3);
    min-height: 445px;
    padding: 32px 26px 55px;
    border-radius: 38px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Cards Colors */
.service-card.olive {
    background: #999b67;
}

.service-card.orange {
    background: #f8ba4f;
}

.service-card.purple {
    background: #aa7caf;
}

.service-card.pink {
    background: #ee829d;
}

.service-card.blue {
    background: #719bb4;
}

.service-card.green {
    background: #7ea66e;
}

.service-card.yellow {
    background: #e9c95a;
}

.service-card.lavender {
    background: #927db1;
}

.service-card.coral {
    background: #df8874;
}

.service-card.teal {
    background: #64a8a0;
}

/* Image */
.service-image {
    width: 100%;
    height: 190px;
    border-radius: 28px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.03);
}

/* Content */
.service-content {
    flex: 1;
    padding: 20px 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-content h3 {
    margin: 0 0 5px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
}

.service-content span {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.service-content p {
    max-width: 320px;
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

/* Arrow Card */
.service-arrow {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ed5f8b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.service-arrow i {
    display: block;
    font-size: 16px;
    line-height: 1;
    margin: 0;
    color: #fff;
    transition: transform 0.25s ease;
}

.service-card.orange .service-arrow,
.service-card.green .service-arrow {
    background: #92965f;
}

.service-arrow:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18);
}

.service-arrow:hover i {
    transform: translateX(2px);
}

/* Controles */
.slider-control {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    padding: 0;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #92965f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.slider-control i {
    font-size: 16px;
    line-height: 1;
    margin: 0;
}

.slider-control.prev {
    left: -5px;
}

.slider-control.next {
    right: -5px;
}

.slider-control:hover {
    background: #ed5f8b;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.slider-control:disabled {
    cursor: default;
    opacity: 0.35;
    pointer-events: none;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 45px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c8c88e;
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.slider-dot.active {
    width: 25px;
    border-radius: 10px;
    background: #ed5f8b;
}

/* Section Activities */
.activities {
    width: 100%;
    padding: 35px 20px 40px;
    background: #fff;
    box-sizing: border-box;
}

.activities-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.activities-container::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    border-top: 2px dashed #eee6b9;
    z-index: 0;
}

.activity-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.activity-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.activity-icon img {
    display: block;
    width: 25px;
    object-fit: contain;
}

.activity-icon.pink {
    background: #fff0f5;
}

.activity-icon.green {
    background: #f2f3e9;
}

.activity-icon.purple {
    background: #f5f0f8;
}

.activity-content h3 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.activity-content p {
    max-width: 300px;
    margin: 0 auto;
    color: #554246;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.categories {
    width: 100%;
    max-width: 550px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 45px;
    row-gap: 24px;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.category {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    width: 36px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.icon-yellow {
    background: #fff1d8;
}

.icon-green {
    background: #e8e9df;
}

.icon-purple {
    background: #eee5f0;
}

.icon-pink {
    background: #f9dfe7;
}

.category-info h3 {
    margin: 0 0 5px;
    color: #101828;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.category-info p {
    margin: 0;
    color: #554246;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

/* FOOTER */
.scalloped-top-gray-footer::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background-size: 40px 40px;
    background-image: radial-gradient(circle at 20px 0, transparent 20px, #FAF3E0 21px);
}

.form_footer form {
    background: white !important;
    border: 1px solid #eee5c9 !important;
    border-radius: 42px !important;
    padding: 30px 35px !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04) !important;
    font-family: "Plus Jakarta Sans", Sans-serif !important;
}

.form_footer .field_full_name,
.form_footer .field_email,
.form_footer .field_message {
    margin: 0 !important;
}

.form_footer input[type="text"]:focus,
.form_footer input[type="email"]:focus,
.form_footer input[type="number"]:focus,
.form_footer textarea:focus {
    border: 2px solid #df6a8c !important;
    box-shadow: none !important;
}

.form_footer .button_submit {
    font-family: "Plus Jakarta Sans", Sans-serif !important;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2ef;
    border-radius: 20px;
}

.contact-icon.green img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.contact-icon.hours-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info span {
    color: #555;
    font-size: 13px;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", Sans-serif
}

.contact-icon.green {
    background: #f2f3e9;
}

.contact-icon.hours-icon {
    background: #f5f0f8;
}

.contact-info a,
.contact-info strong {
    color: #101b32;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.contact-info a:hover {
    color: #DF6A8C;
}

/* MODAL */
.guarderia-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.guarderia-modal.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.guarderia-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 35, 55, 0.58);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.guarderia-modal-content {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fffdfb;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(30, 30, 60, 0.25);
    transform: translateY(25px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Firefox */
    scrollbar-width: none;
}

.guarderia-modal.is-active .guarderia-modal-content {
    transform: translateY(0) scale(1);
}

.guarderia-modal-close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #f6f4f1;
    color: #555;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.guarderia-modal-close:hover {
    background: #ffe4e5;
    transform: rotate(90deg);
}

.guarderia-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.guarderia-modal-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff2c9;
    border-radius: 18px;
    font-size: 27px;
}

.guarderia-modal-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #ef8a69;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.guarderia-modal-header h2 {
    margin: 0 0 10px;
    color: #303044;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.guarderia-modal-header p {
    max-width: 440px;
    margin: 0 auto;
    color: #74747f;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.guarderia-form .wpforms-container {
    margin: 0px auto !important;
}

.guarderia-modal-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.guarderia-modal-content.is-scrolling {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 100, 110, .45) transparent;
}

.guarderia-modal-content.is-scrolling::-webkit-scrollbar {
    width: 6px;
}

.guarderia-modal-content.is-scrolling::-webkit-scrollbar-track {
    background: transparent;
}

.guarderia-modal-content.is-scrolling::-webkit-scrollbar-thumb {
    background: rgba(100, 100, 110, .45);
    border-radius: 20px;
}

.guarderia-modal-content.is-scrolling::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 100, 110, .65);
}

body.guarderia-modal-open {
    overflow: hidden;
}

/* BOTON FLOTANTE */
.guarderia-floating-button {
    display: none;
}

@media only screen and (max-width: 48em) {
	.features {
	    grid-template-columns: 1fr;
	    gap: 14px;
	    padding: 0 16px;
	}

	.feature-card {
	    min-height: 70px;
	}

	/* Section Services */
	.services {
	    padding: 25px 0 55px;
	}

	.services-slider {
	    padding: 0 20px;
	}

	.services-track {
	    gap: 20px;
	}

	.service-card {
	    flex-basis: 100%;
	    min-height: 430px;
	    padding: 25px 22px 50px;
	    border-radius: 30px;
	}

	/* Imagen */
	.service-image {
	    height: 180px;
	    border-radius: 23px;
	}

	/* Texto */
	.service-content {
	    padding-top: 18px;
	}

	.service-content h3 {
	    font-size: 20px;
	}

	.service-content span {
	    font-size: 14px;
	}

	.service-content p {
	    max-width: 280px;
	    margin-top: 18px;
	    font-size: 14px;
	    line-height: 1.45;
	}

	/* Flecha de la tarjeta */
	.service-arrow {
	    width: 40px;
	    height: 40px;
	    bottom: -19px;
	}

	.service-arrow i {
	    font-size: 15px;
	}

	/* Flechas laterales */
	.slider-control {
	    width: 38px;
	    height: 38px;
	}

	.slider-control i {
	    font-size: 14px;
	}

	.slider-control.prev {
	    left: 5px;
	}

	.slider-control.next {
	    right: 5px;
	}

	/* Dots */
	.slider-dots {
	    margin-top: 40px;
	}

    /* SECTION ACTIVITIES */
    .activities {
        padding: 30px 20px;
    }

    .activities-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .activities-container::before {
        display: none;
    }

    .activity-icon {
        width: 60px;
        height: 60px;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .activity-icon img {
        width: 25px;
    }

    .activity-content h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .activity-content p {
        max-width: 280px;
        font-size: 13px;
    }

    /* SECTION CATEGORIES */
    .categories {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 24px;
        max-width: 100%;
    }

    .category-info p {
        max-width: 280px;
    }

    /* MODAL */
    .guarderia-modal {
        padding: 12px;
    }

    .guarderia-modal-content {
        max-height: 92vh;
        padding: 32px 22px 30px;
        border-radius: 24px;
    }

    .guarderia-modal-header h2 {
        font-size: 26px;
    }

    .guarderia-modal-header p {
        font-size: 14px;
    }

    /* BOTON FLOTANTE */
    .guarderia-floating-button {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        left: 50%;
        bottom: calc(18px + env(safe-area-inset-bottom));
        transform: translateX(-50%);
        z-index: 999990;
        border: 0;
        padding: 13px 20px 13px 15px;
        border-radius: 50px;
        background: linear-gradient(135deg, #ff9f68, #ff7b8b);
        color: #fff;
        font-family: inherit;
        font-size: 14px;
        font-weight: 800;
        white-space: nowrap;
        cursor: pointer;
        box-shadow:
            0 8px 25px rgba(255, 123, 139, 0.35),
            0 3px 8px rgba(0, 0, 0, 0.12);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .guarderia-floating-button:hover {
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 12px 30px rgba(255, 123, 139, 0.42);
    }

    .guarderia-floating-button:active {
        transform: translateX(-50%) scale(0.96);
    }

    .guarderia-floating-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        font-size: 16px;
    }

    .guarderia-floating-text {
        line-height: 1;
        font-family: "Plus Jakarta Sans", Sans-serif
    }

    .guarderia-floating-button::before {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50px;
        border: 2px solid rgba(255, 159, 104, 0.35);
        animation: Pulse 2.5s infinite;
        pointer-events: none;
    }
}

@media (min-width: 48em) and (max-width: 63.99em) {
	/* Section Services */
	.services-track {
	    gap: 25px;
	}
	.service-card {
	    flex-basis: calc((100% - 25px) / 2);
	}
	.slider-control.prev {
	    left: 0;
	}
	.slider-control.next {
	    right: 0;
	}

    /*Section Activities*/
    .activities-container {
        gap: 25px;
    }

    .activity-content h3 {
        font-size: 16px;
    }

    .activity-content p {
        font-size: 12px;
    }
