/* Estilos específicos para la página de Contacto */
@import url('/assets/css/base-page-styles.css');

/* Hero Section */
.hero {
  background: url('./img/photos/contactanos.webp') no-repeat center center/cover;
  height: 100vh;
  min-height: 500px;
  margin-bottom: 4rem;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1rem 2rem 2.25rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.20);
  backdrop-filter: saturate(140%) blur(2px);
  border-radius: 12px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  line-height: 1.1;
  margin-bottom: .75rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: #fff;
  text-shadow:
    0 2px 6px rgba(0,0,0,.45),
    0 8px 22px rgba(0,0,0,.35),
    0 16px 32px rgba(0,0,0,.25);
}

.hero p {
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  margin: 0 auto;
  max-width: 60ch;
  color: #fff;
  opacity: .98;
  text-shadow:
    0 1px 2px rgba(0,0,0,.42),
    0 4px 12px rgba(0,0,0,.28);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(7, 30, 27, 0.8) 0%, rgba(7, 30, 27, 0.6) 100%);
  z-index: 1;
}

/* Sección de Contacto */
.contacto-seccion {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Tarjeta de Redirección al Formulario */
.formulario-redirect-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formulario-redirect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.card-imagen {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.card-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.formulario-redirect-card:hover .card-imagen img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.card-contenido {
  padding: 2.5rem;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 107, 92, 0.2);
}

.card-badge svg {
  flex-shrink: 0;
}

.card-contenido h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.card-descripcion {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.card-beneficios {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.beneficio-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.beneficio-item svg {
  flex-shrink: 0;
  color: var(--primary);
  background: rgba(0, 107, 92, 0.1);
  padding: 0.25rem;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.card-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 107, 92, 0.3);
  margin-bottom: 2rem;
}

.card-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 107, 92, 0.4);
  background: linear-gradient(135deg, #008573 0%, var(--primary) 100%);
}

.card-cta-button svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.card-cta-button:hover svg {
  transform: translateX(5px);
}

.card-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-numero {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-texto {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #dee2e6;
}

.section-header {
  margin-bottom: 2rem;
  text-align: left;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 0 1.5rem;
  border-radius: 3px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Estilos del Formulario */
.form-contacto {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #f9f9f9;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 107, 92, 0.1);
  background-color: white;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.terms {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.terms input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.terms label {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.privacy-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.form-submit {
  margin-top: 2rem;
}

.form-submit .button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit .button svg {
  flex-shrink: 0;
}

.form-mensaje {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 5px;
  display: none;
  text-align: center;
  font-weight: 500;
}

.form-mensaje.exito {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  display: block;
}

.form-mensaje.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
  display: block;
}

.error-message {
  color: #c62828;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

input:invalid + .error-message,
select:invalid + .error-message,
textarea:invalid + .error-message {
  display: block;
}

.form-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

.form-footer-text {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.enlace-cotizacion {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.enlace-cotizacion:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.enlace-destacado {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.enlace-destacado:hover {
  color: var(--primary-dark);
}

/* Estilos para la tarjeta de presentación flotante */
business-card {
  --bc-primary-color: #006B5C;
  --bc-secondary-color: #008573;
  --bc-accent-color: #00A896;
  --bc-text-color: #2c3e50;
  --bc-background: #ffffff;
  --bc-shadow: 0 10px 40px rgba(0, 107, 92, 0.15);
  --bc-border-radius: 16px;
  --bc-transition: all 0.3s ease;
}

business-card::part(card) {
  box-shadow: 0 10px 40px rgba(0, 107, 92, 0.2);
  border-radius: 16px;
  border: 2px solid rgba(0, 107, 92, 0.1);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

business-card::part(header) {
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  padding: 1.5rem;
  border-radius: 14px 14px 0 0;
}

business-card::part(logo) {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  padding: 8px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

business-card::part(brand) {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

business-card::part(subtitle) {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
}

business-card::part(name) {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1rem;
}

business-card::part(role) {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

business-card::part(contact-item) {
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  margin: 0.5rem 0;
}

business-card::part(contact-item):hover {
  background: rgba(0, 107, 92, 0.05);
  transform: translateX(5px);
}

business-card::part(phone),
business-card::part(email) {
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
}

business-card::part(phone):hover,
business-card::part(email):hover {
  color: var(--primary);
}

business-card::part(qr-code) {
  border-radius: 12px;
  padding: 1rem;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

business-card::part(button) {
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 107, 92, 0.3);
}

business-card::part(button):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 107, 92, 0.4);
}

business-card::part(floating-button) {
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  box-shadow: 0 8px 24px rgba(0, 107, 92, 0.3);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}

business-card::part(floating-button):hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 107, 92, 0.4);
}

/* Estilos de la Información de Contacto */
.info-contacto {
  position: relative;
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.info-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contacto-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contacto-icono {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.25rem;
}

.contacto-detalle h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.contacto-detalle p,
.contacto-detalle a {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacto-detalle a:hover {
  color: var(--primary);
}

.redes-sociales h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
}

.redes-lista {
  display: flex;
  gap: 0.75rem;
}

.red-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.red-social:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Mapa */
.mapa-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mapa {
  height: 400px;
  width: 100%;
}

.mapa-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mapa-info h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.mapa-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Preguntas Frecuentes - Diseño Novedoso */
.preguntas-frecuentes {
  margin-top: 6rem;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
}

/* Header del FAQ */
.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header-content {
  max-width: 700px;
  margin: 0 auto;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 107, 92, 0.25);
}

.faq-badge svg {
  flex-shrink: 0;
}

.faq-header-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.faq-header-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grid de Categorías */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-categoria {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-categoria:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.categoria-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.categoria-header svg {
  color: var(--primary);
  flex-shrink: 0;
}

.categoria-header h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
}

/* Acordeón Mejorado */
.acordeon {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acordeon-item {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.acordeon-item:hover {
  border-color: var(--primary);
  background: white;
}

.acordeon-titulo {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.acordeon-titulo:hover {
  color: var(--primary);
}

.acordeon-titulo[aria-expanded="true"] {
  color: var(--primary);
  padding-bottom: 1rem;
}

.pregunta-numero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  color: white;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 107, 92, 0.2);
}

.pregunta-texto {
  flex: 1;
  line-height: 1.4;
}

.acordeon-icono {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.acordeon-icono svg {
  display: block;
}

.acordeon-titulo[aria-expanded="true"] .acordeon-icono {
  transform: rotate(180deg);
}

.acordeon-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
  background: white;
  opacity: 0;
  padding: 0 1.5rem;
}

.acordeon-contenido[aria-hidden="false"] {
  padding: 0 1.5rem 1.5rem;
  max-height: 2000px;
  opacity: 1;
}

.respuesta-contenido {
  padding-top: 0.5rem;
}

.respuesta-contenido p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.respuesta-contenido p:last-child {
  margin-bottom: 0;
}

.lista-beneficios {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.lista-beneficios li {
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: var(--text-muted);
  line-height: 1.6;
}

.lista-beneficios li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.respuesta-destacada {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(0, 107, 92, 0.08) 0%, rgba(0, 107, 92, 0.04) 100%);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  margin-top: 1rem;
}

.respuesta-destacada.success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.04) 100%);
  border-left-color: #22c55e;
}

.respuesta-destacada svg {
  flex-shrink: 0;
  color: var(--primary);
}

.respuesta-destacada.success svg {
  color: #22c55e;
}

.respuesta-destacada span {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tipos-propiedad {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tipo-item {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  color: var(--text-muted);
  line-height: 1.6;
}

.tipo-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.25rem;
}

.timeline-respuesta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.timeline-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  color: white;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 107, 92, 0.25);
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  padding-top: 0.5rem;
}

.timeline-content strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.nota-importante {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: #856404;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.garantias-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.garantia-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 10px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.garantia-item:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.garantia-item strong {
  color: var(--text-dark);
  font-size: 1.05rem;
}

.garantia-item span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Footer del FAQ */
.faq-footer {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, #008573 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 107, 92, 0.2);
}

.faq-footer-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.faq-footer-content svg {
  color: white;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.faq-footer-content h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-footer-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

.faq-cta-button svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-cta-button:hover svg {
  transform: translateX(5px);
}

.preguntas-cta {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.enlace-destacado {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.enlace-destacado:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
  .contacto-grid {
    gap: 2rem;
  }
  
  .mapa-container {
    grid-template-columns: 1fr;
  }
  
  .mapa {
    height: 350px;
  }
  
  .mapa-info {
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .contacto-grid {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    position: static;
    margin-top: 2rem;
  }
  
  .card-imagen {
    height: 240px;
  }
  
  .card-contenido {
    padding: 2rem;
  }
  
  .card-contenido h2 {
    font-size: 1.5rem;
  }
  
  /* FAQ Responsive */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .faq-header-content h2 {
    font-size: 2rem;
  }
  
  .timeline-badge {
    min-width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 40vh;
    min-height: 350px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .info-card {
    padding: 2rem 1.5rem;
  }
  
  .card-imagen {
    height: 200px;
  }
  
  .card-contenido {
    padding: 1.75rem;
  }
  
  .card-contenido h2 {
    font-size: 1.35rem;
  }
  
  .stat-numero {
    font-size: 1.75rem;
  }
  
  .stat-texto {
    font-size: 0.8rem;
  }
  
  /* FAQ Responsive Mobile */
  .preguntas-frecuentes {
    padding: 3rem 1.5rem;
  }
  
  .faq-header-content h2 {
    font-size: 1.75rem;
  }
  
  .faq-header-content p {
    font-size: 1rem;
  }
  
  .faq-categoria {
    padding: 1.25rem;
  }
  
  .categoria-header h3 {
    font-size: 1.1rem;
  }
  
  .acordeon-titulo {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    gap: 0.75rem;
  }
  
  .pregunta-numero {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .acordeon-contenido[aria-hidden="false"] {
    padding: 0 1.25rem 1.25rem;
  }
  
  .timeline-badge {
    min-width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .faq-footer {
    padding: 2rem 1.5rem;
  }
  
  .faq-footer-content h3 {
    font-size: 1.5rem;
  }
  
  .faq-footer-content p {
    font-size: 1rem;
  }
  
  .faq-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .info-card {
    padding: 1.5rem 1.25rem;
  }
  
  .contacto-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .redes-lista {
    justify-content: center;
  }
  
  .preguntas-cta {
    font-size: 1rem;
  }
  
  .card-imagen {
    height: 180px;
  }
  
  .card-contenido {
    padding: 1.5rem;
  }
  
  .card-contenido h2 {
    font-size: 1.25rem;
  }
  
  .card-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }
  
  .card-cta-button {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .card-stats {
    padding: 1.25rem;
  }
  
  .stat-numero {
    font-size: 1.5rem;
  }
  
  .stat-texto {
    font-size: 0.75rem;
  }
}
