/* Estilos para páginas internas */
.page-hero {
  margin-top: 70px;
  padding: 100px 0;
  background: #1D1D1B;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #f6f8fa;
}

.hero-content p {
  font-size: 1.3rem;
  color: #f6f8fa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Estilos para página Nosotros */
.about-section {
  padding: 80px 0;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #1D1D1B;
}

.about-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.mv-item {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mv-icon {
  margin-bottom: 20px;
}

.mv-item h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1D1D1B;
}

.mv-item p {
  color: #666;
  line-height: 1.6;
}

.values-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #1D1D1B;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
}

.value-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1D1D1B;
}

.value-item p {
  color: #666;
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #1D1D1B;
}

.member-role {
  color: #666;
  font-weight: 600;
  margin-bottom: 10px;
}

.member-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Estilos para página Servicios */
.services-main {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1D1D1B;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  color: #666;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1D1D1B;
  font-weight: bold;
}

.service-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1D1D1B;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.process-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1D1D1B;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #1D1D1B;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Estilos para página Portafolio */
.portfolio-filters {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 25px;
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #333;
  color: white;
  border-color: #333;
}

.portfolio-gallery {
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

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

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  text-align: center;
  color: white;
}

.portfolio-info h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1D1D1B;
}

.portfolio-info p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.view-project {
  background-color: white;
  color: #1D1D1B;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}

.close:hover {
  color: #333;
}

/* Testimonios */
.testimonials-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  color: #666;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  margin-bottom: 5px;
  color: #333;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f6f8fa;
}

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

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

.nav-logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #1D1D1B;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #666;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1D1D1B;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #1D1D1B;
  margin: 3px 0;
  transition: 0.3s;
}

/* Carrusel Principal */
.carousel-section {
  margin-top: 70px;
  position: relative;
  height: 600px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

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

.carousel-content {
  position: absolute;
  left: 30px;
  right: 0;
  bottom: 30px;
  /* Puedes ajustar este valor según lo que necesites */
  text-align: left;
  color: #fff;
  /* Si quieres un fondo semitransparente para mejor lectura: */
  /* background: rgba(0,0,0,0.3); */
  /* padding: 20px 0; */
  /* border-radius: 10px; */
  /* width: 100%; */
  /* margin: 0 auto; */
}

.carousel-content h2 {
  font-size: 3rem;
  margin-bottom: 0.3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 3;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Sección Split */
.split-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.split-left h2 {
  font-size: 2.5rem;
  color: #1D1D1B;
  line-height: 1.2;
}

.split-right p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

/* Sección de Texto */
.text-section {
  padding: 80px 0;
}

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

.text-content h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1D1D1B;
}

.text-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Sección CTA */
.cta-section {
  padding: 80px 0;
  background-color: #1D1D1B;
  color: white;
  text-align: center;
}

.cta-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #1D1D1B;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Carrusel de Logos */
.logos-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.logos-section h3 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #333;
}

.logos-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 80px;
}

.logos-track {
  display: flex;
  align-items: center;
  transition: none;
  will-change: transform;
}

.logo-item {
  flex: 0 0 auto;
  margin: 0 10px;
}

/* Footer */
.footer {
  background-color: #1D1D1B;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-info p {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  color: #ccc;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
  opacity: 0.7;
}

/* Botón Flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Estilos de Contacto */
.contact-hero {
  margin-top: 70px;
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.contact-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #1D1D1B;
}

.contact-content p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-form-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #1D1D1B;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #1D1D1B;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.contact-form {
  max-width: 480px;
  margin: 48px auto 48px auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #1D1D1B;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1D1D1B;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #666;
}

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

/* Estilos para botón de carga */
.submit-btn {
  position: relative;
  overflow: hidden;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Estilos para notificaciones */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  min-width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
}

.notification-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.notification-success .notification-icon {
  background-color: #10b981;
  color: white;
}

.notification-error .notification-icon {
  background-color: #ef4444;
  color: white;
}

.notification-info .notification-icon {
  background-color: #3b82f6;
  color: white;
}

.notification-message {
  flex: 1;
  color: #374151;
  font-size: 14px;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.notification-close:hover {
  background-color: #f3f4f6;
  color: #374151;
}

/* Bordes de colores para las notificaciones */
.notification-success {
  border-left: 4px solid #10b981;
}

.notification-error {
  border-left: 4px solid #ef4444;
}

.notification-info {
  border-left: 4px solid #3b82f6;
}

.submit-btn {
  background-color: #1D1D1B;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #555;
  transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .carousel-content {
    left: 20px;
    right: 20px;
  }

  .carousel-content h2 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .split-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .split-left h2 {
    font-size: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content h1 {
    font-size: 2.2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .logos-track {
    gap: 40px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .modal-content {
    margin: 10% auto;
    padding: 20px;
    width: 95%;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .carousel-section {
    height: 400px;
  }

  .carousel-content h2 {
    font-size: 1.5rem;
  }

  .split-left h2 {
    font-size: 1.8rem;
  }

  .text-content h3 {
    font-size: 1.5rem;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive para notificaciones */
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
    min-width: auto;
    transform: translateY(-100%);
  }

  .notification.show {
    transform: translateY(0);
  }
}

/* Fondo general */
body {
  background: #f6f8fa;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Contenedor del formulario */
.contact-form-container {
  max-width: 540px;
  margin: 48px auto 48px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.10);
  padding: 36px 28px 28px 28px;
}

.contact-title {
  text-align: center;
  margin-bottom: 28px;
  font-size: 2rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Estructura de filas en escritorio */
.form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
}

.form-row .form-group {
  flex: 1;
}

/* Campos y etiquetas */
.contact-form label {
  display: block;
  margin-bottom: 7px;
  font-weight: 500;
  color: #1D1D1B;
  font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #e0e4ea;
  border-radius: 7px;
  font-size: 1rem;
  background: #f9fafc;
  margin-bottom: 18px;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  background: #fff;
}

.contact-form textarea {
  min-height: 90px;
  max-height: 220px;
}

/* Botón */
.submit-btn {
  width: 100%;
  background: #1D1D1B;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.submit-btn:hover {
  background: #242425;
}

/* Responsive: una sola columna en móvil */
@media (max-width: 700px) {
  .contact-form-container {
    padding: 18px 6vw 18px 6vw;
    max-width: 98vw;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (min-width: 1200px) {
  .carousel-section {
    background-color: #1D1D1B;
    height: 400px;
  }

  .carousel-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .carousel-slide img {
    height: 100%;
    width: 720px;
    object-fit: cover;
  }

  .carousel-content {
    position: absolute;
    left: 350px;
    right: 0;
    bottom: 30px;
    /* Puedes ajustar este valor según lo que necesites */
    text-align: left;
    color: #fff;
    /* Si quieres un fondo semitransparente para mejor lectura: */
    /* background: rgba(0,0,0,0.3); */
    /* padding: 20px 0; */
    /* border-radius: 10px; */
    /* width: 100%; */
    /* margin: 0 auto; */
  }
}