:root {
    --warning: #fdad00 !important;
    --yellow: rgb(231, 231, 0);
    --morado_f: #6010da;
    --morado_s: #c09fff;
    --morado_s_2: #e3d3ff;
    --magenta: #e510da;
    --azul: #0f2f52;
    --morado_azulado: #420a96;
}

body {
    font-family: 'Mukta', sans-serif;
    width: 100vw !important;
    max-width: 100% !important;
    overflow-x: hidden;
}

.navbar {
    transition: background-color 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled-vaq {
    padding: 0px 0 !important; /* Reduce el tamaño del navbar */
}

.nav-link.active{
    font-weight: 600;
    border-bottom: 2px solid white;
}

label {
    width: 100%;
}

textarea {
    resize: none !important;
    height: 200px;
    border: 1px solid #ccc;
}

input {
    border: 1px solid #ccc;
}

.select-dcc {
    border-radius: 1rem;
    border: 0;
    height: 3rem;
    font-size: 1.75rem;
}

.logo-header {
    height: 5vh;
}

.logo-footer {
    height: 2.5vw;
}

/* Ocultar el radio button original */
.custom-radio input[type="radio"] {
    display: none;
}

/* Estilo para el span que reemplaza al radio button */
.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.custom-radio-circle {
    height: 1rem;
    width: 1rem;
    border: 2px solid var(--morado_f);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

/* Estilo cuando el radio button está seleccionado */
.custom-radio input[type="radio"]:checked + .custom-radio-circle {
    background-color: var(--morado_f); /* Color personalizado para el círculo */
    border-color: var(--morado_f);
}

/* Círculo interno para indicar la selección */
.custom-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--morado_s);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

/* Mostrar el círculo interior cuando esté seleccionado */
.custom-radio input[type="radio"]:checked + .custom-radio-circle::after {
    opacity: 1;
}

input:focus, textarea:focus {
    outline-width: 0;
}

input:focus-visible, textarea:focus-visible {
    border: 1px solid var(--morado_s) !important;
    box-shadow: 0px 0px 5px 0 var(--morado_s);
}

p {
    letter-spacing: -1px !important;
}

a {
    text-decoration: none !important;
    color: white !important;
}

a:hover {
    color: var(--yellow) !important;
    cursor: pointer;
}

a.myLink:hover {
    color: var(--morado_azulado) !important;
}

a.sidebar {
    color: #000 !important;
    transition: 0.4s;
}

a.sidebar:hover {
    color: var(--morado_f) !important;
}

/* LETRAS Y TAMAÑOS */
.fs-big {
    font-size: 5rem;
}

.fs-middle {
    font-size: 3rem;
}


/* BACKGROUND */

.bg-amarillo {
    background-color: var(--warning);
}

.bg-morado_suave {
    background-color: var(--morado_s);
}

.bg-morado_suave_2 {
    background-color: var(--morado_s_2);
}

.bg-morado {
    background-color: var(--morado_f);
}

.bg-morado_azulado {
    background-color: var(--morado_azulado) !important;
}

.bg-morado_azulado_transparent {
    background-color: #420a96be !important;
}

.bg-magenta {
    background-color: var(--magenta);
}

/* BOTONES */

.myBtn {
    border-radius: 1rem;
    border: 0;
    padding-inline: 1.75rem;
    font-weight: bold;
    transition: 0.5s;
}

.myBtn.transparent {
    background-color: transparent;
    color: white;
}

.myBtn.white {
    background-color: white;
    color: var(--morado_azulado);
}

.myBtn.white:hover {
    background-color: #c7badb;
}

.myBtn.amarillo {
    background-color: var(--warning);
    color: var(--morado_f);
    font-size: 1.2rem;
    padding-block: 0.3rem;
}

.myBtn.amarillo:disabled {
    background-color: #e4a70083;
    cursor: not-allowed;
}

.myBtn.amarillo.largo {
    font-size: 1rem;
    padding-block: 0.3rem;
    padding-inline: 1.5rem;
}

.myBtn.magenta{
    background-color:rgba(229,16,218,1);
    color:#fff;
    font-size: 1.2rem;
    padding-block: 0.3rem;
}

.myBtn.magenta:hover {
    background: #fff;
    color: var(--morado_f);
    box-shadow: 0px 0px 3px var(--morado_f);
}

.myBtn.morado{
    background-color: var(--morado_f);
    color: #fff;
    font-size: 1.2rem;
    padding-block: 0.3rem;
}

.myBtn.amarillo:hover, .myBtn.moradoSuave:hover{
    background-color: #ffffff;
    color: var(--morado_f);
    box-shadow: 0px 0px 3px var(--morado_f);
}

.myBtn.morado:hover{
    background-color: #ffffff;
    color: var(--morado_f);
}

.myBtn.moradoSuave{
    background-color: var(--morado_s);
    color: var(--morado_f);
    font-size: 0.9rem;
    padding-block: 0.3rem;
}

.myBtn2 {
    border: 0;
    font-weight: bold;
    transition: 0.4s;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.myBtn2.negro {
    background-color: #000;
    color: var(--magenta);
}

.myBtn2.negro:hover {
    background-color: #181818;
}

.myBtn2.magenta {
    background-color: var(--magenta);
    color: var(--morado_f)
}

.myBtn2.magenta:hover {
    background-color: #b30caa;
}

.myBtn3 {
    border: 1px solid var(--morado_f);
    background-color: white;
    color: var(--morado_f); border-radius: 0.6rem;
    font-weight: bold;
    padding-inline: 1.5rem;
    padding-block: 0.3rem;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myBtn3:hover {
    background-color: #420a961a;
}

.myBtn3.selected {
    background-color: var(--morado_azulado);
    color: white;
}

.myBtn3.selected:hover {
    background-color: #420a96da;
}

/* INPUTS */
input.surveyInput {
    width: 50%;
    border-radius: 0.4rem;
    border: 1px solid var(--morado_f);
    box-shadow: 0px 0px 3px 0 var(--morado_f);
    padding-left: 1rem;
}


/* WIDTH */
.w-80 {
    width: 80%;
}


/* TEXTOS */
.big-text {
    font-size: 7rem;
}

.medium-text {
    font-size: 4rem;
}

.bolder {
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 1px 1px black;
}

.text-gris {
    color: #c2c2c2 !important;
}

.text-morado {
    color: var(--morado_f) !important;
}

.text-morado_azulado {
    color: var(--morado_azulado) !important;
}

.text-magenta {
    color: var(--magenta);
}

.text-azul {
    color: var(--azul);
}

.text-yellow {
    color: var(--yellow);
}

.fs7 {
    font-size: 0.95rem;
}

.fs8 {
    font-size: 0.85rem;
}

.service-container {
    min-height: 400px;
}

.survey-div {
    height: 35vh;
    position: relative;
    overflow: visible;
}


/* IMAGENES */

.bucket-img {
    position: absolute; 
    top: -18.5rem; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 75%;
}


.service-img {
    height: 175px;
    max-width: 220px;
}

.survey-img {
    height: 200px;
    max-width: 200px;
}

.check-img {
    height: 30px;
    max-width: 30px;
}

.check-img-referral {
    height: 2.6rem;
    max-width: 2.6rem;
}

.referral-img {
    height: 20rem;
}

.blog-img-index {
    height: 200px;
    width: 300px
}

.header-cover-img {
    background-image: url('http://dacostacleaning.com/wp-content/themes/DCC-WP/img/Banner-Principal-1920x827.jpg');
    background-size: cover;
    min-height: 90vh;
}


/* DROPDOWN MENU */
.dropdown-item:hover {
    background-color: var(--morado_azulado) !important;
    color: white !important;
}

.date {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border: 2px solid #6010da4a;
    margin: 0.2em;
}

.date:hover {
    background-color: #b5a1d34a;
}

.date.time-slot {
   margin-top: 0.3em;
   border-radius: 1em;
}

.date.time-slot.selected {
   background-color: #6010da;
   color: #fff;
}

.selected-date {
    flex: 1;
    text-align: center;
    padding: 10px;
    background-color: #6010da;
    color: aliceblue;
    margin: 0.2em;
}


/* SERVICE CARDS */
.service-card {
    transition: 0.5s;
    min-height: 500px;
    background-color: #f3f3f3;
}

.service-card img {
    transition: 0.5s;
}

.service-card:hover {
    background-color: var(--morado_s);
}

.service-card:hover img {
    transform: scale(1.1);
}

.rounded-4 {
    border-radius: 0.6rem;
}

.rounded-5 {
    border-radius: 0.9rem;
}

.separador-50 {
    min-height: 50px;
}

.separador-75 {
    min-height: 7vh;
}

.border-black-1 {
    border: 1px solid black;
}

.border-bottom.black, .border-top.black {
    border-color: black !important;
}

.border.morado {
    border: 2px solid var(--morado_f) !important;
}

.footer-box-element {
    width: 15vw;
    height: 68%;
    border: 2px solid var(--morado_azulado);
    background-color: white;
    color: #000;
    position: absolute;
    top: -30px; /* Ajusta esto para controlar cuánto sobresale */
    left: 80%;
    transform: translateX(-50%); /* Para centrar horizontalmente el elemento */
    z-index: 1; /* Asegura que el elemento se mantenga sobre el contenedor */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-box-img {
    position: absolute;
    left: 50%;
    bottom: -18px;
    height: 35px;
    width: 35px;
}


/* Fuente MUKTA */
.mukta-extralight {
    font-family: "Mukta", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: var(--warning);
}

.mukta-light {
    font-family: "Mukta", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.mukta-regular {
    font-family: "Mukta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.mukta-medium {
    font-family: "Mukta", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.mukta-semibold {
    font-family: "Mukta", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.mukta-bold {
    font-family: "Mukta", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.mukta-extrabold {
    font-family: "Mukta", sans-serif;
    font-weight: 800;
    font-style: normal;
    letter-spacing: -1px;
}


#ficha-tecnica {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s ease, opacity 0.6s ease;
}

#ficha-tecnica.mostrar {
    max-height: 1300px;
    opacity: 1;
}


/* Estado inicial: fuera de la pantalla (abajo) */
.hidden {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}

/* Estado visible: vuelve a su posición original */
.visible {
    opacity: 1;
    transform: translateY(0);
}



.slider-img {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2.5s ease, transform 0.5s ease;
    display: none; /* Ocultar por defecto */
}

.slider-img.active {
    opacity: 1;
    transform: translateY(0);
    display: block; /* Mostrar cuando está activo */
}

.old-price {
    position: relative;
    display: block; /* Asegura que el pseudo-elemento se ajuste al contenido */
}

.old-price::before {
    content: '';
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    height: 15px; /* Grosor de la línea */
    background-color: var(--morado_f); /* Color de la línea */
    transform: rotate(335deg); /* Ángulo de la línea */
    transform-origin: center;
}

.pb-30v {
    padding-bottom: 30vh;
}

.image-container {
    width: 100%; /* Ajusta el contenedor al tamaño deseado */
    overflow: hidden; /* Oculta la parte sobrante de la imagen */
    position: relative; /* Necesario para posicionar el botón */
}

.cropped-image {
    width: 100%; /* La imagen ocupa todo el ancho disponible */
    height: 100%; /* La imagen ocupa todo el alto disponible */
    object-fit: cover; /* Mantiene la proporción de la imagen y recorta el exceso */
    object-position: center; /* Centra la porción de la imagen que se muestra */
}

@media only screen and (max-width: 1366px) {
    
    .footer-box-element {
        width: 20vw;
    }

    .referral-img {
        height: 17rem;
    }

    .logo-footer {
        height: 5rem;
    }

    .check-img-referral {
        height: 2.2rem;
        max-width: 2.2rem;
    }

    .bucket-img {
        top: -13.5rem; 
        width: 100%;
    }

    .bucket-img.time-offer {
        top: -19vh;
        left: 80vw;
    }
}

@media only screen and (max-width: 900px) {
    .big-text {
        font-size: 6rem;
        line-height: 7rem;
    }
}


@media only screen and (max-width: 480px) {
    
    .footer-box-element {
        width: 28vw;
    }

    .logo-footer {
        height: 4rem;
    }

    .check-img-referral {
        height: 1.8rem;
        max-width: 1.8rem;
    }

    .fs-big {
        font-size: 3rem;
    }
    
    .fs-middle {
        font-size: 1.7rem;
    }

    .fs7 {
        font-size: 0.8rem;
    }

    .old-price::before {
        height: 10px;
    }

    .pb-30v {
        padding-bottom: 30vw;
    }

    .big-text {
        font-size: 4rem;
        line-height: 4.5rem;
    }

    input.surveyInput {
        width: 80%;
    }

    .survey-div {
        height: 12vh;
    }

    .medium-text {
        font-size: 2.5rem;
    }
	
	.navbar.scrolled-vaq {
        padding: 5px 0 !important; 
    }

}


.service-card-flip {
    min-height: 500px;
    margin: 1rem auto;
    perspective: 1000px;
    cursor: pointer;
    background-color: #f3f3f3;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card-flip:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.card-front {
    background: white;
    border: 1px solid #e5e7eb;
}

.card-back {
    background: #8b5cf6;
    color: white;
    transform: rotateY(180deg);
}


/* Animacion de tipado */
.type-animation {
    text-align: center;
    color: #000;
    padding: 0;
    text-transform: none;
}

.type-animation span {
    color: var(--magenta);
    animation-delay: 2s;
    font-weight: 600;
}

.txt-rotate > .wrap {
    border-right: 0.08em solid var(--morado_f);
}

.hover-underline {
    position: relative;
    display: inline-block;
    transition: color 0.4s ease-out;
    color:#181818 !important;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--morado_azulado);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.hover-underline:hover {
    color: var(--morado_azulado) !important;
}

.hover-underline:hover::after {
    transform: scaleX(1);
}