body {
  opacity: 1 !important;
  visibility: visible !important;
  background: white !important;
}

/* HERO SECTION CONTACTANOS */
.hero-contactanos {
  position: relative;
  min-height: 50vh;
  background-image: url("../img/hero-slide2.jpg");
  display: flex;
  align-items: center;
  margin: 0;
  padding: 140px 0 60px;
}

.hero-contactanos .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 40px 0;
}

.hero-contactanos .hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-contactanos .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.hero-breadcrumb {
  color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.hero-breadcrumb span {
  color: #007bff;
}

/* INFORMACIÓN DE CONTACTO */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-info-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 123, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 123, 255, 0.05),
      transparent);
  transition: left 0.6s;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 123, 255, 0.2);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-info-card p {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-detail {
  background: rgba(0, 123, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #007bff;
}

.contact-detail strong {
  display: block;
  color: #007bff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-detail span {
  color: #666;
  font-size: 0.9rem;
}

/* FORMULARIO DE CONTACTO */
.form-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.form-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.contact-form .form-control:focus {
  border-color: #007bff;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-form .form-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1.1rem;
}

.contact-form .form-control:focus+.form-icon {
  color: #007bff;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  margin: 25px 0;
}

.form-check-label {
  font-size: 0.9rem;
  color: #666;
}

.form-check-label a {
  color: #007bff;
  text-decoration: none;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

/* MAPA DE UBICACIÓN */
.map-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.map-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: white;
  padding: 40px;
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.map-placeholder h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.map-placeholder p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.map-coordinates {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid #007bff;
}

.location-item i {
  font-size: 1.5rem;
  color: #007bff;
}

.location-item strong {
  display: block;
  color: #333;
  margin-bottom: 5px;
}

.location-item span {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-contactanos {
    padding: 120px 0 40px;
    min-height: 40vh;
  }

  .hero-contactanos .hero-content h1 {
    font-size: 2.2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-container,
  .map-container {
    padding: 30px 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 250px;
  }

  .location-details {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-contactanos .hero-content h1 {
    font-size: 1.8rem;
  }

  .form-title,
  .map-title {
    font-size: 1.6rem;
  }

  .contact-form .form-control {
    padding: 10px 40px 10px 12px;
  }

  .faq-header {
    padding: 20px;
  }

  .faq-header h4 {
    font-size: 1.1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info-card,
.form-container,
.map-container,
.faq-card {
  animation: fadeInUp 0.6s ease forwards;
}

.contact-info-card:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-info-card:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-info-card:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-info-card:nth-child(4) {
  animation-delay: 0.4s;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
  background: linear-gradient(135deg, #2c3e50 0%, #007bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #2c3e50 0%, #007bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.map-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #2c3e50 0%, #007bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.faq-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.4;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-info-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-contactanos .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-contactanos .hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-breadcrumb {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #007bff;
}

.hero-breadcrumb span {
  color: #007bff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .form-title,
  .map-title {
    font-size: 1.7rem;
  }

  .form-subtitle,
  .map-subtitle {
    font-size: 1rem;
  }

  .hero-contactanos .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-contactanos .hero-subtitle {
    font-size: 1.2rem;
  }

  .faq-header h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .form-title,
  .map-title {
    font-size: 1.5rem;
  }

  .hero-contactanos .hero-content h1 {
    font-size: 2rem;
  }

  .hero-contactanos .hero-subtitle {
    font-size: 1.1rem;
  }
}

.section-title,
.section-subtitle,
.section-badge {
  opacity: 0;
  transform: translateY(30px);
  animation: textEntrance 0.8s ease forwards;
}

.section-badge {
  animation-delay: 0.1s;
}

.section-title {
  animation-delay: 0.2s;
}

.section-subtitle {
  animation-delay: 0.3s;
}

@keyframes textEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-header h4 {
  transition: color 0.3s ease;
}

.faq-card:hover .faq-header h4 {
  color: #007bff;
}

.contact-info-card h3 {
  transition: color 0.3s ease;
}

.contact-info-card:hover h3 {
  color: #007bff;
}

.faq-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.faq-content ul {
  color: #555;
  line-height: 1.6;
}

.faq-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-detail strong {
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-detail span {
  font-size: 0.9rem;
  color: #666;
}

.location-item strong {
  font-weight: 600;
  color: #333;
}

.location-item span {
  color: #666;
  font-size: 0.9rem;
}

.btn-submit {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-warning {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-form label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.text-center .section-title,
.text-center .section-subtitle {
  display: block;
  width: 100%;
}

.hero-contactanos .hero-content h1 {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-contactanos .hero-subtitle {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.section-title {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.faq-header h4,
.contact-info-card h3,
.form-title,
.map-title {
  transition: all 0.3s ease;
}

.faq-card:hover .faq-header h4 {
  transform: translateX(5px);
}

.contact-info-card:hover h3 {
  transform: scale(1.05);
}

#info-contacto .section-title,
#formulario-mapa .section-title,
#preguntas-frecuentes .section-title {
  font-family: inherit;
}

.text-center {
  text-align: center !important;
}

section .container>.row.mb-5 {
  margin-bottom: 3rem !important;
}

.section-subtitle {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.hero-contactanos .hero-content {
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .section-title {
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .hero-contactanos .hero-content {
    padding: 1.5rem 0;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.navbar-text.phone-number:hover {
  animation: pulse 2s infinite;
}

.navbar-text.phone-number .new-indicator {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* ===== ESTILOS PARA PREGUNTAS FRECUENTES ===== */
#preguntas-frecuentes {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-accordion {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e9ecef;
  background: #fff;
}

.faq-accordion .accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion .accordion-button {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: none;
  padding: 25px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) i {
  color: white;
}

.faq-accordion .accordion-button:hover {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.faq-accordion .accordion-button:hover i {
  color: white;
}

.faq-accordion .accordion-body {
  padding: 30px;
  background: #fafbfc;
  border-left: 4px solid #007bff;
}

.faq-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.faq-features li {
  padding: 10px 0;
  padding-left: 40px;
  position: relative;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

.faq-features li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-cta {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px dashed #007bff;
}

.faq-cta h4 {
  color: #007bff;
  font-weight: bold;
}

.faq-cta .btn {
  border-radius: 25px;
  padding: 12px 35px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.faq-accordion .accordion-collapse {
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item:hover .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #0056b3, #004494);
}

@media (max-width: 768px) {
  .faq-accordion .accordion-button {
    padding: 20px 25px;
    font-size: 1rem;
  }

  .faq-accordion .accordion-body {
    padding: 25px 20px;
  }

  .faq-features li {
    padding-left: 35px;
    font-size: 0.9rem;
  }

  .faq-cta {
    padding: 25px 20px !important;
  }

  .faq-cta .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .faq-accordion .accordion-button {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-accordion .accordion-button i {
    margin-right: 10px !important;
  }

  .faq-accordion .accordion-body {
    padding: 20px 15px;
  }

  .faq-features li {
    padding-left: 30px;
    font-size: 0.85rem;
  }
}

/* FORM MESSAGES */
.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  animation: fadeInDown 0.4s ease forwards;
}

.alert-success {
  background-color: #f8fff9 !important;
  color: #1e7e34 !important;
  border: 1px solid #c3e6cb !important;
}

.alert-danger {
  background-color: #fff5f5 !important;
  color: #c53030 !important;
  border: 1px solid #feb2b2 !important;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}