/* ===================================== */
/* VARIABLES GLOBALES Y ESTILOS BASE */
/* ===================================== */
:root {
  --color-primary: #0c2326; /* Azul oscuro */
  --color-secondary: #1a2428; /* Gris oscuro */
  --color-accent: #43a195; /* Dorado */
  --color-white: #ffffff;
  --color-light-gray: #f8f9fa;
  --color-medium-gray: #555;
  --color-info: #4fcaff;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Verde WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff; /* Ícono blanco */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: pulse 1.5s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.15);
    background-color: #1ebe57; /* Verde más oscuro al pasar mouse */
}

/* Animación de pulso */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
* {
  box-sizing: border-box;
}
               .cta-btn {
                  background: #c19a6b;
                  color: var(--color-primary);
                  padding: 10px 25px;
                  border-radius: 30px;
                  font-weight: 600;
                  transition: all 0.3s;
                  text-decoration: none;}
                          .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        /* Slides */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease, transform 0.8s ease, filter 0.8s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
            filter: blur(8px);
            z-index: 1;
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
            z-index: 2;
        }
        
        .slide.active .bg-image {
            transform: scale(1.1);
        }
        
        /* Contenedor de imagen de fondo para el efecto de zoom */
        .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 8s ease;
            z-index: -1;
        }
        
        /* Overlay para mejorar legibilidad del texto */
        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
            z-index: 1;
        }
        
        /* Contenido del slide */
        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease 0.5s;
            text-shadow: 2px 2px 8px rgb(0 0 0);
            color: #dcaf79!important;

        }
        
        .slide.active .slide-content h2 {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            font-weight: 300;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.8s;
        }
        
        .slide.active .slide-content p {
            opacity: 1;
            transform: translateY(0);
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: #43a195;
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
           /* opacity: 0;*/
            transform: translateY(20px);
            transition: all 0.8s ease 1.1s;
        }
        
        .slide.active .btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .btn:hover {
            background: #c49b6a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* Navegación */
        .slider-nav {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: white;
            transform: scale(1.3);
        }
        
        /* Flechas de navegación */
        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
            transform: translateY(-50%);
        }
        
        .arrow {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .arrow i {
            color: white;
            font-size: 1.8rem;
        }
        
        /* Indicador de número de slide */
        .slide-counter {
            position: absolute;
            bottom: 40px;
            right: 40px;
            color: white;
            z-index: 10;
            font-size: 1rem;
            letter-spacing: 2px;
        }
        
        /* Efecto de recorte de texto */
        .text-clip {
            background: linear-gradient(45deg, #f3e5f5, #e3f2fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .slide-content h2 {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content h2 {
                font-size: 2.8rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 12px 30px;
            }
            
            .arrow {
                width: 50px;
                height: 50px;
            }
            
            .slide-counter {
                bottom: 90px;
                right: 50%;
                transform: translateX(50%);
            }
        }
        
        @media (max-width: 480px) {
            .slide-content h2 {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
            
            .slider-nav {
                bottom: 25px;
            }
            
            .arrow {
                width: 45px;
                height: 45px;
            }
            
            .arrow i {
                font-size: 1.5rem;
            }
            
            .slide-counter {
                font-size: 0.9rem;
            }
        }
        .slide-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border-radius: 3px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.slide-brand {
    display: block;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: 400;
}
body {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: white;
}

a {
  text-decoration: none;
  transition: all .5s ease;
}

a:hover {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.full {
  width: 100%;
  float: left;
  margin: 0;
}

.text_align_center {
  text-align: center;
}

.white_font {
  color: var(--color-white) !important;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.layout_padding {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-description {
  font-size: 1.1rem;
  color: var(--color-medium-gray);
 /* max-width: 600px; */
}

/* ===================================== */
/* ESTILOS DE UTILIDAD           */
/* ===================================== */
.margin_top_30 {
  margin-top: 30px;
}

.small-container {
  width: 95%;
  margin: 0 auto;
}

.overlay {
  background-color: rgba(0, 0, 0, .51);
  width: 100%;
  height: 100%;
}

.violet-overlay {
  background-color: rgba(189, 140, 191, .51);
  width: 100%;
  height: 100%;
  padding: 70px 0;
}

.white-overlay {
  background-color: rgba(255, 255, 255, .7);
  height: 100%;
  width: 100%;
}

.blue_bt {
  background: var(--color-accent) !important;
  color: var(--color-primary) !important;
  border: none;
  font-size: 20px;
  font-weight: 300;
  padding: 10px 40px;
  line-height: normal;
}

.blue_bt:hover {
  background: var(--color-white) !important;
  color: var(--color-primary) !important;
}

.cta-btn {
  background: var(--color-accent) !important;
  color: #fff !important;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--color-white) !important;
  color: #43a195 !important;
}

.outline-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}

/* ===================================== */
/* ANIMACIONES                 */
/* ===================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(193, 154, 107, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(193, 154, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 154, 107, 0); }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-zoom {
  animation: fadeInZoom 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s !important; }

[data-animate] {
  opacity: 0;
}

/* ===================================== */
/* ESTILOS DE HEADER Y NAVBAR          */
/* ===================================== */
header {
  position: relative;
  background-image: url(../imgs/header.png);
  background-size: cover;
  color: var(--color-white);
}

.header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

nav.navbar {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: var(--color-primary);
  min-height: 95px;
}

.navbar-light .navbar-toggler {
  background: var(--color-accent) !important;
  width: 50px;
  height: 45px;
  padding: 0;
  border: none;
  border-color: rgba(193, 154, 107, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(193, 154, 107, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 18px;
  font-weight: 300;
  padding: 0 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #43a195 !important;
}

.img-personalizada {
  max-width: 196px !important;
  height: auto;
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(12, 35, 38, 0.98);
  }
  .navbar ul {
    background-color: #424242;
  }
  .navbar ul li {
    margin: 10px 0;
  }
}

/* Responsive Logo */
@media (min-width: 992px) and (max-width: 1199px) {
  .img-personalizada {
    max-width: 109px !important;
  }
}

@media (min-width: 2000px) {
  .img-personalizada {
    max-width: 200px !important;
  }
}

/* ===================================== */
/* ESTILOS DEL SLIDER            */
/* ===================================== */
.slider {
  position: relative;
}

.ovarlay_slide_cont {
  background: rgba(12, 35, 38, 0.7);
  position: absolute;
  width: 60%;
  margin: 0 15%;
  z-index: 1111111111;
  top: 135px;
  left: 0;
  padding: 50px 60px 70px;
}

.ovarlay_slide_cont h2 {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 70px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.ovarlay_slide_cont p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0 0 30px 0;
  font-size: 21px;
  padding: 0 75px 0 0;
  line-height: 28px;
}

/* Indicadores y controles del carrusel */
.carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
  background-color: var(--color-accent);
}

.carousel-control-icon {
  background: rgba(193, 154, 107, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-icon i {
  color: var(--color-primary);
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
  background: rgba(193, 154, 107, 1);
}

/* Responsive Slider */
@media (max-width: 767px) {
  .ovarlay_slide_cont {
    display: none;
  }
}

/* ===================================== */
/* ESTILOS SECCIÓN ABOUT           */
/* ===================================== */
.about-section {
  background-color: var(--color-light-gray);
  padding: 100px 0;
  position: relative;
}

.about-content {
  padding-right: 30px;
}

.about-text {
  color: var(--color-medium-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(193, 154, 107, 0.1);
  padding: 12px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(193, 154, 107, 0.2);
  transform: translateY(-3px);
}

.feature-item i {
  color: var(--color-accent);
  margin-right: 10px;
  font-size: 1.2rem;
}

.feature-item span {
  color: var(--color-primary);
  font-weight: 500;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(12, 35, 38, 0.9);
  color: var(--color-white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 120px;
}

.years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  display: block;
  margin-top: 5px;
}

/* Responsive About */
@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }
  .about-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .about-features {
    gap: 15px;
  }
  .feature-item {
    padding: 10px 15px;
  }
  .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px;
    min-width: 100px;
  }
  .years {
    font-size: 2rem;
  }
}

/* ===================================== */
/* ESTILOS SECCIÓN SERVICIOS         */
/* ===================================== */
.services-section {
  padding: 100px 0;
  background-color: var(--color-light-gray);
}

.service-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 35, 38, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 25px;
}

.service-content h4 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.service-features i {
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 4px;
}

/* Tarjeta CTA especial */
.service-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.service-cta h4 {
  color: var(--color-white);
}

.service-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.service-cta .cta-btn {
  background: var(--color-accent);
  color: var(--color-white);
}

.service-cta .cta-btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
}

/* Responsive Servicios */
@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .service-image {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
  .service-content {
    padding: 20px;
  }
}

/* ===================================== */
/* ESTILOS SECCIÓN PROCESO           */
/* ===================================== */
.process-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.process-steps {
  position: relative;
}

.step-card {
  background: #243136;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.step-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step-card:hover .step-image img {
  transform: scale(1.05);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content {
  padding: 25px;
  position: relative;
}

.step-title {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.step-features li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-size: 0.9rem;
  position: relative;
  padding-left: 25px;
}

.step-features i {
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 0.9rem;
}

/* Responsive Proceso */
@media (max-width: 991px) {
  .process-section {
    padding: 80px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .step-image {
    height: 200px;
  }
  .step-features {
    display: none;
  }
}

/* ===================================== */
/* ESTILOS SECCIÓN TESTIMONIOS       */
/* ===================================== */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(193, 154, 107, 0.2);
  transition: all 0.5s ease;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 154, 107, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.client-rating {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 25px;
  letter-spacing: 5px;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 30px;
  font-weight: 300;
}

.client-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.client-name {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.client-position {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.testimonials-cta .cta-btn {
  background: var(--color-accent);
  color: var(--color-secondary);
  border: 2px solid var(--color-accent);
}

.testimonials-cta .cta-btn:hover {
  background: transparent;
  color: var(--color-accent);
}

/* Efecto de comillas */
.testimonial-card::before,
.testimonial-card::after {
  content: '"';
  position: absolute;
  font-size: 100px;
  color: rgba(193, 154, 107, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card::before {
  top: 20px;
  left: 30px;
}

.testimonial-card::after {
  bottom: 0;
  right: 30px;
}

/* ESTILOS ADICIONALES DEL ARCHIVO ORIGINAL */
.testimonial_blog {
  background: #a1a1a1;
  width: 100%;
  padding: 30px 30px;
  box-shadow: 10px 10px 0 0 #4fcaff;
}

.testimonial_blog p:first-child {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* ===================================== */
/* ESTILOS SECCIÓN CONTACTO Y SUSCRIPCIÓN */
/* ===================================== */
.quick-consult-section {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.consult-features {
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.feature-item i {
  color: var(--color-accent);
  margin-right: 10px;
  font-size: 1.2rem;
}

.consult-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.consult-option {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.consult-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.consult-option i {
  font-size: 1.8rem;
  margin-right: 20px;
  width: 50px;
  text-align: center;
}

.consult-option h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.consult-option p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.whatsapp-option i { color: #25D366; }
.phone-option i { color: var(--color-accent); }
.email-option i { color: var(--color-secondary); }

.whatsapp-option:hover { border-left: 4px solid #25D366; }
.phone-option:hover { border-left: 4px solid var(--color-accent); }
.email-option:hover { border-left: 4px solid var(--color-secondary); }

/* Formulario de Contacto */
.contact-form {
  padding: 35px 40px;
  background: var(--color-info);
  min-height: 600px;
  margin-top: 20px;
}

.contact-form form input {
  margin: 10px 0;
}

#contact img {
  margin-top: 30px;
}

/* Formulario de Suscripción */
.subcribe form {
  height: auto;
  background: var(--color-white);
  margin-top: 20px;
  padding: 0;
  font-weight: 300;
  font-size: 19px;
  display: block;
}

.subcribe form input {
  margin: 0;
  padding: 20px 30px;
}

/* ===================================== */
/* ESTILOS FOOTER                 */
/* ===================================== */
footer {
  display: block;
  overflow: hidden;
  background-color: var(--color-primary);
  padding: 90px 0 0;
  text-align: center;
}

footer, footer a {
  color: var(--color-white);
}

footer a:hover {
  color: var(--color-accent);
}

.footer-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.footer-image:hover img {
  transform: scale(1.03);
}

.contact-info span {
  display: inline-block;
  line-height: 1.6;
}

.social-links a.twitter {
  color: #1DA1F2;
}

.social-links a.youtube {
  color: #FF0000;
}

.contact-info li {
  align-items: center;
}

.copyright {
  padding: 15px 0 16px;
  border-top: solid #10d0e7 1px;
  margin-top: 30px;
}
       .cta-btn {
            background: var(--color-accent);
            color: var(--color-primary);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }