 :root {
     --primary-blue: #0062cc;
     --secondary-blue: #003a75;
     --accent-orange: #ff6600;
     --light-orange: #ff9838;
     --light-gray: #f5f7fa;
     --dark-gray: #2d3748;
     --text-color: #333333;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     color: var(--text-color);
     line-height: 1.6;
     background-color: #fff;
 }

 .logo {
     display: flex;
     align-items: center;
     height: 50px;
 }

 .logo h1 {
     font-size: 28px;
     font-weight: 700;
 }

 .logo span:first-child {
     color: var(--accent-orange);
 }

 .logo span:last-child {
     color: white;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header Styles */
 header {
     background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
     color: white;
     padding: 15px 0;
     position: sticky;
     top: 0;
     z-index: 100;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 nav ul {
     display: flex;
     align-items: center;
     /* centra verticalmente los <li>/<a> */
     margin: 0;
     padding: 0;
     list-style: none;
 }

 nav ul li {
     margin-left: 25px;
 }

 nav ul li a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     line-height: 50px;
     /* mismo alto que el logo para alinear */
     display: flex;
     align-items: center;
     /* centra verticalmente dentro del link */
     transition: color 0.3s;
 }

 nav ul li a:hover {
     color: var(--accent-orange);
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: white;
     font-size: 24px;
     cursor: pointer;
 }

 /* --- Responsive --- */
 @media (max-width: 768px) {
     nav ul {
         position: absolute;
         /* top: 70px; altura aprox del header */
         right: 0;
         flex-direction: column;
         background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
         width: 220px;
         padding: 1rem;
         display: none;
         /* 👈 oculto por defecto */
     }

     nav ul.active {
         display: flex;
         /* 👈 se muestra al hacer toggle */
     }

     nav ul li {
         margin: 10px 0;
     }

     .mobile-menu-btn {
         display: block;
     }
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(rgba(4, 80, 155, 0.5), rgba(0, 83, 167, 0.5)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
     color: white;
     padding: 80px 0;
     text-align: center;
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .hero h2 {
     font-size: 2.8rem;
     margin-bottom: 20px;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     opacity: 0.9;
 }

 .btn {
     display: inline-block;
     padding: 12px 30px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .btn-primary {
     background-color: var(--accent-orange);
     color: white;
     border: 2px solid var(--accent-orange);
 }

 .btn-primary:hover {
     background-color: transparent;
     color: var(--accent-orange);
 }

 .btn-secondary {
     background-color: transparent;
     color: white;
     border: 2px solid white;
     margin-left: 15px;
 }

 .btn-secondary:hover {
     background-color: white;
     color: var(--primary-blue);
 }

 /* Features Section */
 .features {
     padding: 80px 0;
     background-color: var(--light-gray);
 }

 .section-title {
     text-align: center;
     margin-bottom: 30px;
 }

 .section-title h2 {
     font-size: 2.2rem;
     color: var(--primary-blue);
     margin-bottom: 15px;
 }

 .section-title p {
     color: var(--dark-gray);
     max-width: 700px;
     margin: 0 auto;
     font-size: 30px;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background: white;
     border-radius: 10px;
     padding: 30px;
     text-align: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-5px);
 }

 .feature-icon {
     font-size: 40px;
     color: var(--primary-blue);
     margin-bottom: 20px;
 }

 .feature-card h3 {
     font-size: 1.4rem;
     margin-bottom: 15px;
     color: var(--secondary-blue);
 }

 .plans-toggle {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin: 2rem 0;
 }

 .toggle-btn {
     padding: 10px 25px;
     border: 2px solid #0d6efd;
     border-radius: 30px;
     background: #fff;
     color: #0d6efd;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .toggle-btn:hover {
     background: #0d6efd;
     color: #fff;
 }

 .toggle-btn.active {
     background: #0d6efd;
     color: #fff;
 }

 /* Plans Section */
 .plans {
     padding: 20px 0;
     background-color: #f7b271;
 }

 .plans-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .plan-card {
     background: white;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
     position: relative;
 }

 .plan-card:hover {
     transform: translateY(-10px);
 }

 .plan-header {
     background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
     color: white;
     padding: 25px;
     text-align: center;
 }

 .plan-name {
     font-size: 1.6rem;
     margin-bottom: 10px;
 }

 .plan-price {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 5px;
 }

 .plan-price span {
     font-size: 1rem;
     font-weight: 400;
 }

 .plan-details {
     padding: 25px;
 }

 .plan-features {
     list-style: none;
     margin-bottom: 25px;
 }

 .plan-features li {
     padding: 10px 0;
     border-bottom: 1px solid #eee;
     display: flex;
     align-items: center;
 }

 .plan-features li i {
     color: var(--accent-orange);
     margin-right: 10px;
 }

 .plan-card.popular::before {
     content: "MÁS POPULAR";
     position: absolute;
     top: 20px;
     right: -30px;
     background: var(--accent-orange);
     color: white;
     padding: 5px 30px;
     font-size: 0.8rem;
     font-weight: 700;
     transform: rotate(45deg);
 }

 /* Coverage Section */
 .coverage {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
     color: white;
 }

 .coverage-container {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
 }

 .coverage-content {
     flex: 1;
     min-width: 300px;
     padding-right: 30px;
 }

 .coverage-form {
     flex: 1;
     min-width: 300px;
     background: white;
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
 }

 .coverage-form h3 {
     color: var(--primary-blue);
     margin-bottom: 20px;
     text-align: center;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     color: var(--dark-gray);
     font-weight: 500;
 }

 .form-group input,
 .form-group select {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 1rem;
 }

 .form-group input:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--accent-orange);
 }

 /* Testimonials Section */
 .testimonials {
     padding: 80px 0;
     background-color: var(--light-gray);
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .testimonial-card {
     background: white;
     border-radius: 10px;
     padding: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .testimonial-text {
     font-style: italic;
     margin-bottom: 20px;
     position: relative;
 }

 .testimonial-text::before {
     content: "";
     font-size: 4rem;
     color: var(--accent-orange);
     opacity: 0.2;
     position: absolute;
     top: -20px;
     left: -10px;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: var(--primary-blue);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 700;
     margin-right: 15px;
 }

 .author-info h4 {
     color: var(--secondary-blue);
 }

 .author-info p {
     color: var(--dark-gray);
     font-size: 0.9rem;
 }

 /* Footer */
 footer {
     background-color: var(--secondary-blue);
     color: white;
     padding: 60px 0 30px;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .footer-col h3 {
     font-size: 1.2rem;
     margin-bottom: 20px;
     color: var(--accent-orange);
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col ul li a {
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-col ul li a:hover {
     color: var(--accent-orange);
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     transition: all 0.3s;
 }

 .social-links a:hover {
     background-color: var(--accent-orange);
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     margin-top: 40px;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #ccc;
     font-size: 0.9rem;
 }



 /* Responsive Design */
 @media (max-width: 768px) {
     .header-container {
         flex-direction: column;
         text-align: center;
     }

     nav ul {
         margin-top: 20px;
         flex-direction: column;
         align-items: center;
     }

     nav ul li {
         margin: 10px 0;
     }

     .mobile-menu-btn {
         display: block;
         position: absolute;
         top: 20px;
         right: 20px;
     }

     .hero h2 {
         font-size: 2.2rem;
     }

     .btn {
         display: block;
         margin: 10px auto;
         width: 80%;
     }

     .coverage-container {
         flex-direction: column;
     }

     .coverage-content {
         padding-right: 0;
         margin-bottom: 30px;
     }

 }

.addon-item {
  width: 140px; /* ancho fijo para todos los cards */
  min-height: 120px; /* asegura la misma altura */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.addon-logo-box {
  width: 100%;
  height: 70px; /* espacio uniforme para el logo */
  display: flex;
  justify-content: center;
  align-items: center;
}

.addon-logo {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
  transition: transform 0.2s ease;
}
/* .addon-logo1 {
  max-height: 1250px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
} */

.addon-logo:hover {
  transform: scale(1.1);
}

.addon-item1 {
  min-width: 100%; /* espacio para 2 logos */
  min-height: 120px;
  display: flex;
  flex-direction: row; /* título arriba, logos abajo */
  justify-content: space-between;
  align-items: center;
}

.addon-logo-box1 {
  height: 120px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.addon-logo1 {
  max-height: 1000px; /* tamaño uniforme */
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.addon-logo12 {
  max-height: 1800px; /* tamaño uniforme */
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.addon-logo1:hover {
  transform: scale(1.1);
}
