:root {
    --primary-color: #61aca5;       /* Verde azulado principal */
    --secondary-color: #ff4f9d;     /* Rosa/accent */
    --light-color: #f8f9fa;         /* Fondo claro */
    --dark-color: #2d3748;
    --gray-color: #333333;/* Texto oscuro */
    --success-color: #48bb78;       /* Verde */
    --danger-color: #f56565;        /* Rojo */
    --border-radius: 12px;          /* Bordes redondeados */
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

body {
  font-family: 'Lato', sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5, p, a, span {
  font-family: 'Lato', sans-serif;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/* Estilos del spinner de diente de león */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #61aca5;
    z-index: 9999;
}

.dandelion-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.dandelion-stem {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 80px;
    background: linear-gradient(to right, #5a8f4a, #6a994e, #5a8f4a);
    transform: translateX(-50%) rotate(0deg);
    transform-origin: bottom center;
    z-index: 1;
    animation: sway 3s ease-in-out infinite alternate;
}

.dandelion-head {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at center, #f8f8f0 0%, #f5f5dc 70%, #e8e8c0 100%);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.seed {
    position: absolute;
    width: 8px;
    height: 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
    animation: blowAway 3s ease-out infinite;
    z-index: 3;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.7));
}

/* Semillas con posiciones radiales */
.seed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(255,255,255,0.7) 100%);
    border-radius: 50% 50% 0 0;
    transform: translateX(-50%);
}

/* Posicionamiento radial de las semillas */
.seed:nth-child(1) { top: 10px; left: 50%; transform: rotate(0deg); --x: 0.5; --y: -1; animation-delay: 0.1s; }
.seed:nth-child(2) { top: 15px; left: 60%; transform: rotate(45deg); --x: 0.7; --y: -0.7; animation-delay: 0.2s; }
.seed:nth-child(3) { top: 25px; left: 70%; transform: rotate(90deg); --x: 1; --y: -0.5; animation-delay: 0.3s; }
.seed:nth-child(4) { top: 40px; left: 75%; transform: rotate(135deg); --x: 0.7; --y: 0; animation-delay: 0.4s; }
.seed:nth-child(5) { top: 55px; left: 70%; transform: rotate(180deg); --x: 0.5; --y: 0.5; animation-delay: 0.5s; }
.seed:nth-child(6) { top: 60px; left: 60%; transform: rotate(225deg); --x: 0; --y: 0.7; animation-delay: 0.6s; }
.seed:nth-child(7) { top: 55px; left: 50%; transform: rotate(270deg); --x: -0.5; --y: 0.5; animation-delay: 0.7s; }
.seed:nth-child(8) { top: 40px; left: 40%; transform: rotate(315deg); --x: -0.7; --y: 0; animation-delay: 0.8s; }
.seed:nth-child(9) { top: 25px; left: 30%; transform: rotate(0deg); --x: -1; --y: -0.5; animation-delay: 0.9s; }
.seed:nth-child(10) { top: 15px; left: 40%; transform: rotate(45deg); --x: -0.7; --y: -0.7; animation-delay: 1.0s; }

/* Semillas adicionales para más realismo */
.seed:nth-child(11) { top: 5px; left: 55%; transform: rotate(22deg); --x: 0.3; --y: -0.9; animation-delay: 0.15s; }
.seed:nth-child(12) { top: 8px; left: 45%; transform: rotate(-22deg); --x: -0.3; --y: -0.9; animation-delay: 0.25s; }
.seed:nth-child(13) { top: 35px; left: 80%; transform: rotate(110deg); --x: 0.9; --y: -0.2; animation-delay: 0.35s; }
.seed:nth-child(14) { top: 65px; left: 75%; transform: rotate(160deg); --x: 0.6; --y: 0.3; animation-delay: 0.45s; }
.seed:nth-child(15) { top: 70px; left: 50%; transform: rotate(200deg); --x: 0; --y: 0.8; animation-delay: 0.55s; }
.seed:nth-child(16) { top: 50px; left: 25%; transform: rotate(290deg); --x: -0.9; --y: -0.2; animation-delay: 0.65s; }

@keyframes blowAway {
    0% {
        transform: rotate(var(--r)) translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: rotate(calc(var(--r) + 360deg)) translate(calc(var(--x) * 100px), calc(var(--y) * 100px)) scale(0.2);
        opacity: 0;
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(-50%) rotate(-5deg);
    }
    50% {
        transform: translateX(-50%) rotate(5deg);
    }
}

/* Efecto de viento */
.wind-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(97,172,165,0) 0%, rgba(255,255,255,0.1) 50%, rgba(97,172,165,0) 100%);
    animation: wind 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes wind {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle light border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Outer shadow */
              inset 0 1px 0 rgba(255, 255, 255, 0.5); /* Inner highlight */
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(22, 114, 126, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-primary-outline-0 {
    border: 0;
    color: #61aca5;
}
.btn-secondary-outline-0 {
    border: 0;
    color: #61aca5;
}

.btn-tirth-outline-0 {
    border: 0;
    color: #fff;
}

.btn-light-outline-0 {
    border: 0;
    color: #61aca5;
}

.btn-primary-outline-0:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle light border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Outer shadow */
              inset 0 1px 0 rgba(255, 255, 255, 0.5); /* Inner highlight */
    color: #61aca5;
}

.btn-secondary-outline-0:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle light border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Outer shadow */
              inset 0 1px 0 rgba(255, 255, 255, 0.5); /* Inner highlight */
    color: #61aca5;
}

.btn-tirth-outline-0:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle light border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Outer shadow */
              inset 0 1px 0 rgba(255, 255, 255, 0.5); /* Inner highlight */
    color: #fff;
}
.navbar-logo{
  display: inline-block;
  vertical-align: middle;
  width: 150px;
}
.navbar-logo img{
  display: block;
  width: 100%;
  height: auto;
}
.btn-light-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
    background: var(--bs-secondary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Carousel Start ***/
.carousel-item {
    position: relative;
    min-height: 100vh
    
}

.carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6));
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent;
}

#carouselId .carousel-indicators {
    padding-bottom: 30px;
}

#carouselId .carousel-indicators li {
    border-top: 10px solid var(--bs-white);
    border-bottom: 10px solid var(--bs-white);
    border-right: 5px solid var(--bs-white);
    border-left: 5px solid var(--bs-white);
    margin-right: 10px;
    border-radius: 10px;
    transition: 0.5s;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    border-right: 15px solid var(--bs-primary);
    border-left: 15px solid var(--bs-primary);
}
/*** Carousel End ***/


.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Services Start ***/
.services .services-item {
    transition: 0.5s;
        border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.services .services-item:hover {
    background: var(--bs-primary) !important;
    border-color: var(--bs-secondary) !important;
}

.services .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
    color: var(--bs-white);
    transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle light border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Outer shadow */
              inset 0 1px 0 rgba(255, 255, 255, 0.5); /* Inner highlight */
    color: white;
}

.services .services-item:hover .services-content a.btn:hover {
    color: #f8f9fa;
}

.services .services-item .services-img {
    overflow: hidden;
}

.services .services-item .services-img img {
    transition: 0.5s;
}

.services .services-item .services-img img:hover {
    transform: scale(1.3);
}
/*** Services End ***/



/*** About Start ***/
/*** Youtube Video start ***/
.video {
    position: relative;
    padding-right: 70px; 
    padding-bottom: 70px;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    margin-left: -35px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    background: #61aca5;

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 60%;
    max-height: 30%;
    aspect-ratio: 9/6 auto;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: center;
        max-width: 60%;
    max-height: 30%;
    aspect-ratio: 9/6 auto;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #61aca5;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** About End ***/


/*** Appointment  Start ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, .2));
    object-fit: cover;
    border-radius: 10px;
}
/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(rgba(252, 152, 195, 0.3), rgba(255, 255, 255, 0.3), rgba(136, 76, 210, 0.3));
    border-radius: 10px;
    z-index: 9;
}

.counter-section .counter-item {
    text-align: center;
    background: rgba(255, 255, 255, .5) !important;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: -50px; 
    margin-left: -45px; 
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 110px;
    height: 110px;
    border-radius: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}
/*** Counter End ***/


/*** Events Start ***/
.gallery .tab-class .nav-item {
     padding: 0 0 20px 0;
}

.gallery .tab-class .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50px; /* Bordes redondeados como los botones */
    color: var(--dark-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.gallery .tab-class .nav-item a:hover {
    background: rgba(22, 114, 126, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 114, 126, 0.3);
}

.gallery .tab-class .nav-item a.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a9cb0 100%) !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(22, 114, 126, 0.4);
    transform: translateY(-2px);
}

.gallery .tab-class .nav-item a.active span {
    color: white !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
    
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}
/*** Events End ***/


/*** Pricing Start ***/
.pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing .pricing-item {
    color: var(--bs-white);
}

.pricing .pricing-item .pricing-content {
    background: rgba(255, 255, 255, 0.4);
}

.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);

}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-primary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px; 
    left: 20px; 
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px; 
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
    bottom: 0;
    height: 100%;
}

.team .team-item .team-text {
    transition: 0.5s;
}

.team .team-item:hover .team-text {
    background: var(--bs-secondary);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-item {
    background: rgba(0, 0, 0, 0.4);
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** testimonial end ***/

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(255, 255, 255, 0.6);
}
/*** Contact End ***/

/*** footer start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a,
.footer .footer-item p {
    color: var(--bs-white);
    line-height: 40px;
    font-size: 17px;
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

 /* Estilo Botón WhatsApp Beauty Spa */
        .whatsapp-btn {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #8FD3C7, #61ACA5); /* Tonalidades spa */
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(129, 178, 173, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 1000;
            animation: float 3s ease-in-out infinite;
            transition: all 0.3s;
            border: none;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 25px rgba(129, 178, 173, 0.8);
            background: linear-gradient(135deg, #61ACA5, #8FD3C7);
        }
        
        .whatsapp-btn::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            animation: pulse 2s infinite;
            z-index: -1;
        }
        
        .whatsapp-btn svg {
            width: 35px;
            height: 35px;
            fill: white;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }
        
        /* Animaciones */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(0.9); opacity: 0.7; }
            70% { transform: scale(1.3); opacity: 0; }
            100% { transform: scale(0.9); opacity: 0; }
        }
        
        /* Tooltip de texto (opcional) */
        .whatsapp-tooltip {
            position: absolute;
            right: 85px;
            background: white;
            color: #5E8C87;
            padding: 8px 15px;
            border-radius: 20px;
            font-family: 'Arial', sans-serif;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
        }
        
        .whatsapp-btn:hover .whatsapp-tooltip {
            opacity: 1;
        }
            .whatsapp-notification {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 20px;
        height: 20px;
        background: #FF6B6B;
        border-radius: 50%;
        color: white;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: pulse 1.5s infinite;
    }
.ad-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* <-- Aumenta este valor */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ad-popup-container.show {
    opacity: 1;
    visibility: visible;
}

.ad-popup-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.ad-popup-container.show .ad-popup-content {
    transform: scale(1);
}

.ad-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 1001;
}

.ad-popup-close:hover {
    color: #555;
}

.ad-popup-inner {
    text-align: center;
}

.ad-popup-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
}

.ad-popup-inner h5 {
    color: #000;
    font-size: 1.5rem;
}

.ad-popup-inner p {
    color: #555;
    margin-top: 5px;
    margin-bottom: 10px;
}