  *{margin: 0; padding: 0;}
    :root {
    --gold: #c5a059;
    --dark: #0a0a0a;
    --white: #ffffff;
    --gray: #b0b0b0;
    --gold-light: #f2c16b;
    --bg-dark: #05070d;
    --card-bg: rgba(10, 10, 12, 0.92);
    --border: rgba(216, 162, 75, 0.65);
    --white: #ffffff;
    --text: rgba(255,255,255,0.82);
}


.cnt a:first-child {
    border: inherit;
}
.cnt a {
    font-size: 17px;
    border-left: 2px solid var(--color1);
    padding: 1px 19px;
    display: inline-block;
    font-weight: 300;
}

.hero-section {
    position: relative;
    background-image: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.2)), url('images/slider11.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 2rem 5%;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.ti-verified-by.ti-verified-by-row{display: none !important;}



/* Contenedor principal del botón */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  
  /* Aplicación de la animación infinita */
  animation: floatWave 3.5s ease-in-out infinite;
}

/* Tamaño del icono SVG */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

/* Notificación flotante (Badge) */
.whatsapp-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background-color: #ff4757;
  border-radius: 50%;
  border: 2px solid #25D366;
}

/* Efectos Hover y Active */
.whatsapp-floating-btn:hover {
  background-color: #20ba5a;
  box-shadow: 0 12px 30px rgba(32, 186, 90, 0.4);
}

.whatsapp-floating-btn:hover .whatsapp-icon {
  transform: scale(1.1);
}

.whatsapp-floating-btn:active {
  transform: scale(0.95);
}

/* --- Animación Infinita Minimalista y Orgánica --- */
@keyframes floatWave {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  }
  50% {
    /* Sube suavemente y simula un leve cambio de escala "blandito" */
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.45);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  }
}

/* Optimización para dispositivos móviles */
@media (max-width: 768px) {
  .whatsapp-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}


/* Header & Nav */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    transition: 0.3s;
}

.main-nav li.active a {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
}

/* Main Content */
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: flex-end;
    flex-grow: 1;
    padding-bottom: 4rem;
    padding: 70px 0px;
}

.badge {
    border: 1px solid var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
}
h1,h2,h3,h4,h5{font-family: 'Times New Roman'; font-weight: 400;}

.hidden {
    display: none;
    opacity: 0;
}



.show {
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
    margin-top: 10px;
    list-style-type: none; /* Quita los puntos si prefieres */
    padding-left: 0;
        position: absolute;
	margin-left: -1px;
    top: 0;
    height: 100%;
    background: #151414;
    padding: 10px 15px 0px 0px;
}

.show li {
    margin-bottom: 6px;
    color: #ffffffd1; font-family: 'Lato';font-size: 13px;
}
.show h3{color: #9e7d3d; font-weight: 700;}



h1 {
    font-size: 47px;
    margin: 1.5rem 0;
    color: var(--gold);
    line-height: 1.1;
    font-weight: 400;
    max-width: 700px;
}

.hero-section p, .hero-section li{
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-section li{margin-left: 25px; margin-bottom: 4px;}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #c5a059 0%, #9e7d3d 100%);
    color: #000;
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

/* Stats */
.stats-grid {
    display: flex;
    justify-content: space-around;
    background: rgb(0 0 0 / 7%);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item h3 {
    color: var(--gold);
    font-size: 2rem;
    margin: 0;
}

.stat-item p {
    font-size: 0.8rem;
    margin: 0;
}

.status-indicator {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 10px #4CAF50;
}

.trust-indicators {
    font-size: 0.85rem;
    display: flex;
    gap: 20px;
    color: var(--gray);
}
.authority-section {
    background: url('images/ban3.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 5%;
    text-align: center;
    color: var(--white);
    font-family: 'Segoe UI', sans-serif;
}

.header-content {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

.sb-title{margin: 20px 0px 30px;}

h2 {
    
    font-size: 29.7px;
    margin: 10px 0;
    line-height: 1.2;
}

.highlight {
    color: var(--gold);
}

.section-description {
    color: var(--gray);
    font-size: 1.2rem;
}

/* Cards Layout */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 15px;
    padding: 23px 23px 20px 51px;
    width: 288px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.icon-wrapper {
   
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    position: absolute;
        left: -28px;
       margin-top: 10px;
}

.card-text h3 {
    color: var(--gold);
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Media Section */
.media-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--gray);
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: default;
}

.logo-box:hover {
    border-color: var(--gold);
    color: var(--white);
    background: rgba(197, 160, 89, 0.05);
}


.folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Efecto Carpeta / Folder */
.folder-shape {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 0 15px 15px 15px;
    /* Creamos la muesca del folder usando clip-path */
    clip-path: polygon(0% 15%, 25% 15%, 30% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding-top: 40px; /* Espacio para la muesca */
    transition: all 0.4s ease;
}

.folder-card:hover .folder-shape {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-5px);
}

.card-body {
    padding: 30px;
    text-align: left;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.quote {
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.desc {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.footer-note {
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(0,0,0,0.5);
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    font-size: 0.9rem;
    color: #d0d0d0;
}

.footer-note i {
    color: var(--gold);
}




.services-section {
    position: relative;
    overflow: hidden;
    padding: 90px 20px 70px;
    background:
        linear-gradient(to right, rgba(3, 5, 12, 0.674), rgba(3, 5, 12, 0.271)),
        url('images/sec03.jpg') center center/cover no-repeat;
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left, rgba(255,140,0,0.12), transparent 30%),
        radial-gradient(circle at center, rgba(255,180,80,0.08), transparent 25%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1.8px;

}

.section-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 18px;
    max-width: 100%;
}

.section-header h1 span {
    color: var(--gold-light);
}

.section-header p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    max-width: 760px;
    margin: auto;
}

.line {
    width: 170px;
    height: 2px;
    margin: 26px auto 0;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    position: relative;
    display: flex;
    gap: 22px;
    padding: 34px 28px;
    background: #151414;
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: 0.35s ease;
    overflow: hidden;
}


.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-light);
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

.icon-box {
    min-width: 29px;
    width:29px;
    height:29px;
    border-radius: 50%;
   
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 10px;
    font-size: 24px;
   
}

.card-content h3 {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Lato', serif;
}

.card-content h4 {
    color: var(--gold-light);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-family: 'Lato', serif;
    font-weight: 600;
}

.card-content p {
    color: var(--text);
    line-height: 1.7;
    font-size: 12px;
    margin-bottom: 20px;
    font-family: 'Lato', serif;
}

.card-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gold-light);
    font-weight: 500;
    transition: .3s ease;
    font-family: 'Lato', serif;
}

.card-content a:hover {
    gap: 16px;
}

.bottom-text {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,.92);
    text-align: center;
}

.bottom-text i {
    color: var(--gold-light);
    font-size: 20px;
}

.bottom-text p {
    font-size: 17px;
    line-height: 1.7;
}

.why-us-section {
    background: linear-gradient(to right, #0a0a0a 40%, rgb(10 10 10 / 0%)), url(images/sec9.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}
.why-us-section h2{font-size: 32px;}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.subtitle {
    color: #c5a059;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}



.gold-text { color: #c5a059; }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 41px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #c5a059, transparent);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.number-box {
    border: 1px solid #c5a059;
    padding: 5px 10px;
    font-size: 0.9rem;
    color: #c5a059;
    background: #0a0a0a;
    z-index: 2;
}

.icon-box {
    font-size: 1.5rem;
    color: #c5a059;
    min-width: 30px;
}

.text-box h3 {
    font-size: 1.1rem;
    margin: 0 0 5px;
}

.text-box p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.videox img{display: block;}

/* Quote Card */
.quote-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.main-quote {
    font-size: 14px;
    line-height: 1.6;
    border-left: 3px solid #c5a059;
    padding-left: 20px;
    margin: 0 0 30px;
}

.quote-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-logo { height: 50px; }

.founder-text strong {
    display: block;
    color: #fff;
}

.founder-text span {
    font-size: 0.8rem;
    color: #c5a059;
}
.social-proof {
    position: relative;
    background: url('images/sec04.jpg') no-repeat center center;
    background-size: cover;
    padding: 49px 0;
    color: #fff;
    overflow: hidden;
}

.overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Oscurece el fondo sec4.jpg */
    z-index: 1;
}

.social-proof .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #c5a059;
    font-size: 12px;
    letter-spacing: 3px;
}

.section-header h2 {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    margin: 15px 0;
}

.header-line {
    width: 80px;
    height: 2px;
    background: radial-gradient(circle, #c5a059 0%, transparent 100%);
    margin: 0 auto;
}

/* Grid de Testimonios */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card, .ti-widget.ti-goog .ti-review-item>.ti-inner{
	
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.9)) !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
	
    border-radius: 15px !important;
    padding: 35px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover {
    border-color: #c5a059;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #c5a059;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.quote-icon {
    font-size: 1.5rem;
    color: rgba(197, 160, 89, 0.5);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 30px;
}

/* Info del Cliente */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;

}

.avatar-circle {
    width: 45px;
    height: 45px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.client-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.client-details span {
    font-size: 0.8rem;
    color: #888;
}
.cta-final-section {
    position: relative;
    background: url('images/sec05.jpg') no-repeat center center;
    background-size: cover;
    padding: 65px 0;
    text-align: center;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Degradado radial para oscurecer el centro y dejar ver un poco más a los lados */
    background: radial-gradient(circle, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-subtitle {
    color: #c5a059;
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.highlight {
    color: #c5a059;
}

.cta-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Botón Estilo Iura Lex */
.btn-main-gold {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #c5a059 0%, #9e7d3d 100%);
    color: #1a1a1a;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-main-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
    filter: brightness(1.1);
}

.arrow {
    font-size: 1.3rem;
}

/* Trust Features */
.trust-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.feature i {
    color: #c5a059;
}


.team-section {
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.505), rgba(10, 10, 10, 0)), url('images/bann2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    line-height: 1.2;
}

.gold-text { color: #c5a059; }

.carousel-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.team-grid {
        display: flex;
    justify-content: center;
    column-gap: 91px;
    row-gap: 39px;
    flex-wrap: wrap;
}
.specialist-card{    width: 40%;
    padding: 20px;
    border: 1px solid #262626;
    border-radius: 53px;}

/* Marcos de Imágenes */
.image-frame {
    position: relative;
    border-radius: 25px;
    /**overflow: hidden;
    aspect-ratio: 3/1;**/
    margin-bottom: 25px;
    text-align: center;
}

.image-frame img {
    width: 217px;
    height: auto;
    object-fit: cover;
    display: block; margin: 0 auto;
}

/* Info del Especialista */
.specialist-info h3 {
    font-family: 'Georgia', serif;
    color: #c5a059;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bio {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    font-family: 'Lato';
}

.highlight-text {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    font-family: 'Lato';
    line-height: 1.6;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    padding-top: 15px;
}

/* Flechas de Navegación */
.nav-arrow {
    background: none;
    border: none;
    color: #c5a059;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.nav-arrow:hover {
    transform: scale(1.2);
    color: #fff;
}
.faq-section {
    background: linear-gradient(rgba(10, 10, 10, 0.638), rgba(10, 10, 10, 0.507)), url('images/sec07.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}



/* Header & Underline */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    margin: 15px 0 10px;
}

.underline-glow {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.6);
}

/* Accordion Styles */

.accordion{max-width: 1000px; margin: 0 auto;}
.accordion details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.accordion details[open] {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.05);
}

summary {
    padding: 25px 30px;
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

/* Icon (Plus/Minus) */
.icon::before {
    content: '+';
    color: #c5a059;
    font-size: 1.5rem;
}

details[open] .icon::before {
    content: '—';
}

/* Content Area */
.content {
    padding: 0 30px 30px;
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}
.main-footer {
    background: #0a0a0a url('sec8.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 0 0 0; /* Espacio para el contenido superior */
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 50px;
    padding: 0 20px 60px 20px;
}

.footer-column h3 {
    color: #c5a059;
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d1d1;
}

/* Grilla de Servicios */


.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-column ul li a {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #c5a059;
}

/* Columna de Contacto */
.contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d1d1;
}

.contact i {
    color: #c5a059;
    width: 20px;
}

.hours {
    margin-top: 20px;
    font-weight: bold;
    color: #c5a059 !important;
}

/* Barra inferior dorada */
.footer-bottom {
    background: linear-gradient(90deg, #9e7d3d 0%, #c5a059 50%, #9e7d3d 100%);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .services-grid {
        justify-content: center;
    }
    .contact ul li {
        justify-content: center;
    }
}

















/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h1 {
        font-size: 50px;
    }
}
/* Responsive */
@media (max-width: 992px) {
    .content-grid { grid-template-columns: 1fr; }
    .why-us-section { background: #0a0a0a; }
    h2 { font-size: 2rem; }
}

/* Responsive */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: 1fr 1fr; }
}



@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .nav-arrow { display: none; } /* Ocultar flechas en móvil para scroll natural */
     .faq-header h2 { font-size: 2rem; }
    summary { font-size: 1rem; padding: 20px; }
    .section-header h2 { font-size: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    h2 { font-size: 2.2rem; }
    .cta-description { font-size: 1rem; }
    .trust-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
	.specialist-card{width: 100%; max-width: 554px}
    .services-section {
        padding: 70px 18px 60px;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-header h1 {
        font-size: 42px;
    }

    .section-header p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-card {
        flex-direction: column;
        padding: 30px 24px;
    }

    .icon-box {
        width: 58px;
        height: 58px;
    }

    .card-content h3 {
        font-size: 22px;
    }

    .card-content h4 {
        font-size: 18px;
    }

    .bottom-text {
        flex-direction: column;
    }
     h2 { font-size: 1rem; }
    h1{font-size: 30px;}
    .btn{  padding: 12px 13px; font-size: 11px;}
    .icon-wrapper{left: -15px;}
    .feature-card { width: 100%; }
    .hero-content{display: block; padding-top: 0px;}
    .stats-grid{margin-top: 30px;}
    .cnt a{display: none;}
    .cnt a.movil{display: block;}
    .container{padding: 0px 4%;}
}

@media (max-width: 480px) {

    .section-header h1 {
        font-size: 34px;
    }

    .subtitle {
        font-size: 11px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }

    .bottom-text p {
        font-size: 15px;
    }
}

