* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c2b39;
  background-color: #ffffff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  background: #061f31;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 70px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00a9b5;
}

/* MENÚ HAMBURGUESA */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  color: #00a9b5;
}

.mobile-close-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
  /* padding: 10px; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.5);
}

.mobile-close-btn:hover {
  background: rgba(0,0,0,0.7);
}

/* RESPONSIVE NAVBAR */
@media (max-width: 768px) {
  .navbar {
    padding: 2rem 0;
  }
  
  .nav-container {
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .mobile-menu-btn {
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .mobile-close-btn {
    display: none !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    text-align: center;
  }
  
  .logo img {
    height: 30px;
  }
  
  .nav-links {
    display: none; /* Ocultar enlaces en mobile por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #061f31;
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    display: flex; /* Mostrar cuando está activo */
    transform: translateX(0);
  }
  
  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 140px 20px 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 0.95rem;
  margin-bottom: 25px;
  color: #4a5b6a;
}

.btn {
  display: inline-block;
  background: #061f31;
  color: white;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn:hover {
  background: #061f31;
}

.hero-img img {
  width: 100%;
  border-radius: 6px;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 15px 40px 15px;
    text-align: left;
    align-items: start;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .hero-img {
    display: none;
  }
}

/* INFO SECTION */
.info {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-text h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.info-text p {
  font-size: 0.95rem;
  color: #4a5b6a;
  margin-bottom: 15px;
}

.link {
  color: #061f31;
  text-decoration: none;
  font-size: 0.9rem;
}

.link:hover {
  text-decoration: underline;
}

.info-img img {
  width: 100%;
  border-radius: 6px;
}

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

/* SECCIÓN AZUL */
.blue-section {
  background: #061f31;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.blue-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.blue-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* SECCIÓN OBRAS */
.projects {
  padding: 80px 20px;
  background: #f8f9fa;
}

.projects h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1c2b39;
}

.projects-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.projects-list h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #061f31;
}

.projects-list ul {
  list-style: none;
  padding: 0;
}

.projects-list > ul > li {
  margin-bottom: 15px;
  font-weight: 600;
  color: #1c2b39;
  position: relative;
  padding-left: 20px;
}

.projects-list > ul > li::before {
  content: "•";
  color: #061f31;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.projects-list ul ul {
  margin-top: 10px;
  padding-left: 20px;
}

.projects-list ul ul li {
  font-weight: normal;
  color: #4a5b6a;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.projects-list ul ul li::before {
  content: "◦";
  color: #061f31;
  position: absolute;
  left: 0;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial-card p {
  color: #4a5b6a;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  color: #061f31;
  margin: 0;
}

/* SECCIÓN CONTACTO */
.contact {
  padding: 80px 20px;
  background: white;
}

.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1c2b39;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: auto;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #061f31;
}

.contact-info p {
  margin-bottom: 15px;
  color: #4a5b6a;
}

.contact-info strong {
  color: #1c2b39;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: #061f31;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #061f31;
}

/* ESTILOS FORMULARIO BREVO */
.brevo-form {
  max-width: 600px;
  margin: 0 auto;
}

.brevo-form input,
.brevo-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
  box-sizing: border-box;
}

.brevo-form input:focus,
.brevo-form textarea:focus {
  outline: none;
  border-color: #061f31;
}

.brevo-form button {
  width: 100%;
  background: #061f31;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.brevo-form button:hover {
  background: #041529;
  transform: translateY(-2px);
}

/* RESPONSIVE FORMULARIO */
@media (max-width: 768px) {
  .brevo-form {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .brevo-form input,
  .brevo-form textarea {
    font-size: 16px; /* Evita zoom en iOS */
    padding: 15px;
  }
  
  .brevo-form button {
    padding: 15px 25px;
    font-size: 16px;
  }
}

.contact-form button {
  align-self: flex-start;
}

/* ESTILOS POPUP DE ÉXITO */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: popupSlide 0.3s ease-out;
}

.popup-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.popup-content h3 {
  color: #061f31;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.popup-content p {
  color: #4a5b6a;
  margin-bottom: 25px;
  line-height: 1.5;
}

.popup-btn {
  background: #061f31;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.popup-btn:hover {
  background: #041529;
  transform: translateY(-2px);
}

@keyframes popupSlide {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* RESPONSIVE POPUP */
@media (max-width: 768px) {
  .popup-overlay {
    padding: 20px;
  }
  
  .popup-content {
    padding: 30px 20px;
    max-width: 100%;
    width: 100%;
  }
  
  .popup-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .popup-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .popup-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .popup-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* SECCIÓN MAPA */
.map-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1c2b39;
}

.map-container {
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #061f31;
  margin-bottom: 25px;
}

.contact-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
}

.contact-form select:focus {
  outline: none;
  border-color: #061f31;
}

/* SECCIÓN OBRAS PARTICIPACIÓN */
.works-participation {
  padding: 80px 20px;
  background: #f8f9fa;
}

.works-participation h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1c2b39;
}

/* CARRUSEL */
.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.work-item {
  min-width: 100%;
  display: flex;
  background: white;
  align-items: center;
  padding: 40px;
  gap: 40px;
}

.work-image {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-content {
  flex: 1;
}

.work-content h3 {
  font-size: 1.8rem;
  color: #061f31;
  margin-bottom: 15px;
}

.work-content p {
  color: #4a5b6a;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.participants {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.participant {
  background: #f0f7fa;
  color: #061f31;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #061f31;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #041529;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #061f31;
  transform: scale(1.2);
}

.indicator:hover {
  background: #999;
}

.carousel-more {
  text-align: center;
  margin-top: 30px;
}

.carousel-more .btn {
  background: #061f31;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.carousel-more .btn:hover {
  background: #041529;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 31, 49, 0.3);
}

/* SECCIÓN OBRAS EN CARDS */
.works-cards {
  padding: 80px 20px;
  background: #f8f9fa;
}

.works-cards h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1c2b39;
}

.works-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.work-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.05);
}

.work-card-content {
  padding: 25px;
}

.work-card-content h3 {
  font-size: 1.3rem;
  color: #061f31;
  margin-bottom: 15px;
  font-weight: 600;
}

.work-card-content p {
  color: #4a5b6a;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.card-participants {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-participant {
  background: #f0f7fa;
  color: #061f31;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* SECCIÓN SERVICIOS DESTACADOS */
.featured-services {
  padding: 80px 20px;
  background: #ffffff;
}

.featured-services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1c2b39;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-featured {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card-featured:hover {
  transform: translateY(-5px);
  border-color: #061f31;
  box-shadow: 0 8px 25px rgba(6, 31, 49, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card-featured h3 {
  font-size: 1.4rem;
  color: #061f31;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card-featured p {
  color: #4a5b6a;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* SECCIÓN OBRAS COMERCIALES */
.commercial-works {
  padding: 80px 20px;
  background: #f8f9fa;
}

.commercial-works h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1c2b39;
}

.works-grid {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-info {
  padding: 30px;
}

.work-info h3 {
  font-size: 1.5rem;
  color: #061f31;
  margin-bottom: 15px;
}

.work-info p {
  color: #4a5b6a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.work-info ul {
  list-style: none;
  padding: 0;
}

.work-info li {
  color: #4a5b6a;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.work-info li::before {
  content: "•";
  color: #061f31;
  position: absolute;
  left: 0;
}

.testimonial-card p {
  color: #4a5b6a;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  color: #061f31;
  margin: 0 0 5px 0;
}

.testimonial-card p:last-child {
  font-style: normal;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* SECCIÓN SERVICIOS */
.services {
  padding: 80px 20px;
  background: #f8f9fa;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1c2b39;
}

.services > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #4a5b6a;
  line-height: 1.6;
}

/* GALERÍA DE SERVICIOS */
.services-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.services-gallery img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.services-gallery img:hover {
  transform: scale(1.05);
}

.image-with-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-with-caption img {
  margin-bottom: 8px;
}

.caption {
  font-size: 0.9rem;
  color: #061f31;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* DETALLES DE SERVICIOS */
.service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.service-detail-card h3 {
  font-size: 1.5rem;
  color: #061f31;
  margin-bottom: 20px;
}

.service-detail-card p {
  color: #4a5b6a;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f0f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #061f31;
  margin-bottom: 15px;
}

.service-card p {
  color: #4a5b6a;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 40px auto 0;
}

.benefit-item {
  text-align: center;
}

.benefit-item h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}

.benefit-item p {
  color: rgba(255,255,255,0.8);
}

/* SECCIÓN FUNDADOR */
.founder-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-img img {
  width: 100%;
  max-width: 100px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.founder-text h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
}

.founder-text h3 {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.founder-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* SECCIÓN VALORES */
.values {
  padding: 80px 20px;
  background: #f8f9fa;
}

.values h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1c2b39;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #061f31;
  margin-bottom: 15px;
}

.value-card p {
  color: #4a5b6a;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: #061f31;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .info {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .projects-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .blue-section h2,
  .projects h2,
  .contact h2 {
    font-size: 1.5rem;
  }
  
  .nav-container {
    /* flex-direction: column; */
    gap: 15px;
  }
}
