/* ===================================== */
/* RESET Y CONFIGURACIÓN BASE */
/* ===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

.yellowtail-regular {
    font-family: "Yellowtail", cursive;
    font-weight: 400;
    font-style: normal;
}

/* ===================================== */
/* PRELOADER */
/* ===================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInScale 0.8s ease-out;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid #ff4757;
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1);
}

.preloader-text {
    text-align: center;
}

.preloader-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #fcad79 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.preloader-subtitle {
    font-size: 1rem;
    color: #f0cf5a;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.preloader-loader {
    width: 200px;
    height: 4px;
    background: rgba(255, 71, 87, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #fcad79 0%, #ff4757 50%, #fcad79 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
}

.preloader-dots {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.preloader-dot {
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.preloader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===================================== */
/* NAVEGACIÓN */
/* ===================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 206, 98, 0.16);
    backdrop-filter: blur(10px);
    padding: 0.6rem 4%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #ff4757;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
    transition: all 0.3s;
}

.logo-circle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(255, 71, 87, 0.8);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
	font-weight: bold;
}

.nav-links a:hover {
    color: #e74c3c;
}

.btn-subscribe {
    background: #e74c3c;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #e74c3c;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background: transparent;
    color: #e74c3c;
}

.contact-button {
    background: linear-gradient(135deg, #fcad79 0%, #ff4757 100%);
    border: none;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.contact-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.contact-button svg {
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===================================== */
/* HERO SECTION */
/* ===================================== */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: transform;
}

.hero-video[poster] {
    background-image: url(https://res.cloudinary.com/dliredzt9/image/upload/w_1920,q_auto,f_auto/v1761670613/fondo_nunc1k.avif);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.91), rgba(233, 20, 41, 0.49));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.logo-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #f0cf5a;
    letter-spacing: 3px;
    margin-top: 10px;
    padding: 0 6rem;
    font-weight: 700;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-shadow: 2px 2px 20px #e74c3c;
    margin: 0;
}

.hero-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding: 0 2rem;
    width: 100%;
    max-width: 400px;
}

.hero-btn {
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, #fcad79 0%, #ff4757 100%);
    color: #fff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 71, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
}

.hero-btn svg {
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* ===================================== */
/* ABOUT SECTION */
/* ===================================== */

.about {
    padding: 100px 5%;
    background: url('https://res.cloudinary.com/dliredzt9/image/upload/v1762462484/fondo2_sgszhb.jpg') center/cover no-repeat;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 29, 18, 0.84);
    z-index: 0;
}

.about > * {
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.3);
    transition: transform 0.5s;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: filter 0.5s;
}

.about-image:hover img {
    filter: brightness(1.1);
}

.about-content h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e74c3c;
}

.about-content .quote {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e74c3c;
    border-radius: 20px;
	padding: 1.5rem;
}

.about-content p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
/************Servicios*************/
 /* Títulos */
.titulo-servicio {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin: 0.6rem 0 0.8rem;
  line-height: 1.1;
  padding-top:36px;
  text-transform: uppercase;
    background: linear-gradient(135deg, #ea7f39 0%, #ffdfe2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Párrafos */
.texto-servicio {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0.4rem 0 1.2rem;
  letter-spacing: 0.2px;
  border-radius:10px;
}



/* ===================================== */
/* BANNER SECTION */
/* ===================================== */

.banner {
    position: relative;
    padding: 80px 5%;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg-1 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('https://res.cloudinary.com/dliredzt9/image/upload/v1762462484/fondo1_sawcfo.jpg') center/cover no-repeat;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

.banner-bg-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(182 179 56 / 44%) 0%, rgb(137 128 36 / 25%) 100%);
    z-index: 1;
}



.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h3 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.3rem;
     color: #fff6f6;
    line-height: 1.6;
    letter-spacing: 1px;
	 font-weight: bold;
}

/* ===================================== */
/* SERVICIO SECTION */
/* ===================================== */

.servicio {
    padding: 100px 5%;
    background: url('https://res.cloudinary.com/dliredzt9/image/upload/v1762462484/fondo2_sgszhb.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.servicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(10 10 10 / 67%) 0%, rgb(206 189 0) 100%);
    z-index: 0;
}

.servicio-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.servicio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.servicio-header h2 {
    font-size: 4rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ea7f39 0%, #ffdfe2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
	font-weight: 900;
}

.servicio-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #fcad79 0%, #ff4757 100%);
    border-radius: 2px;
}

.servicio-subtitle {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 2rem;
   
}

.servicio-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.servicio-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.servicio-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #f6ecec;
    margin-bottom: 0;
   }

.servicio-text p:first-child {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.servicio-video-wrapper {
    position: relative;
    width: 100%;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 600px;
    width: 100%;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 71, 87, 0.6);
}

.servicio-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.servicio-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 71, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #e74c3c;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fcad79 0%, #ff4757 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.feature-item p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================== */
/* GALERÍA SECTION */
/* ===================================== */
.galeria {
 
    padding: 100px 5%;
    background: url('https://res.cloudinary.com/dliredzt9/image/upload/v1762460481/img-video_v00o3s.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(135deg, #000000d4 0%, rgb(10 10 9) 100%);
    z-index: 0;
}


.galeria-container h2 {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
    color: #262626;
}

.galeria-subtitle {
    text-align: center;
    color: #8e8e8e;
    margin-bottom: 40px;
    font-size: 14px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-bottom: 63px;
}

.galeria-item {
    position: relative;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ff4757;
    border-radius: 8px;
    overflow: hidden;
}

.galeria-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.galeria-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-image img {
    transform: scale(1.05);
}

.galeria-info {
    padding: 16px;
    background: #000000;
    text-align: center;
}

.galeria-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #e0dcdc;
    margin-bottom: 4px;
}

.galeria-info p {
    font-size: 14px;
    color: #d0cccc;
    margin-bottom: 12px;
}

.galeria-overlay {
    display: none;
}

.btn-ver-mas {
    padding: 18px 38px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-ver-mas:hover {
    background: #f0cf5a;
}

.btn-ver-mas svg {
    width: 16px;
    height: 16px;
}

/* ===================================== */
/* LIGHTBOX */
/* ===================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e74c3c;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1002;
    border-radius: 50%;
}

.lightbox-nav:hover {
    background: #e5b564;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    display: flex;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://res.cloudinary.com/dliredzt9/image/upload/v1762545778/sobre-mi-logo-detail-barras_nm1lup_wk2nq8.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 60%;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-info {
    flex: 1;
    padding: 40px;
    background: #e74c3c;
    overflow-y: auto;
    max-width: 40%;
}

.lightbox-info h3 {
    font-size: 24px;
    font-weightfont-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.lightbox-subtitle {
    font-size: 14px;
    color: #e8e8e8;
    margin-bottom: 20px;
}

.lightbox-description {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
}

.lightbox-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #efefef;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: snow;
    font-size: 14px;
}

.detail-item svg {
    color: #fff;
}

/* ===================================== */
/* TESTIMONIOS SECTION */
/* ===================================== */

.testimonios {
    padding: 100px 5%;
    background: #0a0a0a;
    overflow: hidden;
}

.testimonios-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonios h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.testimonios h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
}

.testimonios-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonios-track {
    display: flex;
    gap: 2rem;
	    animation: scroll 100s 
linear infinite;
}

.testimonios-track:hover {
    animation-play-state: paused;
}

.testimonio-card {
    min-width: 350px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.testimonio-card:hover {
    transform: translateY(-10px);
    border-color: #e74c3c;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.testimonio-stars {
    color: #f0cf5a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonio-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fcad79 0%, #ff4757 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.author-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #e74c3c;
    font-size: 0.85rem;
}

/* ===================================== */
/* FAQ SECTION */
/* ===================================== */

.faq {
    padding: 100px 5%;
    background: url('https://res.cloudinary.com/dliredzt9/image/upload/v1762462484/fondo1_sawcfo.jpg') center/cover no-repeat fixed;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(140 118 3 / 84%);
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.title {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
	text-align: center;
}



.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #e74c3c;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #e74c3c;
}

.faq-icon {
    font-size: 2rem;
    color: #e74c3c;
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
}

/* ===================================== */
/* WHATSAPP CTA SECTION */
/* ===================================== */

.whatsapp-cta {
    padding: 120px 5%;
    background: url(https://res.cloudinary.com/dliredzt9/image/upload/w_1920,q_auto,f_auto/v1761670618/sobre-mi-logo-detail-barras_nm1lup.avif) center top/cover no-repeat;
    position: relative;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 75%);
    z-index: 0;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    padding: 0 4rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: #ff4757;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-8px) scale(1.05);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

.cta-note {
    margin-top: 2rem;
    font-size: 1rem;
}

/* ===================================== */
/* FORM SECTION */
/* ===================================== */

.contact-form {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(51, 51, 51, 0.5);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: rgba(10, 10, 10, 0.8);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: #e74c3c;
    background: rgba(26, 26, 26, 0.95);
    padding: 0 0.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* ===================================== */
/* INFO ITEMS */
/* ===================================== */

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(34, 34, 34, 0.9);
    border-color: #e74c3c;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #e74c3c;
}

.info-text p {
    color: #ccc;
    font-size: 0.95rem;
}

/* ===================================== */
/* SOCIAL LINKS */
/* ===================================== */

.social-links {
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    color: #e74c3c;
    transform: translateY(-3px);
}

.social-icons-contact {
    display: flex;
    gap: 1rem;
}

.social-icons-contact a {
    width: 45px;
    height: 45px;
    background: rgba(34, 34, 34, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-contact a:hover {
    background: #e74c3c;
    transform: translateY(-5px);
    border-color: #e74c3c;
}

.social-icons-contact svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* ===================================== */
/* FOOTER */
/* ===================================== */

footer {
    background: #000;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-weight: normal;
}

footer p {
    color: #666;
}

footer .social-icons {
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-item h3.titulo-modulobarra {
 padding-top:16px;
}

/* ===================================== */
/* WHATSAPP FLOAT BUTTON */
/* ===================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: ripple 2s infinite;
    z-index: -1;
}

.tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

/* ===================================== */
/* KEYFRAMES ANIMATIONS */
/* ===================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 6 - 2rem * 6));
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes loading {
    0% {
        width: 0;
        background-position: 0% 50%;
    }
    50% {
        width: 100%;
        background-position: 100% 50%;
    }
    100% {
        width: 100%;
        background-position: 200% 50%;
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}




/* ===================================== */
/* MEDIA QUERIES - RESPONSIVE */
/* ===================================== */

@media (min-width: 768px) {
    .logo-hero-container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-text {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero .subtitle {
        padding: 0;
    }
    
    .hero-mobile-buttons {
        display: none;
    }

}

@media (max-width: 1024px) {
    .servicio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .video-container {
        height: 600px;
    }
    
    .servicio-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 900px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(252, 71, 86, 0.9);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
        padding: 0 2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 300px;
    }
    
    .banner {
        padding: 60px 5%;
        min-height: 200px;
    }
    
    .banner-content h3 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .servicio {
        padding: 80px 5%;
    }
    
    .servicio-header h2 {
        font-size: 2.2rem;
    }
    
    .servicio-subtitle {
        font-size: 1.1rem;
    }
	
	 .servicio-text h2 {
        text-align: center;
    }
    
    .servicio-text p {
        font-size: 1rem;
        text-align: center;
    }
	
   .video-container {
        height: 600px;
    }
    
    .servicio-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    

    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content > p {
        padding: 0 1rem;
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .tooltip {
        display: none;
    }
	.feature-item h3.titulo-modulobarra {
 padding-top:0px;
 
}
}

@media (max-width: 640px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .galeria-subtitle {
        font-size: 12px;
    }
    
    .lightbox-content {
        flex-direction: column;
        width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-image-container {
        max-width: 100%;
        max-height: 35vh;
    }
    
    .lightbox-image-container img {
        max-height: 35vh;
    }
    
    .lightbox-info {
        max-width: 100%;
        padding: 20px;
        max-height: 35vh;
    }
    
    .lightbox-info h3 {
        font-size: 20px;
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 24px;
        top: 200px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}