/* Reset y configuración global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilos principales del contenido */
.main-content {
  min-height: calc(100vh - 100px);
}

/* Fondo Hero Section */
.fondo-hero {
  width: 100%;
  height: 50vh;
  min-height: 300px;
  background-image: url('Assets/Img/Home/FondoHome.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fondo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo-encima {
  max-width: 45rem;
  width: 90%;
  height: auto;
  object-fit: contain;
}

.letras-encima {
  max-width: 100%;
  width: 95%;
  height: auto;
  max-height: 60%;
  object-fit: contain;
}

/* Media Queries para Hero Section */
@media (max-width: 1024px) {
  .fondo-hero {
    height: 45vh;
    min-height: 280px;
  }
  
  .logo-encima {
    max-width: 35rem;
    width: 85%;
  }
  
  .letras-encima {
    width: 90%;
    max-height: 55%;
  }
}

@media (max-width: 768px) {
  .fondo-hero {
    height: 40vh;
    min-height: 250px;
  }
  
  .hero-content {
    gap: 15px;
    padding: 0 10px;
  }
  
  .logo-encima {
    max-width: 25rem;
    width: 80%;
  }
  
  .letras-encima {
    width: 85%;
    max-height: 50%;
  }
}

@media (max-width: 480px) {
  .fondo-hero {
    height: 35vh;
    min-height: 220px;
  }
  
  .hero-content {
    gap: 10px;
    padding: 0 15px;
  }
  
  .logo-encima {
    max-width: 18rem;
    width: 75%;
  }
  
  .letras-encima {
    width: 80%;
    max-height: 45%;
  }
}

/* Estilos para botones */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #066d9c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Lista de Botones */
.lista-buttons {
  padding: 20px 0;
  background: #e6e6e6;
}

.buttons-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.button-link {
  display: block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  max-width: 100%;
}

.button-link:hover {
  transform: translateY(-5px);
}

.button-link:hover .button-img {
  filter: brightness(1.1);
}

/* Responsive para botones */
@media (max-width: 1024px) {
  .button-img {
    height: 55px;
  }
  
  .buttons-grid {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .lista-buttons {
    padding: 15px 0;
  }
  
  .buttons-grid {
    gap: 15px;
    padding: 0 20px;
  }
  
  .button-img {
    height: 50px;
  }
}

@media (max-width: 600px) {
  .buttons-grid {
    flex-direction: column;
    gap: 12px;
  }
  
  .button-img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .buttons-grid {
    padding: 0 10px;
  }
  
  .button-img {
    height: 40px;
  }
}

/* Sección Pasos */
.pasos-cancela {
  padding: 40px 20px;
  background-color: white;
}

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.paso-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  border: 2px solid transparent;
}

.paso-card:hover {
  transform: translateY(-10px);
  border-color: #007bff;
  box-shadow: 0 10px 25px rgba(0,123,255,0.1);
}

.paso-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  object-fit: contain;
}

.paso-card:hover .paso-img {
  transform: scale(1.05);
}

.paso-content {
  color: #333;
  width: 100%;
}

.paso-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 500;
}


.importante p {
  margin-bottom: 5px;
  color: white;
}

.clickable {
  cursor: pointer;
}

/* Responsive para pasos */
@media (max-width: 1024px) {
  .pasos-grid {
    gap: 25px;
    max-width: 900px;
  }
  
  .paso-img {
    max-width: 220px;
  }
  
  .paso-card {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .pasos-cancela {
    padding: 30px 15px;
  }
  
  .pasos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .paso-img {
    max-width: 200px;
  }
  
  .paso-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .pasos-grid {
    gap: 18px;
    padding: 0 5px;
  }
  
  .paso-card {
    padding: 18px 15px;
    margin: 0 10px;
  }
  
  .paso-img {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .pasos-cancela {
    padding: 25px 10px;
  }
  
  .paso-card {
    padding: 15px 10px;
    margin: 0 5px;
  }
  
  .paso-img {
    max-width: 160px;
  }
  
  .paso-content p {
    font-size: 0.9rem;
  }
}


.paso-card.clickable {
  cursor: pointer;
}

.paso-card:hover {
  transform: translateY(-10px);
}

.paso-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.paso-content {
  color: #333;
}

.paso-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
}

.importante {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 15px;
  padding: 10px 10px;
  margin-top: 0px;
}

.importante p:first-child {
  font-weight: 700;
  color: #856404;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.importante p:last-child {
  color: #856404;
  font-weight: 600;
  margin-bottom: 0;
}

/* Responsive para pasos */
@media (max-width: 768px) {
  .pasos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .paso-img {
    max-width: 250px;
  }
  
  .paso-content p {
    font-size: 1rem;
  }
}

/* Sección Contáctanos */
.contanos {
  padding: 10px 0;
  background-color: #f8f9fa;
}

.contanos-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.contactanos-logo {
  max-width: 100px;
  min-width: 100px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.contactanos-text {
  flex: 1;
  max-width: 600px;
}

.contactanos-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
}

.contactanos-text p:first-child {
  font-weight: 600;
  color: #066d9c;
  font-size: 1.1rem;
}

/* Responsive para contáctanos */
@media (max-width: 1024px) {
  .contanos-content {
    gap: 35px;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .contanos-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 0 20px;
  }
  
  .contactanos-logo {
    max-width: 90px;
    min-width: unset;
  }
  
  .contactanos-text p {
    font-size: 1rem;
  }
  
  .contactanos-text p:first-child {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .contanos-content {
    gap: 20px;
    padding: 0 15px;
  }
  
  .contactanos-logo {
    max-width: 80px;
  }
  
  .contactanos-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contanos-content {
    padding: 0 10px;
    gap: 18px;
  }
  
  .contactanos-logo {
    max-width: 70px;
  }
  
  .contactanos-text p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .contactanos-text p:first-child {
    font-size: 1rem;
  }
}

/* Sección Ubicación */
.ubicacion {
  padding: 40px 20px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
}

.ubicacion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.informes-section h3,
.ubicanos-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  border-bottom: 2px solid #3498db;
  padding-bottom: 8px;
  display: inline-block;
}

.info-details p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #ecf0f1;
}

.info-details p strong {
  color: white;
  font-weight: 500;
}

.mapa-placeholder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mapa-placeholder iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* Responsive para ubicación */
@media (max-width: 1024px) {
  .ubicacion {
    padding: 35px 15px;
  }
  
  .ubicacion-content {
    gap: 35px;
  }
  
  .mapa-placeholder iframe {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .ubicacion {
    padding: 30px 15px;
  }
  
  .ubicacion-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .informes-section h3,
  .ubicanos-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .info-details p {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .mapa-placeholder iframe {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .ubicacion {
    padding: 25px 10px;
  }
  
  .ubicacion-content {
    gap: 25px;
  }
  
  .informes-section h3,
  .ubicanos-section h3 {
    font-size: 1.1rem;
  }
  
  .info-details p {
    font-size: 0.8rem;
  }
  
  .mapa-placeholder iframe {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .ubicacion {
    padding: 20px 8px;
  }
  
  .ubicacion-content {
    gap: 20px;
  }
  
  .informes-section h3,
  .ubicanos-section h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .info-details p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .mapa-placeholder iframe {
    height: 160px;
  }
}

  