/********************************************************** */
/***********************  Gilkan ************************* */
/**********************************************************

    TABLE OF CONTENT
    ========================

    01. Default CSS
    02. Colors
    03. Animations
    04. Hero Section
    05. Banner Section
    06. About Section
    07. Services Section
    08. Service Details
    09. Pricing Section
    10. Beauty Section
    11. Gallery Section
    12. Team Section
    13. Team Profile
    14. Testimonial Section
    15. Client Section
    16. Vission Mission
    17. Contact Page
    18. Error Section
    19. Footer Section
    

/****************************************************** */
/*******************  01. Default CSS ***************** */
/****************************************************** */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Para mejor compatibilidad en navegadores */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    font-family: 'Oswald', sans-serif;
}

a {
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 38px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

header:after,
section:after,
footer:after {
    display: block;
    clear: both;
    content: "";
}

/** Section Title style One **/
.section-title h2 {
    margin-bottom: 35px;
}

/** Button style One **/
.theme-btn,
a.theme-btn {
    font-size: 18px;
    cursor: pointer;
    min-width: 200px;
    font-weight: 700;
    padding: 16px 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    z-index: 1;
}

.theme-btn:before,
a.theme-btn:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 3px;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
}

.theme-btn:hover:before,
a.theme-btn:hover:before {
    width: 100%;
}

.theme-btn:after,
a.theme-btn:after {
    content: "\f104";
    font-family: Flaticon;
    font-size: 10px;
    margin-left: 15px;
}

.theme-btn.btn-reverse,
a.theme-btn.btn-reverse {
    padding-left: 45px;
}

.theme-btn.btn-reverse:before,
a.theme-btn.btn-reverse:before {
    left: auto;
    right: 0;
}

.theme-btn.btn-reverse:after,
a.theme-btn.btn-reverse:after {
    position: absolute;
    left: 10px;
    transform: rotate(180deg);
}

/** Social Link Style One */
.social-style-one {
    display: inline-block;
}

.social-style-one a {
    margin: 0 15px;
    font-size: 15px;
    display: inline-block;
}

.social-style-one a:first-child {
    margin-left: 0;
}

.social-style-one a:last-child {
    margin-right: 0;
}

/*List style One*/
.list-style-one li {
    margin-bottom: 15px;
    display: flex;
}

.list-style-one li:before {
    content: "\f104";
    font-size: 10px;
    font-family: Flaticon;
    margin-right: 30px;
    color: var(--kinesky-orange-light);
}

.list-style-one li a:hover {
    color: var(--kinesky-orange-light);
}


/*** Modern Preloader with Kinesky Logo ** */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8ff 50%, #e8f5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 300px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(1, 1, 128, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 8px 16px rgba(1, 1, 128, 0.05);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.15),
            0 12px 20px rgba(1, 1, 128, 0.08);
    }
}

.preloader-logo {
    margin-bottom: 20px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.preloader-logo img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.preloader-text {
    margin-bottom: 25px;
}

.preloader-text h3 {
    color: var(--kinesky-blue);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.preloader-text p {
    color: var(--kinesky-orange);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(1, 1, 128, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        var(--kinesky-blue) 0%, 
        var(--kinesky-orange) 50%, 
        var(--kinesky-blue) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: 
        loadingProgress 3s ease-out forwards,
        gradientShift 2s ease-in-out infinite;
    position: relative;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    20% { width: 15%; }
    40% { width: 35%; }
    60% { width: 55%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 10px 10px 0;
    animation: progressGlow 1s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.loading-percentage {
    color: var(--kinesky-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

/* Responsive Preloader */
@media (max-width: 767px) {
    .preloader-content {
        max-width: 280px;
        padding: 30px;
        margin: 0 20px;
    }
    
    .preloader-logo img {
        max-width: 100px;
    }
    
    .preloader-text h3 {
        font-size: 20px;
    }
    
    .preloader-text p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .preloader-content {
        max-width: 250px;
        padding: 25px;
    }
    
    .preloader-logo img {
        max-width: 80px;
    }
    
    .preloader-text h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/*** Scroll Top style ** */
.scroll-top {
    width:40px;
    height:40px;
    cursor: pointer;
    font-size: 18px;
}

/* input buttons */
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline: none;
}

.form-control {
    border: 1px solid;
    border-radius: 0;
    padding: 17px 30px;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
}

.divider {
    height: 12px;
}

/****************************************************** */
/********************* 02. Colors - KINESKY ********** */
/****************************************************** */

/* KINESKY Variables CSS */
:root {
    /* Kinesky Fisioterapia */
    --kinesky-blue: #010180;
    --kinesky-orange: #ff7f00;
    
    /* Variantes de Kinesky Orange */
    --kinesky-orange-light: #ff9933;
    --kinesky-orange-lighter: #ffb366;
    --kinesky-orange-soft: #ffa64d;
    --kinesky-orange-pale: #ffe6cc;
    --kinesky-orange-muted: #e6730d;
    
    /* IV Cosmestetic */
    --cosmestetic-green: #04451b;
    --cosmestetic-white: #feffff;
    
    /* Colores complementarios */
    --neutral-gray: #787878;
    --dark-gray: #222222;
    --light-gray: #f8f9fa;
    --accent-light: rgba(1, 1, 128, 0.1);
    --accent-orange-light: rgba(255, 127, 0, 0.1);
    --accent-green-light: rgba(4, 69, 27, 0.1);
}
a,
body,
a:hover,
a:focus,
a:visited {
    color: #787878;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.theme-btn.style-three,
a.theme-btn.style-three, 
.theme-btn.style-four,
a.theme-btn.style-four {
    color: #222222;
}

.theme-btn,
a.theme-btn,
.scroll-top,
.theme-btn.style-four:hover,
a.theme-btn.style-four:hover {
    color: #FFFFFF;
}

.color-one,
.vision-mision > i,
.hero-content h1 span,
.section-title h2 span,
.service-item.style-one > i,
.style-one .price-circle h3 {
    color: var(--kinesky-blue);
}

.style-two .price-circle h3 {
    color: var(--kinesky-orange);
}

.style-three .price-circle h3 {
    color: var(--cosmestetic-green);
}

.hero-content h5 {
    color: #545459;
}

.service-item.style-two > i {
    color: var(--kinesky-orange);
}

.service-item.style-three > i {
    color: var(--cosmestetic-green);
}

.service-item.style-four > i {
    color: var(--kinesky-blue);
}

.preloader,
.service-item,
.price-circle,
.theme-btn.style-three,
a.theme-btn.style-three,
.theme-btn.style-four,
a.theme-btn.style-four {
    background-color: #FFFFFF;
}

.bg-one {
    background-color: var(--accent-light);
}

.bg-two,
.services-section:after,
.service-item.style-one > i,
.style-one .pricing-content {
    background-color: var(--accent-light);
}

.bg-three,
.theme-btn,
a.theme-btn,
.scroll-top,
.what-experct-content {
    background-color: var(--kinesky-blue);
}

.theme-btn:before,
a.theme-btn:before {
    background-color: var(--kinesky-orange);
}

.theme-btn.style-two:before,
a.theme-btn.style-two:before,
.theme-btn.style-three:before,
a.theme-btn.style-three:before,
.price-item.style-one .theme-btn:before {
    background-color: var(--kinesky-orange);
}

.price-item.style-two .theme-btn {
    background-color: var(--kinesky-orange);
}

.price-item.style-two .theme-btn:before {
    background-color: var(--kinesky-blue);
}

.price-item.style-three .theme-btn {
    background-color: var(--cosmestetic-green);
}

.price-item.style-three .theme-btn:before {
    background-color: var(--kinesky-blue);
}

.service-item.style-two > i {
    background-color: var(--accent-orange-light);
}

.service-item.style-three > i {
    background-color: var(--accent-green-light);
}

.service-item.style-four > i {
    background-color: var(--accent-light);
}

.style-two .pricing-content {
    background-color: var(--accent-orange-light);
}

.style-three .pricing-content {
    background-color: var(--accent-green-light);
}

.bg-four {
    background-color: #fffafa;
}

.divider,
.mission {
    background-color: #fff2f2;
}


.form-control {
    border-color: #FFFFFF;
}

.service-item.style-one {
    border-color: var(--kinesky-blue);
}

.service-item.style-two {
    border-color: var(--kinesky-orange);
}

.service-item.style-three {
    border-color: var(--cosmestetic-green);
}

.service-item.style-four {
    border-color: var(--kinesky-blue);
}

.style-one .price-circle:after {
    border-color: var(--kinesky-orange-lighter);
}

.style-two .price-circle:after {
    border-color: #c1d5aa;
}

.form-control:focus,
.style-three .price-circle:after {
    border-color: var(--kinesky-orange-light);
}

.style-one .pricing-content ul,
.style-one .pricing-content li {
    border-color: #F4D4D2;
}

.style-two .pricing-content ul,
.style-two .pricing-content li {
    border-color: #d6e6c3;
}

.style-three .pricing-content ul,
.style-three .pricing-content li {
    border-color: #f2d4ec;
}


/****************************************************** */
/******************* 03. Animations  ****************** */
/****************************************************** */
@-webkit-keyframes rotated {
  0%   {-webkit-transform: rotate(0);transform: rotate(0);}
  50% {-webkit-transform: rotate(175deg);transform: rotate(175deg);}
  100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes rotated {
  0%   {-webkit-transform: rotate(0);transform: rotate(0);}
  50% {-webkit-transform: rotate(175deg);transform: rotate(175deg);}
  100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}


@-webkit-keyframes rotated-reverse {
  0%   {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
  50% {-webkit-transform: rotate(175deg);transform: rotate(175deg);}
  100% {-webkit-transform: rotate(0);transform: rotate(0);}
}
@keyframes rotated-reverse {
  0%   {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
  50% {-webkit-transform: rotate(175deg);transform: rotate(175deg);}
  100% {-webkit-transform: rotate(0);transform: rotate(0);}
}

@-webkit-keyframes down-up {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    50% {
        -webkit-transform: translate(0px, 100px);
        transform: translate(0px, 100px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

}

@keyframes down-up {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    50% {
        -webkit-transform: translate(0px, 100px);
        transform: translate(0px, 100px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

}

/****************************************************** */
/******************* 04. Hero Slider Section ********* */
/****************************************************** */

/* Hero Slider Container - Mobile First */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    /* Compensar la altura del header fijo */
    padding-top: 70px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Hero Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide.next {
    z-index: 3;
}

/* Overlays for different slides */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(1, 1, 128, 0.8) 0%, 
        rgba(255, 127, 0, 0.6) 100%
    );
    z-index: 1;
}

.hero-slide-overlay.cosmetic {
    background: linear-gradient(
        135deg, 
        rgba(4, 69, 27, 0.85) 0%, 
        rgba(4, 69, 27, 0.7) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.hero-slide-overlay.integral {
    background: linear-gradient(
        135deg, 
        rgba(1, 1, 128, 0.7) 0%, 
        rgba(4, 69, 27, 0.6) 50%,
        rgba(255, 127, 0, 0.6) 100%
    );
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.slide-content {
    text-align: center;
    max-width: 100%;
    padding: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) 0.3s;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge.kinesky {
    background: rgba(1, 1, 128, 0.9);
    color: white;
}

.hero-badge.cosmetic {
    background: rgba(4, 69, 27, 0.9);
    color: white;
}

.hero-badge.integral {
    background: linear-gradient(45deg, var(--kinesky-blue), var(--cosmestetic-green));
    color: white;
}

/* Hero Brand Container */
.hero-brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-logo {
    max-width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Hero Titles */
.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-title .hero-brand {
    display: block;
    color: var(--kinesky-blue);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title .hero-subtitle {
    display: block;
    font-size: 0.7em;
    font-weight: 400;
    color: var(--kinesky-orange);
    margin-top: 5px;
}

.hero-title.cosmetic .hero-brand {
    color: var(--cosmestetic-green);
}

.hero-title.cosmetic .hero-subtitle {
    color: white;
}

.hero-title.integral .hero-brand {
    color: var(--kinesky-blue);
}

.hero-title.integral .hero-brand.secondary {
    color: var(--cosmestetic-green);
}

.hero-title .hero-connector {
    display: inline-block;
    margin: 0 10px;
    color: white;
    font-size: 0.8em;
}

.hero-subtitle.integral {
    font-size: 20px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Description */
.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.hero-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.hero-btn:hover:before {
    left: 100%;
}

.hero-btn.primary {
    background: var(--kinesky-blue);
    color: white;
    border-color: var(--kinesky-blue);
}

.hero-btn.primary:hover {
    background: var(--kinesky-orange);
    border-color: var(--kinesky-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: white;
    color: var(--kinesky-blue);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-btn.tertiary {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: transparent;
}

.hero-btn.tertiary:hover {
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.hero-btn.cosmetic {
    background: var(--cosmestetic-green);
    border-color: var(--cosmestetic-green);
}

.hero-btn.cosmetic:hover {
    background: rgba(4, 69, 27, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 69, 27, 0.3);
}

.hero-btn.secondary.cosmetic {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn.tertiary.cosmetic {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: transparent;
}

.hero-btn.integral {
    background: linear-gradient(45deg, var(--kinesky-blue), var(--cosmestetic-green));
    border-color: transparent;
}

.hero-btn.integral:hover {
    background: linear-gradient(45deg, var(--kinesky-orange), var(--cosmestetic-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
}

/* Navigation Controls */
.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

/* Dots Navigation */
.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: white;
    transform: scale(1.1);
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--kinesky-blue), var(--kinesky-orange));
    transition: width 5s linear;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

/* Mobile Styles - Arreglar solapamiento de navegación */
@media (max-width: 767px) {
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-prev {
        left: 10px;
    }
    
    .hero-next {
        right: 10px;
    }
    
    .hero-navigation {
        bottom: 15px;
    }
    
    .hero-dots {
        gap: 6px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-actions {
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .hero-prev {
        left: 5px;
    }
    
    .hero-next {
        right: 5px;
    }
    
    .hero-navigation {
        bottom: 10px;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-slider-section {
        min-height: 700px;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .hero-logo {
        max-width: 100px;
    }
    
    .hero-brand-container {
        flex-direction: row;
        gap: 20px;
    }
    
    .hero-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .hero-prev {
        left: 40px;
    }
    
    .hero-next {
        right: 40px;
    }
    
    .hero-navigation {
        bottom: 50px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-slider-section {
        min-height: 800px;
        padding-top: 90px;
    }
    
    .slide-content {
        max-width: 800px;
        padding: 40px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-subtitle.integral {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 20px;
        max-width: 700px;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 10px 24px;
    }
    
    .hero-logo {
        max-width: 120px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-slider-section {
        min-height: 900px;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .slide-content {
        max-width: 900px;
    }
}


/****************************************************** */
/***************** 05. Banner Section  **************** */
/****************************************************** */
.banner-section {
    position: relative;
    background: url(../images/banner/banner.png);
    background-size: cover;
    background-position: center;
}

.banner-inner {
    height: 490px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 55px;
    margin-bottom: 15px;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    display: flex;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #FFFFFF;
    content: "\f104";
    font-family: Flaticon;
    font-size: 9px;
    padding: 0 13px;
}

.banner-inner nav {
    background: var(--kinesky-orange-light);
    position: absolute;
    left: 0;
    bottom: -22.5px;
}

.banner-inner .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 8.5px 22px;
    align-items: center;
}

.banner-angle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-65%, -50%);
    overflow: hidden;
    height: 100%;
}

.banner-angle img {
    animation: down-up 10s infinite linear;
}


/****************************************************** */
/****************** 06. About Section  **************** */
/****************************************************** */

/* About Section - Mobile First Design */
.about-section {
    position: relative;
    overflow: hidden;
}

/* Images Vertical - Left Side */
.about-images-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.vertical-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.vertical-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.vertical-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vertical-image-item:hover .vertical-img {
    transform: scale(1.05);
}

.vertical-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.vertical-image-item:hover .vertical-overlay {
    transform: translateY(0);
}

.vertical-overlay span {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Content - Right Side */
.about-content h6 {
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--neutral-gray);
}

.about-content > p {
    margin-bottom: 30px;
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Professionals Showcase */
.professionals-showcase {
    margin-top: 35px;
}

.professionals-showcase h5 {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 18px;
}

/* Professionals Container */
.professionals-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Professional Section */
.professional-section {
    text-align: center;
}

/* Professional Avatar Container */
.professional-avatar-container {
    margin-bottom: 25px;
}

/* Professional Avatar Wrapper */
.professional-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.professional-avatar-wrapper:hover {
    transform: translateY(-10px);
}

.professional-avatar-wrapper[onclick] {
    cursor: pointer;
}

.professional-avatar-wrapper[onclick]:active {
    transform: translateY(-8px) scale(0.98);
    transition: all 0.1s ease;
}

/* Professional Avatar - Circular Photos */
.professional-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 3;
    background: white;
    padding: 3px;
}

.professional-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
    filter: brightness(1) contrast(1) saturate(1);
}

.professional-avatar.kinesky-avatar img {
    filter: brightness(1.1) contrast(1.1) saturate(0.9);
}

.professional-avatar.cosmetic-avatar img {
    filter: brightness(1.1) contrast(1.1) saturate(0.8) hue-rotate(-10deg);
}

.professional-avatar-wrapper:hover .professional-avatar {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.professional-avatar-wrapper:hover .professional-avatar img {
    transform: scale(1.05);
}

/* Avatar Ring Effect - Outside Border */
.avatar-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 4px solid transparent;
    transition: all 0.4s ease;
    z-index: 2;
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.avatar-ring.kinesky-ring {
    background: linear-gradient(white, white), 
                linear-gradient(45deg, var(--kinesky-blue), var(--kinesky-orange), var(--kinesky-blue));
}

.avatar-ring.cosmetic-ring {
    background: linear-gradient(white, white), 
                linear-gradient(45deg, var(--cosmestetic-green), rgba(4, 69, 27, 0.8), var(--cosmestetic-green));
}

.professional-avatar-wrapper:hover .avatar-ring {
    transform: rotate(180deg) scale(1.1);
    border-width: 6px;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

/* Avatar Glow Effect - Outer Glow */
.avatar-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
    animation: pulse 3s infinite;
}

.avatar-glow.kinesky-glow {
    background: radial-gradient(circle, rgba(1, 1, 128, 0.4) 0%, rgba(255, 127, 0, 0.2) 50%, transparent 70%);
}

.avatar-glow.cosmetic-glow {
    background: radial-gradient(circle, rgba(4, 69, 27, 0.4) 0%, rgba(4, 69, 27, 0.2) 50%, transparent 70%);
}

.professional-avatar-wrapper:hover .avatar-glow {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.4; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.8; 
    }
}

/* Professional Info */
.professional-avatar-container h4 {
    margin-bottom: 5px;
    color: var(--dark-gray);
    font-size: 20px;
}

.professional-role {
    display: block;
    font-size: 14px;
    color: var(--neutral-gray);
    font-weight: 500;
}

/* Service Areas (Original About Cards) */
.service-area {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.service-area:hover::before {
    left: 100%;
}

.service-area.kinesky-area {
    border-left-color: var(--kinesky-blue);
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(1, 1, 128, 0.05) 100%);
}

.service-area.kinesky-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(1, 1, 128, 0.15);
    border-left-color: var(--kinesky-orange);
}

.service-area.cosmetic-area {
    border-left-color: var(--cosmestetic-green);
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(4, 69, 27, 0.05) 100%);
}

.service-area.cosmetic-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(4, 69, 27, 0.15);
}

.area-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.area-header i {
    font-size: 20px;
    margin-right: 12px;
    min-width: 20px;
}

.service-area.kinesky-area .area-header i {
    color: var(--kinesky-blue);
}

.service-area.cosmetic-area .area-header i {
    color: var(--cosmestetic-green);
}

.area-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.service-area p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Service CTA */
.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-area.kinesky-area .service-cta {
    color: var(--kinesky-blue);
}

.service-area.cosmetic-area .service-cta {
    color: var(--cosmestetic-green);
}

.service-area:hover .service-cta {
    transform: translateX(5px);
}

.service-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-area:hover .service-cta i {
    transform: translateX(3px);
}

/* Mission Statement */
.mission-statement {
    margin: 35px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--kinesky-blue) 0%, var(--cosmestetic-green) 100%);
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mission-statement p {
    margin: 0;
    color: white;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* About Actions */
.about-actions {
        display: flex;
    flex-direction: column;
        gap: 15px;
    margin-top: 30px;
}

.about-actions .theme-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-actions .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: -1;
}

.about-actions .theme-btn.primary {
    background: var(--kinesky-blue);
    color: white;
    border: 2px solid var(--kinesky-blue);
}

.about-actions .theme-btn.primary::before {
    background: var(--kinesky-orange);
    transform: translateY(100%);
}

.about-actions .theme-btn.primary:hover::before {
    transform: translateY(0);
}

.about-actions .theme-btn.primary:hover {
    border-color: var(--kinesky-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
    color: white;
}

.about-actions .theme-btn.secondary {
    background: transparent;
    color: var(--kinesky-blue);
    border: 2px solid var(--kinesky-blue);
}

.about-actions .theme-btn.secondary::before {
    background: var(--kinesky-blue);
    transform: translateY(100%);
}

.about-actions .theme-btn.secondary:hover::before {
    transform: translateY(0);
}

.about-actions .theme-btn.secondary:hover {
    border-color: var(--kinesky-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 1, 128, 0.2);
    color: white;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .about-images-vertical {
        padding: 30px;
        gap: 25px;
    }
    
    .vertical-overlay span {
        font-size: 18px;
    }
    
    .professional-avatar-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .professional-avatar-container h4 {
        font-size: 22px;
    }
    
    .professional-role {
        font-size: 15px;
    }
    
    .area-header h4 {
        font-size: 17px;
    }
    
    .service-area p {
        font-size: 15px;
    }
    
    .about-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .about-images-vertical {
        padding: 40px;
        gap: 30px;
    }
    
    .professionals-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .professional-avatar-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .professional-avatar-container h4 {
        font-size: 24px;
    }
    
    .professional-role {
        font-size: 16px;
    }
    
    .service-area {
        padding: 25px;
    }
    
    .area-header h4 {
        font-size: 18px;
    }
    
    .service-area p {
        font-size: 16px;
    }
    
    .mission-statement {
        padding: 30px;
    }
    
    .mission-statement p {
        font-size: 18px;
    }
}

        /* Large Desktop */
        @media (min-width: 1200px) {
            .about-images-vertical {
                padding: 50px;
                gap: 35px;
            }
            
            .professionals-container {
                gap: 50px;
            }
            
            .professional-avatar-wrapper {
                width: 180px;
                height: 180px;
            }
            
            .service-area {
                padding: 30px;
            }
        }

/****************************************************** */
/*************** 07. Testimonials Section ************* */
/****************************************************** */

/* Testimonials Section - Mobile First Design */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d2d5f 100%);
    overflow: hidden;
    color: white;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 10% 20%, rgba(1, 1, 128, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 90% 80%, rgba(4, 69, 27, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 400px 300px at 50% 10%, rgba(255, 127, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundFloat 20s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.03) 100px,
            rgba(255, 255, 255, 0.03) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.03) 100px,
            rgba(255, 255, 255, 0.03) 101px
        );
    pointer-events: none;
}

@keyframes backgroundFloat {
    0%, 100% { 
        opacity: 1; 
        transform: translateY(0px);
    }
    50% { 
        opacity: 0.8; 
        transform: translateY(-10px);
    }
}

/* Section Title Override for Dark Background */
.testimonials-section .section-title h2 {
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.testimonials-section .section-title h2 span {
    background: linear-gradient(45deg, var(--kinesky-blue), var(--kinesky-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile Testimonials */
.testimonials-mobile {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    z-index: 2;
}

.testimonial-mobile-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-mobile-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kinesky-blue), var(--kinesky-orange));
}

.testimonial-mobile-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.testimonial-avatar::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--kinesky-blue), var(--kinesky-orange));
    z-index: -1;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-text p::before {
    content: '"';
    font-size: 3em;
    color: var(--kinesky-blue);
    position: absolute;
    top: -10px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-author h5 {
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-author span {
    color: var(--neutral-gray);
    font-size: 14px;
}

/* Mobile Navigation */
.mobile-testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn.active {
    background: var(--kinesky-blue);
    transform: scale(1.3);
}

.testimonial-nav-btn:hover {
    background: var(--kinesky-orange);
}

/* Desktop 3D Slider */
.testimonials-3d-slider {
    position: relative;
    height: 700px;
    perspective: 2000px;
    perspective-origin: center 40%;
    z-index: 2;
}

.slider-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-3d-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.slider-3d-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 1, 128, 0.2) 0%, transparent 70%);
    border: 2px solid rgba(1, 1, 128, 0.3);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* 3D Carousel */
.carousel-3d {
    position: relative;
    width: 500px;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform: rotateX(-10deg) rotateY(0deg);
}

/* 3D Items */
.testimonial-3d-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform-origin: center;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
}

/* 3D Positioning - 8 items in a dynamic circle */
.testimonial-3d-item:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(280px) rotateY(0deg); }
.testimonial-3d-item:nth-child(2) { transform: translate(-50%, -50%) rotateY(45deg) translateZ(280px) rotateY(-45deg); }
.testimonial-3d-item:nth-child(3) { transform: translate(-50%, -50%) rotateY(90deg) translateZ(280px) rotateY(-90deg); }
.testimonial-3d-item:nth-child(4) { transform: translate(-50%, -50%) rotateY(135deg) translateZ(280px) rotateY(-135deg); }
.testimonial-3d-item:nth-child(5) { transform: translate(-50%, -50%) rotateY(180deg) translateZ(280px) rotateY(-180deg); }
.testimonial-3d-item:nth-child(6) { transform: translate(-50%, -50%) rotateY(225deg) translateZ(280px) rotateY(-225deg); }
.testimonial-3d-item:nth-child(7) { transform: translate(-50%, -50%) rotateY(270deg) translateZ(280px) rotateY(-270deg); }
.testimonial-3d-item:nth-child(8) { transform: translate(-50%, -50%) rotateY(315deg) translateZ(280px) rotateY(-315deg); }

/* Active item (center) - mismo tamaño que los demás */
.testimonial-3d-item.active {
    transform: translate(-50%, -50%) rotateY(0deg) translateZ(250px);
    z-index: 10;
}

.testimonial-3d-item:hover:not(.active) {
    transform: translate(-50%, -50%) rotateY(var(--rotation, 0deg)) translateZ(220px);
}

/* 3D Avatar */
.testimonial-avatar-3d {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.testimonial-avatar-3d::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        var(--kinesky-blue), 
        var(--kinesky-orange), 
        var(--cosmestetic-green),
        var(--kinesky-blue)
    );
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.testimonial-3d-item:hover .testimonial-avatar-3d::before,
.testimonial-3d-item.active .testimonial-avatar-3d::before {
    opacity: 0.8;
}

.testimonial-avatar-3d:hover {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-avatar-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: transparent;
    transition: all 0.6s ease;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.testimonial-3d-item:hover .testimonial-avatar-3d img {
    filter: brightness(1.2) contrast(1.2) saturate(1.4);
}

.testimonial-3d-item.active .testimonial-avatar-3d img {
    filter: brightness(1.3) contrast(1.3) saturate(1.5);
}

/* Avatar Ring for 3D - Mejorado */
.testimonial-avatar-3d .avatar-ring {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(1, 1, 128, 0.3), 
        rgba(255, 127, 0, 0.3),
        rgba(255, 255, 255, 0.1)
    );
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -2;
    animation: ringFloat 4s ease-in-out infinite;
}

@keyframes ringFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.1) rotate(180deg); 
        opacity: 1; 
    }
}

.testimonial-3d-item.active .avatar-ring,
.testimonial-3d-item:hover .avatar-ring {
    opacity: 1;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Testimonial Modal */
.testimonial-modal {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    max-width: 90vw;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.95) 100%
    );
    border-radius: 25px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 20;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-modal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--kinesky-blue), 
        var(--kinesky-orange), 
        var(--cosmestetic-green),
        var(--kinesky-blue)
    );
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: rotate 4s linear infinite;
}

.testimonial-modal.active {
    opacity: 1;
    visibility: visible;
    bottom: -100px;
    transform: translateX(-50%) translateY(0px);
}

.testimonial-modal.active::before {
    opacity: 0.3;
}

.testimonial-modal-content {
    position: relative;
    padding: 30px;
    text-align: center;
}

.testimonial-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-close-btn:hover {
    background: var(--kinesky-orange);
    color: white;
    transform: scale(1.1);
}

.testimonial-modal-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.testimonial-modal-text h5 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 20px;
}

.testimonial-modal-text .role {
    color: var(--neutral-gray);
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.testimonial-modal-text .quote {
    font-style: italic;
    position: relative;
    padding: 20px 0;
}

.testimonial-modal-text .quote::before {
    content: '"';
    font-size: 4em;
    color: var(--kinesky-blue);
    position: absolute;
    top: -10px;
    left: -20px;
    opacity: 0.2;
}

/* 3D Slider Controls */
.slider-3d-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 15;
}

.control-btn {
    width: 70px;
    height: 70px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.1)
    );
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--kinesky-blue), 
        var(--kinesky-orange), 
        var(--cosmestetic-green),
        var(--kinesky-blue)
    );
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 3s linear infinite;
}

.control-btn:hover::before {
    opacity: 0.8;
}

.control-btn:hover {
    background: linear-gradient(135deg, 
        rgba(1, 1, 128, 0.8), 
        rgba(255, 127, 0, 0.8)
    );
    color: white;
    transform: scale(1.15) translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.control-btn:active {
    transform: scale(1.05) translateY(-2px);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .testimonials-mobile {
        max-width: 500px;
    }
    
    .testimonial-mobile-item {
        padding: 40px;
    }
    
    .testimonial-avatar {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-text p {
        font-size: 18px;
    }
    
    .testimonial-author h5 {
        font-size: 20px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .testimonials-3d-slider {
        height: 800px;
        perspective: 2200px;
        perspective-origin: center 35%;
    }
    
    .slider-3d-container::before {
        width: 700px;
        height: 700px;
    }
    
    .slider-3d-container::after {
        width: 500px;
        height: 500px;
    }
    
    .carousel-3d {
        width: 600px;
        height: 600px;
        transform: rotateX(-15deg) rotateY(0deg);
    }
    
    .testimonial-3d-item {
        width: 140px;
        height: 140px;
    }
    
    .testimonial-3d-item:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(320px) rotateY(0deg); }
    .testimonial-3d-item:nth-child(2) { transform: translate(-50%, -50%) rotateY(45deg) translateZ(320px) rotateY(-45deg); }
    .testimonial-3d-item:nth-child(3) { transform: translate(-50%, -50%) rotateY(90deg) translateZ(320px) rotateY(-90deg); }
    .testimonial-3d-item:nth-child(4) { transform: translate(-50%, -50%) rotateY(135deg) translateZ(320px) rotateY(-135deg); }
    .testimonial-3d-item:nth-child(5) { transform: translate(-50%, -50%) rotateY(180deg) translateZ(320px) rotateY(-180deg); }
    .testimonial-3d-item:nth-child(6) { transform: translate(-50%, -50%) rotateY(225deg) translateZ(320px) rotateY(-225deg); }
    .testimonial-3d-item:nth-child(7) { transform: translate(-50%, -50%) rotateY(270deg) translateZ(320px) rotateY(-270deg); }
    .testimonial-3d-item:nth-child(8) { transform: translate(-50%, -50%) rotateY(315deg) translateZ(320px) rotateY(-315deg); }
    
    .testimonial-3d-item.active {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(380px);
    }
    
    .testimonial-modal {
        width: 650px;
        bottom: -120px;
    }
    
    .testimonial-modal.active {
        bottom: -150px;
    }
    
    .control-btn {
        width: 80px;
        height: 80px;
        font-size: 26px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .testimonials-3d-slider {
        height: 900px;
        perspective: 2500px;
        perspective-origin: center 30%;
    }
    
    .slider-3d-container::before {
        width: 800px;
        height: 800px;
    }
    
    .slider-3d-container::after {
        width: 600px;
        height: 600px;
    }
    
    .carousel-3d {
        width: 700px;
        height: 700px;
        transform: rotateX(-20deg) rotateY(0deg);
    }
    
    .testimonial-3d-item {
        width: 160px;
        height: 160px;
    }
    
    .testimonial-3d-item:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(380px) rotateY(0deg); }
    .testimonial-3d-item:nth-child(2) { transform: translate(-50%, -50%) rotateY(45deg) translateZ(380px) rotateY(-45deg); }
    .testimonial-3d-item:nth-child(3) { transform: translate(-50%, -50%) rotateY(90deg) translateZ(380px) rotateY(-90deg); }
    .testimonial-3d-item:nth-child(4) { transform: translate(-50%, -50%) rotateY(135deg) translateZ(380px) rotateY(-135deg); }
    .testimonial-3d-item:nth-child(5) { transform: translate(-50%, -50%) rotateY(180deg) translateZ(380px) rotateY(-180deg); }
    .testimonial-3d-item:nth-child(6) { transform: translate(-50%, -50%) rotateY(225deg) translateZ(380px) rotateY(-225deg); }
    .testimonial-3d-item:nth-child(7) { transform: translate(-50%, -50%) rotateY(270deg) translateZ(380px) rotateY(-270deg); }
    .testimonial-3d-item:nth-child(8) { transform: translate(-50%, -50%) rotateY(315deg) translateZ(380px) rotateY(-315deg); }
    
    .testimonial-3d-item.active {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(450px);
    }
    
    .testimonial-modal {
        width: 700px;
    }
    
    .control-btn {
        width: 90px;
        height: 90px;
        font-size: 28px;
    }
}

/****************************************************** */
/**************** 07. Services Section  *************** */
/****************************************************** */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section .section-title {
    position: relative;
    z-index: 2;
}

.services-section:after {
    position: absolute;
    content: '';
    height: calc(100% - 240px);
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.service-item {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 28px 20px;
    border-bottom: 2px solid;
}

.service-item > i {
    height: 118px;
    width: 118px;
    display: inline-block;
    margin-bottom: 40px;
    border-radius: 50%;
    line-height: 118px;
    font-size: 65px;
}

.service-item h4 {
    margin-bottom: 25px;
}

.service-angle {
    position: absolute;
    left: 0;
    top: 5%;
    transform: translateX(-70%);
}

.service-angle img {
    animation: down-up 10s infinite linear;
}

.service-ellipse {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -35%);
}

.what-experct-img {
    height: 100%;
    min-height: 400px;
    background: url('../images/services/service-man.png') center/cover;
}

.what-experct-content {
    padding: 55px 90px 55px 85px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.what-experct-content * {
    position: relative;
    z-index: 2;
}

.what-experct-content:after {
    content: '';
    background: url(../images/services/cicle.png) no-repeat right top;
    position: absolute;
    height: 74%;
    width: 58%;
    right: 0;
    bottom: 0;
}

.what-experct-content h3 {
    font-size: 32px;
    line-height: 42px;
}

.what-experct-content p {
    color: #222222;
    margin: 25px 0;
}

/* New Holo Service Cards */
.services-section-kinesky {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-section-cosmetic {
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 50%, #ccffcc 100%);
    position: relative;
    overflow: hidden;
}

/* Wave Background Effect */
.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 139, 34, 0.1), transparent);
    animation: wave-flow 8s ease-in-out infinite;
    border-radius: 50% 50% 0 0;
}

.wave1 {
    animation-delay: 0s;
    background: linear-gradient(90deg, transparent, rgba(34, 139, 34, 0.08), transparent);
    transform: translateY(20px);
}

.wave2 {
    animation-delay: 2s;
    background: linear-gradient(90deg, transparent, rgba(60, 179, 113, 0.06), transparent);
    transform: translateY(40px);
}

.wave3 {
    animation-delay: 4s;
    background: linear-gradient(90deg, transparent, rgba(144, 238, 144, 0.04), transparent);
    transform: translateY(60px);
}

@keyframes wave-flow {
    0% {
        transform: translateX(-100%) rotateZ(0deg);
    }
    50% {
        transform: translateX(-50%) rotateZ(180deg);
    }
    100% {
        transform: translateX(0%) rotateZ(360deg);
    }
}

.service-card-holo {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-card-holo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 75%
    );
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card-holo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 0, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(1, 1, 128, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 127, 0, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card-holo:hover::before {
    left: 100%;
}

.service-card-holo:hover::after {
    opacity: 1;
}

.service-card-holo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(255, 127, 0, 0.1),
        0 5px 15px rgba(1, 1, 128, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.6);
}



.card-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 48px;
    color: #ff7f00;
    background: linear-gradient(135deg, #ff7f00 0%, #ff9933 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 127, 0, 0.2));
    transition: all 0.3s ease;
}



.service-card-holo:hover .card-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(255, 127, 0, 0.4));
    background: linear-gradient(135deg, #ff7f00 0%, #010180 50%, #ff9933 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.service-card-holo h4 {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card-holo:hover h4 {
    color: #ff7f00;
}

.service-card-holo p {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-card-holo:hover p {
    color: #555;
}

/* Cosmetic Section Cards */
.service-card-holo.cosmetic {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.service-card-holo.cosmetic::before {
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(144, 238, 144, 0.2) 50%,
        transparent 75%
    );
}

.service-card-holo.cosmetic::after {
    background: linear-gradient(
        135deg,
        rgba(34, 139, 34, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(60, 179, 113, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(144, 238, 144, 0.05) 100%
    );
}

.service-card-holo.cosmetic:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(34, 139, 34, 0.15),
        0 5px 15px rgba(144, 238, 144, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(144, 238, 144, 0.3);
}

.service-card-holo.cosmetic .card-icon i {
    color: #228b22;
    background: linear-gradient(135deg, #228b22 0%, #90ee90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(34, 139, 34, 0.2));
}

.service-card-holo.cosmetic:hover .card-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(34, 139, 34, 0.4));
    background: linear-gradient(135deg, #228b22 0%, #3cb371 50%, #90ee90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-holo.cosmetic:hover h4 {
    color: #228b22;
}

.services-section-cosmetic .container {
    position: relative;
    z-index: 2;
}

/* IV Cosmetic Watermark Logo */
.section-title {
    position: relative;
}

.iv-cosmetic-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.iv-cosmetic-watermark img {
    height: 350px;
    width: auto;
    filter: grayscale(80%) brightness(1.2) contrast(0.8);
}

.title-content {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 30px 40px;
    margin: 0 auto;
    max-width: 800px;
}

.title-content h2 {
    margin-bottom: 25px;
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.9),
        -1px -1px 2px rgba(255, 255, 255, 0.7),
        0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.title-content p {
    margin-bottom: 15px;
    text-shadow: 
        1px 1px 3px rgba(255, 255, 255, 0.8),
        -1px -1px 1px rgba(255, 255, 255, 0.6),
        0 0 8px rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.title-content p:last-child {
    margin-bottom: 0;
}

/* Hover effect en la sección */
.services-section-cosmetic:hover .iv-cosmetic-watermark {
    opacity: 0.25;
}

/* Responsive Watermark */
@media (max-width: 1199px) {
    .iv-cosmetic-watermark img {
        height: 300px;
    }
    
    .title-content {
        padding: 25px 35px;
        max-width: 700px;
    }
}

@media (max-width: 991px) {
    .iv-cosmetic-watermark img {
        height: 250px;
    }
    
    .title-content {
        padding: 20px 30px;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .iv-cosmetic-watermark img {
        height: 150px;
    }
    
    .title-content {
        padding: 18px 25px;
        margin: 0 15px;
    }
    
    .title-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .iv-cosmetic-watermark img {
        height: 120px;
    }
    
    .title-content {
        padding: 15px 20px;
        margin: 0 10px;
    }
    
    .title-content h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .title-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Location Section Styles - Premium Design */
.location-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8ff 50%, #e8f5ff 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(1,1,128,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.location-info {
    position: relative;
    z-index: 2;
}

.location-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(1, 1, 128, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(1, 1, 128, 0.1);
    border-color: rgba(1, 1, 128, 0.2);
}

.location-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--kinesky-blue), #0a0a9a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(1, 1, 128, 0.3);
}

.location-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--kinesky-orange), var(--kinesky-orange-light));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover .location-icon::after {
    opacity: 1;
}

.location-icon i {
    color: white;
    font-size: 24px;
    position: relative;
    z-index: 3;
}

.location-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.location-content h4 {
    color: var(--kinesky-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

.location-content p a {
    color: var(--kinesky-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-content p a:hover {
    color: var(--kinesky-orange);
}

.location-content .closed {
    color: #999;
    font-style: italic;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.location-btn {
    background: linear-gradient(135deg, var(--kinesky-blue), #0a0a9a);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(1, 1, 128, 0.3);
    border: 2px solid transparent;
}

.location-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 1, 128, 0.4);
    background: linear-gradient(135deg, var(--kinesky-orange), var(--kinesky-orange-light));
    color: white;
    text-decoration: none;
}

.location-btn-secondary {
    background: linear-gradient(135deg, #25D366, #20b555);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.location-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20b555, #1a9e4a);
    color: white;
    text-decoration: none;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(1, 1, 128, 0.1);
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(1, 1, 128, 0.1) 0%, 
        rgba(255, 127, 0, 0.05) 50%, 
        rgba(1, 1, 128, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.map-info h5 {
    color: var(--kinesky-blue);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 991px) {
    .location-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .location-icon i {
        font-size: 20px;
    }
    
    .location-content h4 {
        font-size: 16px;
    }
    
    .location-actions {
        justify-content: center;
        margin-top: 25px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .location-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .location-icon {
        margin: 0 auto 15px;
    }
    
    .location-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .location-btn,
    .location-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Floating Social Buttons */
.floating-social {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
    opacity: 0.95;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    opacity: 1;
}

.floating-btn:hover .floating-label {
    transform: translateX(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-btn i { 
    font-size: 24px;
    position: relative;
    z-index: 2;
}

/* WhatsApp Buttons con identificación */
.floating-btn.whatsapp { 
    background: #25D366; 
}

.floating-btn.whatsapp.kinesky {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn.whatsapp.cosmetic {
    background: linear-gradient(135deg, #25D366 0%, #34B7F1 100%);
}

/* Label flotante - Siempre visible */
.floating-label {
    position: absolute;
    right: 62px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-btn.whatsapp.kinesky .floating-label {
    background: linear-gradient(135deg, #010180 0%, #ff7f00 100%);
}

.floating-btn.whatsapp.cosmetic .floating-label {
    background: linear-gradient(135deg, #04451b 0%, #ff7f00 100%);
}

@media (max-width: 768px) {
    .floating-label {
        font-size: 11px;
        padding: 6px 12px;
        right: 58px;
    }
}

@media (max-width: 576px) {
    .floating-btn { 
        width: 50px; 
        height: 50px; 
    }
    .floating-btn i { 
        font-size: 22px; 
    }
    .floating-social { 
        right: 16px; 
        bottom: 16px; 
        gap: 10px; 
    }
    .floating-label {
        font-size: 10px;
        padding: 5px 10px;
        right: 54px;
    }
}


/* FAQ Accordion Styles */
.faq-category {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.faq-category-header h3 {
    color: #ff7f00;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.1), rgba(255, 127, 0, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(255, 127, 0, 0.2);
}

.faq-category-header.cosmetic h3 {
    color: #228b22;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1), rgba(34, 139, 34, 0.05));
    border: 1px solid rgba(34, 139, 34, 0.2);
}

.faq-category-header.general h3 {
    color: #2c5aa0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(44, 90, 160, 0.05));
    border: 1px solid rgba(44, 90, 160, 0.2);
}

.faq-category-header i {
    margin-right: 10px;
    font-size: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    background: #f8f9fa;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: #e9ecef;
    color: #ff7f00;
}

.faq-question.active {
    background: linear-gradient(135deg, #ff7f00, #ff9933);
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.faq-question.active.cosmetic {
    background: linear-gradient(135deg, #228b22, #3cb371);
}

.faq-question.active.general {
    background: linear-gradient(135deg, #2c5aa0, #4682b4);
}

.faq-question span {
    flex: 1;
    margin-right: 15px;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    min-width: 14px;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.active {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.5;
}

.faq-answer strong {
    color: #ff7f00;
    font-weight: 600;
}

/* Responsive Design para tarjetas holo */
@media (max-width: 1199px) {
    .service-card-holo {
        height: 300px;
        padding: 25px 15px;
    }
    
    .card-icon i {
        font-size: 42px;
    }
    
    .service-card-holo h4 {
        font-size: 17px;
    }
    
    .faq-category {
        padding: 25px 20px;
    }
    
    .faq-category-header h3 {
        font-size: 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .service-card-holo {
        height: 380px;
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .card-icon i {
        font-size: 48px;
    }
    
    .service-card-holo h4 {
        font-size: 22px;
        margin: 15px 0;
        line-height: 1.3;
    }
    
    .service-card-holo p {
        font-size: 17px;
        line-height: 1.5;
    }
}

@media (max-width: 767px) {
    .services-section-kinesky .section-title h2,
    .services-section-cosmetic .section-title h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .services-section-kinesky .section-title p,
    .services-section-cosmetic .section-title p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .service-card-holo {
        height: 340px;
        padding: 22px 18px;
        margin-bottom: 20px;
    }
    
    .card-icon {
        margin-bottom: 15px;
    }
    
    .card-icon i {
        font-size: 45px;
    }
    
    .service-card-holo h4 {
        font-size: 21px;
        margin: 12px 0;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .service-card-holo p {
        font-size: 16px;
        line-height: 1.4;
        font-weight: 500;
    }
    
    .service-card-holo:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

@media (max-width: 576px) {
    .service-card-holo {
        height: 320px;
        padding: 22px 18px;
        border-radius: 15px;
    }
    
    .card-icon i {
        font-size: 42px;
    }
    
    .service-card-holo h4 {
        font-size: 20px;
        margin: 12px 0;
        line-height: 1.2;
        font-weight: 700;
    }
    
    .service-card-holo p {
        font-size: 15px;
        line-height: 1.4;
        font-weight: 500;
    }
}

/****************************************************** */
/**************** 08. Service Details  **************** */
/****************************************************** */
.sp-video-conten h2,
.sp-right-content h2,
.sp-right-content h4,
.sp-video-conten p,
.sp-right-content p {
    margin-bottom: 30px;
}

.sp-video {
    padding: 60px;
}

.sp-video img,
.sp-right-content img {
    width: 100%;
}

.document-links a {
    display: flex;
    color: #171928;
    background: #FFFFFF;
    margin-bottom: 20px;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 700;
    align-items: center;
}

.document-links a i {
    margin-right: 20px;
    color: var(--kinesky-orange-light);
    font-weight: 400;
    font-size: 25px;
    transition: 0.5s;
}

.document-links a:hover {
    background: var(--kinesky-orange-light);
    color: #FFFFFF;
}

.document-links a:hover i {
    color: #FFFFFF;
}

.video-img {
    position: relative;
}

.video-img .video-play {
    height: 73px;
    width: 73px;
    position: absolute;
    background: var(--kinesky-orange-light);
    text-align: center;
    line-height: 73px;
    color: #FFFFFF;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-img .video-play:after {
    position: absolute;
    height: 92px;
    width: 92px;
    top: -10px;
    left: -10px;
    border-radius: 50%;
    animation: rotated 20s infinite linear;
    content: url('../images/services/video-roteted.png');
}

/****************************************************** */
/**************** 09. Pricing Section  **************** */
/****************************************************** */
.price-item {
    text-align: center;
    margin-bottom: 30px;
}

.price-image {
    margin-bottom: 10px;
}

.price-image img {
    width: 100%;
}

.pricing-content {
    padding-bottom: 60px;
}

.price-circle {
    height: 165px;
    width: 165px;
    border-radius: 50%;
    position: relative;
    margin-bottom: -15px;
    display: inline-flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.price-circle:after {
    position: absolute;
    content: '';
    height: calc(100% + 25px);
    width: calc(100% + 25px);
    left: -12.5px;
    top: -12.5px;
    z-index: -1;
    border-radius: 50%;
    border: 1px dashed;
}

.price-circle p {
    margin-bottom: 10px;
}

.price-circle h3 {
    font-size: 35px;
    margin-bottom: 0;
}

.pricing-content ul {
    margin-bottom: 70px;
    border-top: 1px dashed;
}

.pricing-content li {
    border-bottom: 1px dashed;
    padding: 13px;
}

/****************************************************** */
/***************** 10. Beauty Section  **************** */
/****************************************************** */
.beauty-section {
    background: url('../images/beauty/beauty-bg.png') center 20%/cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Mejoras del parallax para móviles */
@media (max-width: 768px) {
    .beauty-section {
        background-attachment: scroll;
        background-position: center 20%;
        background-size: cover;
    }
}

/* Fallback para navegadores que no soporten background-attachment: fixed */
@supports not (background-attachment: fixed) {
    .beauty-section {
        background-attachment: scroll;
    }
}

.beauty-content p {
    margin: 30px 0 35px;
}

.beauty-image {
    position: relative;
    display: inline-block;
}

.beauty-image:after {
    position: absolute;
    content: '';
    height: 72%;
    width: 72%;
    left: 14%;
    top: 14%;
    background: var(--kinesky-orange-light);
    transform: rotate(60deg);
}

.beauty-image img {
    position: relative;
    width: 100%;
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/****************************************************** */
/**************** 11. Gallery Section  **************** */
/****************************************************** */
.gallery-item {
    margin-bottom: 30px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Hover effect para las imágenes */
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-hover {
    position: absolute;
    height: calc(100% - 30px);
    width: calc(100% - 50px);
    background: var(--kinesky-orange-light);
    left: 25px;
    top: 20px;
    opacity: 0;
    display: flex;
    transition: 0.5s;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-popup-link {
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    background: #FFFFFF;
    border-radius: 50%;
    color: var(--kinesky-orange-light);
    font-size: 20px;
}

.gallery-hover h4 {
    margin-top: 25px;
}

img.mfp-img {
    padding-bottom: 25px;
}

/* Responsive gallery adjustments */
@media (max-width: 1200px) {
    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-item img {
        height: 180px;
    }
    
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .gallery-hover {
        height: calc(100% - 20px);
        width: calc(100% - 30px);
        left: 15px;
        top: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-item img {
        height: 150px;
    }
}

/****************************************************** */
/****************** 12. Team Section  ***************** */
/****************************************************** */
.team-section.bg-two {
    background: linear-gradient(135deg, rgba(1, 1, 128, 0.04) 0%, rgba(255, 127, 0, 0.05) 100%);
}
.team-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.team-item img {
    border: 0;
    transition: 0.35s ease;
    margin-bottom: 20px;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
}

.team-item:hover img {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.team-item:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: conic-gradient(var(--kinesky-orange) 0 120deg, #ffd6a6 0 200deg, var(--kinesky-blue) 0 360deg);
    opacity: 0.22;
    filter: blur(0.2px);
}

.row.justify-content-center {
    position: relative;
}

@media (min-width: 992px) {
    .row.justify-content-center:after {
        content: '';
        position: absolute;
        top: -10px;
        bottom: -10px;
        left: 50%;
        width: 1px;
        background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.08), rgba(0,0,0,0));
    }
}

.team-item h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
    position: relative;
    z-index: 1;
}

.team-item h5:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 3px;
    background: var(--kinesky-orange);
}

.team-item p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.team-item {
    background: #fff;
    padding: 25px 20px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Team chips, KPIs, and CTAs */
.team-chips {
    margin: 12px auto 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.team-chips .chip {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f3f5;
    color: #444;
    border: 1px solid #e5e7eb;
}

.team-kpis {
    margin: 8px 0 12px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-kpis .kpi {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
    background: #fafafa;
    border: 1px solid #eee;
    padding: 6px 10px;
    border-radius: 10px;
}

.team-kpis .kpi i { color: var(--kinesky-orange-light); }

.team-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
}

.btn-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-mini.wa { background: #25D366; }
.btn-mini.ig { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }

.btn-mini:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.18); }

@media (max-width: 767px) {
    .team-chips { gap: 6px; }
    .team-chips .chip { font-size: 11px; padding: 5px 9px; }
    .team-kpis { gap: 8px; }
    .team-kpis .kpi { font-size: 11px; padding: 5px 8px; }
    .btn-mini { font-size: 12px; padding: 7px 10px; }
}

/* Acentos por persona (col 1 = Ingrid, col 2 = Dany) */
.team-section .row.justify-content-center > div:nth-child(1) .team-item:before {
    background: conic-gradient(var(--cosmestetic-green) 0 140deg, #bfe8cf 0 210deg, var(--kinesky-blue) 0 360deg);
}

.team-section .row.justify-content-center > div:nth-child(2) .team-item:before {
    background: conic-gradient(var(--kinesky-blue) 0 140deg, #a9befe 0 210deg, var(--kinesky-orange) 0 360deg);
}

.team-section .row.justify-content-center > div:nth-child(1) .team-item h5:after {
    background: var(--cosmestetic-green);
}

.team-section .row.justify-content-center > div:nth-child(2) .team-item h5:after {
    background: var(--kinesky-blue);
}

@media (max-width: 991px) {
    .team-item img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .team-item {
        padding: 22px 18px 24px;
        border-radius: 14px;
    }
    .team-item img {
        width: 170px;
        height: 170px;
        margin-bottom: 15px;
    }
    .team-item h5 {
        font-size: 20px;
    }
    .team-item p {
        font-size: 14px;
    }
}

.owl-carousel.team-carousel .owl-nav {
    text-align: center;
    margin-top: 65px;
}

.owl-carousel.team-carousel.style-two .team-item img:hover {
    padding: 0;
    border: 0;
}

.owl-carousel.team-carousel.style-two .owl-nav {
    position: absolute;
    right: 0;
    top: -200px;
    z-index: 5;
    margin-top: 0;
}

.owl-carousel.team-carousel .owl-nav button {
    font-size: 30px;
    height: 100px;
    width: 100px;
    color: #222222;
    transition: 0.5s;
    text-align: center;
    background-color: #fff2f2;
}

.owl-carousel.team-carousel.style-two .owl-nav button {
    background-color: #FFFFFF;
}

.owl-carousel.team-carousel .owl-nav button.owl-prev {
    margin-right: 10px;
}

.owl-carousel.team-carousel .owl-nav button:hover {
    color: #FFFFFF;
    background-color: var(--kinesky-orange-light);
}

/****************************************************** */
/***************** 13. Team Profile  ****************** */
/****************************************************** */
.porfile-image {
    position: relative;
}

.porfile-image img {
    width: 100%;
}

.download-bio a {
    display: flex;
    color: #FFFFFF;
    background: var(--kinesky-orange-light);
    margin-bottom: 20px;
    padding: 28px;
    font-size: 22px;
    font-weight: 700;
    justify-content: center;
}

.download-bio a i {
    font-size: 30px;
    font-weight: 400;
    margin-right: 25px;
}

.experience {
    position: absolute;
    left: 30px;
    bottom: 30px;
    height: 230px;
    width: 230px;
    display: flex;
    flex-flow: column;
    padding: 25px;
    z-index: 1;
}

.experience:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    background: rgba(255, 159, 51, 0.8);
}

.experience:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 10px;
    height: 100%;
    width: 100%;
    z-index: -2;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    background: rgba(255, 255, 255, 0.8);
}

.experience h3 {
    margin-top: auto;
    font-size: 35px;
}

.profile-name {
    font-size: 32px;
}

.profile-desi {
    color: var(--kinesky-orange-light);
}

.profile-details h6 {
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 27px;
}

.profile-details p {
    margin-bottom: 25px;
}

.profile-details .divider {
    height: 6px;
}

.icon-list li {
    width: 50%;
    font-size: 20px;
    margin-bottom: 10px;
}

.icon-list {
    display: flex;
    flex-wrap: wrap;
}

.icon-list li i {
    width: 40px;
    height: 40px;
    color: var(--kinesky-orange-light);
    line-height: 40px;
    margin-right: 30px;
    text-align: center;
    background: var(--kinesky-orange-pale);
    display: inline-block;
}

/****************************************************** */
/************** 14. Testimonial Section  ************** */
/****************************************************** */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-image {
    margin-right: 20px;
    position: relative;
    display: inline-block;
}

.testimonial-image:after {
    position: absolute;
    content: '';
    height: 72%;
    width: 72%;
    left: 14%;
    top: 14%;
    background: #FFFFFF;
    transform: rotate(60deg);
}

.testimonial-image img {
    position: relative;
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.testimonial-content {
    margin-left: 80px;
    padding-bottom: 80px;
}

.testimonial-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #524e4e;
    margin-bottom: 35px;
}

.testimonial-content span {
    color: #524e4e;
}

.testimonial-wrap .owl-dots {
    position: absolute;
    left: calc(40% + 110px);
    bottom: 55px;
}

.testimonial-wrap .owl-dots button {
    height: 8px;
    width: 44px;
    transition: 0.5s;
    margin-right: 10px;
    background: #FFFFFF;
}

.testimonial-wrap .owl-dots button.active {
    background: #222222;
}

.testimonial-dotted {
    position: absolute;
    left: 0;
    top: 0;
}

.testimonial-angle {
    position: absolute;
    bottom: -12%;
    right: 0;
    width: 16%;
    animation: down-up 10s infinite linear;
}

.testimonial-quote {
    position: absolute;
    left: 52%;
    top: 22%;
    width: 15%;
}

/****************************************************** */
/***************** 15. Client Section  **************** */
/****************************************************** */
.client-section {
    position: relative;
}

.client-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -50px;
}

.client-item {
    margin: 0 52px 50px;
}

.client-dotted {
    position: absolute;
    left: 0;
    top: 0;
    width: 22%;
}

.client-angle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16%;
    animation: down-up 10s infinite linear;
}


/****************************************************** */
/**************** 16. Vission Mission  **************** */
/****************************************************** */
.vission-mission {
    padding: 60px 55px 60px 65px;
    height: 100%;
}

.vission-mission h3 {
    font-size: 40px;
    margin-bottom: 40px;
}

.vission-mission p,
.vission-mission h6 {
    margin-bottom: 25px;
}

.mission h6 {
    line-height: 27px;
}

/****************************************************** */
/****************** 17. Contact Page  ***************** */
/****************************************************** */
/*contact info*/
.contact-info-item {
    display: flex;
    padding: 30px 40px;
    background: #fff2f2;
    margin-bottom: 30px;
    align-items: center;
    transition: 0.5s;
}

.contact-info-item:hover {
    background: var(--kinesky-orange-light);
    color: #FFFFFF;
}

.contact-info-icon {
    position: relative;
    margin-right: 30px;
    display: inline-block;
}

.contact-info-icon i {
    height: 72px;
    width: 72px;
    line-height: 72px;
    background: #FFFFFF;
    text-align: center;
    color: var(--kinesky-orange-light);
    font-size: 22px;
    transition: 0.5s;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.contact-info-item:hover .contact-info-icon i {
    transform: rotate(45deg);
}

.contact-info-icon i:before {
    transition: 0.5s;
    display: inline-block;
}

.contact-info-item:hover .contact-info-icon i:before {
    transform: rotate(-45deg);
}

.contact-info-icon:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.5;
    background: #ffcc99;
    transform: rotate(0deg);
}

.contact-info-item:hover .contact-info-icon:after {
    opacity: 1;
    transform: rotate(30deg);
}

.info-content span {
    display: block;
    font-size: 20px;
    margin: 10px 0;
}

/*contact form*/
.contact-form-inner {
    background: #fff6f6;
    padding: 100px;
    border-bottom: 10px solid;
    border-color: var(--kinesky-orange-light);
    transform: translateY(250px);
    margin-top: -180px;
    position: relative;
    z-index: 888;
}

.contact-map {
    height: 820px;
}

.leaflet-control-attribution.leaflet-control {
    display: none;
}

/****************************************************** */
/***************** 18. Error Section  ***************** */
/****************************************************** */
.error-images {
    display: inline-block;
    position: relative;
    padding: 50px;
}

.error-images img {
    position: relative;
    z-index: 2;
}

.error-dots:before {
    position: absolute;
    content: '';
    background: url('../images/error/error-dot3.png') no-repeat center/cover;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: rotated 35s infinite linear;
}

.error-dots:after {
    position: absolute;
    content: '';
    height: 56%;
    width: 56%;
    left: 22%;
    top: 22%;
    z-index: 1;
    background: #FAE2E2;
    transform: rotate(-30deg);
}

.error-images:before {
    position: absolute;
    content: '';
    background: url('../images/error/error-dot2.png') no-repeat center/cover;
    height: calc(100% - 100px);
    width: calc(100% - 100px);
    left: 50px;
    top: 50px;
    animation: rotated-reverse 45s infinite linear;
}

.error-images:after {
    position: absolute;
    content: '';
    background: url('../images/error/error-dot1.png') no-repeat center/cover;
    height: calc(100% - 180px);
    width: calc(100% - 180px);
    left: 90px;
    top: 90px;
    animation: rotated 55s infinite linear;
}

.error-content h1 {
    color: var(--kinesky-orange-light);
    font-size: 230px;
    text-shadow: 10px 10px #fef4f3;
}

.error-content h5 {
    font-size: 25px;
    margin-bottom: 50px;
}

.error-content h5 span {
    font-weight: 400;
}

/****************************************************** */
/***************** 19. Footer Section  **************** */
/****************************************************** */
.footer-section {
    background: #fff6f6;
    position: relative;
}

.widget {
    z-index: 2;
    position: relative;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 25px;
    margin-bottom: 50px;
}

/*about widget*/
.about-widget-contact {
    border-left: 5px solid;
    border-color: var(--kinesky-orange-light);
    padding: 10px 0 10px 30px;
}

.about-widget-contact p {
    margin-bottom: 25px;
}

.about-widget-contact h4 a {
    color: var(--kinesky-orange-light);
    font-size: 23px;
}

/*subscribe widget*/
.subscribe-widget form {
    background: #FFFFFF;
    padding: 50px 45px 50px 50px;
    border-left: 5px solid;
    border-color: var(--kinesky-orange-light);
}

.subscribe-widget form input {
    width: 100%;
    color: #FFFFFF;
    background: var(--kinesky-orange-light);
    padding: 16px 30px;
    margin-bottom: 20px;
}

.subscribe-widget form input::placeholder {
    color: #FFFFFF;
}

.btn-and-text {
    display: flex;
    align-items: center;
}

.btn-and-text button {
    height: 60px;
    width: 60px;
    flex: none;
    color: #FFFFFF;
    cursor: pointer;
    margin-right: 28px;
    background: #222222;
}

.btn-and-text p {
    margin: 0;
}

/*copyright*/
.copyright {
    z-index: 2;
    padding: 20px 0;
    position: relative;
    background: #ffecec;
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright p {
    margin: 0;
}

.footer-dotted-top {
    position: absolute;
    left: 0;
    top: 0;
}

.footer-dotted-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
}

