:root {
      --primary: #ff6b00;
      --primary-dark: #e55a00;
      --secondary: #2c3e50;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --success: #28a745;
    }
    
    body {
      font-family: 'Roboto', sans-serif;
      scroll-behavior: smooth;
      color: var(--dark);
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }
    
    /* Navbar */
    .navbar {
      background-color: rgba(44, 62, 80, 0.95);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
      background-color: var(--secondary);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 10px;
    }
    

    .hero h1 {
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
    }
    
    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
    }
    
    .btn-primary-custom {
      background-color: var(--primary);
      border-color: var(--primary);
      color: white;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 30px;
      transition: all 0.3s ease;
    }
    
    .btn-primary-custom:hover {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    }
    
    /* Sections */
    section {
      padding: 80px 0;
    }
    
    .section-title {
      position: relative;
      margin-bottom: 60px;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 4px;
      background-color: var(--primary);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    /* About Section */
    .about-content {
      display: flex;
      align-items: center;
    }
    
    .about-img {
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    
    .about-img img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
      transform: scale(1.05);
    }
    
    /* Services Section */
    .service-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 15px;
      border: none;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .service-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background-color: var(--primary);
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .service-icon {
      width: 80px;
      height: 80px;
      background-color: rgba(255, 107, 0, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    
    .service-icon i {
      font-size: 2rem;
      color: var(--primary);
    }
    
    /* Testimonials */
    .testimonials {
      background-color: var(--light);
    }
    
    .testimonial-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin: 15px;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .author-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      overflow: hidden;
    }
    
    .author-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Contact Section */
    .contact-form {
      background-color: white;
      border-radius: 10px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
      border-radius: 5px;
      padding: 12px 15px;
      border: 1px solid #e0e0e0;
      margin-bottom: 20px;
    }
    
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
    }
    
    /* Footer */
/* Footer Moderno */
.footer-modern {
  background: var(--secondary);
  color: #dcdcdc;
  padding: 60px 0 25px;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  font-size: 1.2rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  width: 45px;
  height: 3px;
  background-color: var(--primary);
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.footer-desc {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.5rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  color: #cfcfcf;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-list a {
  color: #bcbcbc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-list a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-whatsapp {
  color: #bcbcbc;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

.footer-whatsapp:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #aaaaaa;
  font-size: 0.9rem;
}

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      margin-right: 10px;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background-color: var(--primary);
      transform: translateY(-3px);
    }
    
    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      margin-top: 40px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      section {
        padding: 60px 0;
      }

        .nav-logo {
          height: 36px;
          padding: 4px 8px;
          border-radius: 50%; /* opcional: cambia a circular para móvil */
        }

      


    }

    @media (max-width: 498px) {
       .btnSep{
          margin-top: 10%;
        }
          /* ocultar el texto en móvil (ya lo hace con d-none d-md-inline) pero reforzamos */
        .brand-text { display: none !important; }
    }

  
    
  .nav-icon{
    height:46px;
    width:46px;
    object-fit:cover;
    border-radius:50%;
    /* si el PNG está sobre fondo negro, considera usar background-color para máscara:
       background:#000; padding:4px; border-radius:50%; */
  }

  .brand-text{
    font-weight:700;
    letter-spacing:0.4px;
    color:#fff;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
  }

 .nav-logo {
  height: 40px;              /* altura recomendada */
  width: auto;
  display: block;
  object-fit: contain;
  background: #000;          /* conserva fondo negro del logo */
  padding: 6px 10px;         /* crea un "frame" para que no parezca pegado */
  border-radius: 8px;        /* borde suave que encaja mejor con navbar */
  border: 1px solid rgba(255,255,255,0.05); /* sutil separación */
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);   /* profundidad leve */
}
