:root {
  --purple:       #5B2E9B;
  --orange:       #FF8C00;
  --yellow-accent:#F79318; /* Unified accent color */
  --dark:         #1F1F1F;
  --panel:        #2A2A2A;
  --text-light:   #F5F5F5;
  --bg-dark-1:    #191C26; /* Dark background variation 1 */
  --bg-dark-2:    #111319; /* Dark background variation 2 */
  --bg-dark-3:    #20222F; /* Dark background variation 3 */
  --purple-card-titulo:#21173A;
  --purple-card: #2B2346;

}

/* ==========================================================================
   General & Resets
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif!important;
  color: var(--bg-dark-3);
  font-size: 14px;
}

main, .main-empresas, .main-service {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
/* === OVERRIDE LAYOUT PARA VERIFICAR COBERTURA === */

/* Que el main de este flujo NO sea flex en fila */
main.main-service {
  display: block !important;
  width: 100%;
}

/* Cada paso ocupa todo el ancho y se comporta como bloque normal */
main.main-service .service-step-01 {
  display: block;              /* en vez de flex, para evitar rarezas */
  padding: 20px;
  margin: 0 0 2% 0;
}

/* El contenedor interno del form ocupa ancho completo */
main.main-service .collect-data-form {
  width: 100% !important;
  max-width: 1100px;
  margin: 0 auto;
}

ul {
  list-style: none;
  margin-bottom: 0.5em;
}

/* Default li bullet, overridden by utility classes like .no-bullets */
li::before {
  content: "•";
  color: var(--yellow-accent);
  margin: 1em;
}

a {
  text-decoration: none;
}

input:focus, select:focus {
  outline: none;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 1em 8px;
}

tr:nth-child(even) {
  color: var(--yellow-accent);
}

iframe {
  border-radius: 6px;
}

/* ==========================================================================
   Typography & Text Utilities
   ========================================================================== */
h1 {
  font-size: 50px;
  margin-bottom: 0.5em;
  line-height: 50px;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.subtitle-text {
  font-weight: lighter;
  line-height: 25px;
}

.yellow-text-color { color: var(--yellow-accent); }
.white-text-color { color: white; }
.grey-text { color: grey; }
.grey-tittle-color {color: #50535a;}
.purple-text-color { color: #9a53ff; }
.dark-text-color { color: #313235;}

.font-big { font-size: 30px; }
.big-text { font-size: 20px; font-weight: 500; color: #000; }
.medium-text { font-size: 30px; font-weight: bold; }
.small-text { font-size: 14px; }

/* ==========================================================================
   Header & Portal Mode
   ========================================================================== */
header {
  width: 100%;
  min-height: 100px;
  padding: 1em 5%;
}

.header {
  min-height: 180px;
  background: url(../img/background-03.png) no-repeat center center / cover;
}

.header .titulo {
  font-size: 48px;
  line-height: 55px;
  color: #FFF;
  text-align: left;
  margin: 0.8em 0 8px;
}

.header .subtitulo {
  font-size: 35px;
  line-height: 30px;
  color: #FFF;
  text-align: left;
  margin: 0 0 8px;
  font-weight: lighter;
}

/* Portal-specific styles */
header.modo-portal {
  background: linear-gradient(90deg, var(--purple) 0%, var(--panel) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.modo-portal nav a { color: #fff !important; }
header.modo-portal #logoNeoFiber { height: 45px !important; }
header.modo-portal #mobileMenu { background: #000 !important; }

/* ==========================================================================
   Login Box
   ========================================================================== */
.login-box {
  width: 325px;
  height: 235px;
  background-color: #2f344d;
  position: absolute;
  top: 50px;
  right: 0px;
  border-radius: 6px;
  display: none;
  z-index: 999;
}

.login-box span {
  color: #fff !important;
  font-size: 18px;
  line-height: 27.28px;
  letter-spacing: 0.02em;
  display: block;
  margin: 20px 20px 0;
}

/* Base style for login inputs */
.login-box .user,
.login-box .password {
  width: 283px;
  height: 40px;
  margin: 10px 0 0 20px;
  border-radius: 4px;
  background-color: var(--bg-dark-1);
  border: none;
  padding: 15px 0 15px 33px;
  color: #b1b1b1;
  background-repeat: no-repeat;
  background-position: 4% 50%;
}

/* Specific icons */
.login-box .user {
  background-image: url('/img/user_login.svg');
  background-size: 17px;
}

.login-box .password {
  background-image: url(/img/pass.svg);
}

.login-box a {
  opacity: 1;
  font-size: 12px;
  text-align: center;
  display: inherit;
  margin-top: 6px;
  color: #fff;
}

.login-box a:hover {
  text-decoration: underline;
}

a.forgot-link {
  display: block;
  color: white;
  margin-bottom: 16px;
  text-decoration: none;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.link {
  color: black;
  padding: 1em 0.5em;
  margin: 0 0.5em;
  border-bottom: 1px solid transparent;
  font-size: 12px;
  letter-spacing: 1px;
  transition: border-color 0.3s;
}

.link:hover,
.link.selected {
  border-bottom-color: var(--yellow-accent);
}

.btn-outline {
  opacity: 1;
  transition: opacity 0.3s;
}

.btn-outline:hover { opacity: .8; }
.btn-outline.selected { background: white; }

/* Base pill button style */
.pill, .pill-black, .pill-yellow, .pill-white, .pill-white-round {
  border-radius: 1em;
  padding: 1em 2em;
  margin: 0.5em;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.pill {
  background-color: #21173A;
  color: white;
}
.pill:hover, .pill.selected {
  background-color: var(--yellow-accent);
  color: var(--bg-dark-3);
}

.pill-black {
  background-color: var(--bg-dark-3);
  color: white;
}
.pill-black:hover {
  background-color: transparent;
  border-color: var(--bg-dark-3);
  color: var(--bg-dark-3);
}

/* ---------- Arrow swap en hover (fix) ---------- */
.pill-yellow,
.pill-white,
.pill-white-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Las dos flechas ocupan siempre el mismo espacio */
.pill-yellow .default-arrow,
.pill-yellow .hover-arrow,
.pill-white .default-arrow,
.pill-white .hover-arrow,
.pill-white-round .default-arrow,
.pill-white-round .hover-arrow {
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.15s ease;
}

/* Estado normal: flecha default visible */
.pill-yellow .default-arrow,
.pill-white .default-arrow,
.pill-white-round .default-arrow {
  opacity: 1;
}
.pill-yellow .hover-arrow,
.pill-white .hover-arrow,
.pill-white-round .hover-arrow {
  opacity: 0;
}

/* Hover: se invierte la opacidad, sin cambiar el layout */
.pill-yellow:hover .default-arrow,
.pill-white:hover .default-arrow,
.pill-white-round:hover .default-arrow {
  opacity: 1;
}
.pill-yellow:hover .hover-arrow,
.pill-white:hover .hover-arrow,
.pill-white-round:hover .hover-arrow {
  opacity: 1;
}
/* ---------- fin fix flecha ---------- */

.pill-yellow {
  background-color: var(--yellow-accent);
  color: var(--bg-dark-3);
}
.pill-yellow:hover {
  border-color: var(--yellow-accent);
  color: var(--yellow-accent);
  background-color: transparent;
}
.pill-yellow img { height: 7px; margin-left: 0.5em; }

.pill-white {
  background-color: #fff;
  color: var(--bg-dark-3);
  font-weight: 400;
}
.pill-white img { height: 9px; margin-right: 0.5em; }

.pill-white-round {
  background-color: #fff;
  color: var(--bg-dark-3);
  font-weight: 400;
  padding: 1em 0.5em;
}
.pill-white-round img { height: 7px; }

.pill-white:hover, .pill-white-round:hover {
  background: transparent;
  border-color: white;
  color: white;
}

.button-send {
  background: #F6C451;
  display: flex;
  align-items: center;
  padding: 0 2em;
  height: 50px;
  border: none;
  border-radius: 0 4px 4px 0;
  color: var(--bg-dark-3);
  font-weight: 600;
}

.button-container {
  margin: 1em 0;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.white {
  background-color: white;
  padding: 50px 0 0 0;
}

.white h1 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
}

.cent {
  width: 70%;
  margin: 0 auto;
}

.cent .tabla { margin-top: 40px; }
.cent .tabla h1 { font-size: 20px; margin: 0; }
.cent .tabla table { width: 100%; color: black !important; margin-top: 10px; }
.cent .tabla table tr:nth-child(even) { color: black !important; }

.pills-container {
  margin: 2rem 0;
}

.bg-img-3 {
  padding: 3em 0;
  background: url(../img/background-03.png) no-repeat center center / cover;
}

.title-container {
  width: 100%;
}

.bot {
  position: absolute;
  right: 5%;
  bottom: 80%;
}

.bot img { width: 150px; }

/* Split Background Utilities */
.custom-split {
  background: linear-gradient( to bottom, #1E1F26 0px, #1E1F26 160px, #FFFFFF 160px, #FFFFFF 100% );
}

.custom-split-2 {
  background: linear-gradient( to bottom, #1E1F26 0px, #1E1F26 150px, #FFFFFF 150px, #FFFFFF 100% );
}

.destacado-split {
  background: linear-gradient( to bottom, #21173A 0px, #21173A 170px, #2B2346 170px, #2B2346 100% );
}

.destacado-split-2 {
  background: linear-gradient( to bottom, #21173A 0px, #21173A 200px, #2B2346 200px, #2B2346 100% );
}
.destacado-top {
  background: #191C26;
   border-radius: 1rem 1rem 0 0;
}

.destacado-bot {
  background: #20222F;
  border-radius: 0 0 1rem 1rem;
}
.destacado-top-gray {
  background: #1E1F26;
   border-radius: 1rem 1rem 0 0;
}
.destacado-bot-gray {
  background: #fff;
   border-radius: 1rem 1rem 0 0;
}
/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
  text-align: center;
  /* font-weight: bold;  */
  font-family: 'Rubik', sans-serif; 
  color: #f7931d;
  /* padding: .5rem 0; */
}

.pricing-card-container { align-items: center; }

.pricing-card {
  margin: 0.5em;
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.pricing-card-container > div {
  flex: 1 1 300px; /* No se achican de menos de 300px */
  max-width: 450px;
  min-width: 300px;
  margin: 0 0.5rem;
}

/* .pricing h3 {
  font-size: 30px;
} */

.pricing-card-header,
.pricing-card-header-yellow {
  padding: 1.5em 1em;
  border-radius: 10px 10px 0 0;
}

.pricing-card-header { background-color: var(--bg-dark-3); }
.pricing-card-header-yellow { background-color: var(--yellow-accent); color: var(--bg-dark-3); padding: 1em; }
.pricing-card-header p, .pricing-card-header-yellow p { line-height: 25px; }

.pricing-card-content {
  padding: 1em 0 0 0;
  text-align: left;
  background-color: #20222F;
  color: #2B2346;
}
.pricing-card-content li { margin: 0.5em 0; }

.pricing-card-content-gray {
  padding: 1em 0 0 0;
  text-align: left;
  background-color: #fff;
  color: #2B2346; 
}
.pricing-card-content-gray li { margin: 0.5em 0; }

.price {
  border-top: 1px solid lightgray;
  /* border-bottom: 1px solid lightgray; */
  padding: 1em 2em;
  text-align: center;
}
.price a { pointer-events: auto; }

.pricing-card-footer {
  border-radius: 0 0 10px 10px;
  background: white;
  padding: 0.5em 0;
}

/* Plan Features */
#planCaracteristicas { height: auto; }
.features { border-top: 1px solid #b3b1b1; padding-top: 15px; }
.icon-features { color: var(--yellow-accent); margin-right: 5px; }
.icon-destacado { color: #6942AF; margin-right: 5px; }

/* ==========================================================================
   Services Section
   ========================================================================== */
.aditional-services-container {
  background-color: var(--bg-dark-1);
  color: white;
  text-align: center;
}

.aditional-services { padding: 3em; }

.services-logo-container { margin: 1em; }
.services-logo-container div {
  margin: 0 1.5em;
  display: flex;
  align-items: center;
}

.aditional-service { background: var(--bg-dark-3); padding: 2em 0; }
.aditional-services-bg-blue { padding: 2em 0; } 

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits {
  padding: 4em 0;
  background: var(--bg-dark-1) url(../img/background-02.png) no-repeat center center / cover;
  justify-content: center;
  align-items: center;
}

.benefit-box {
  background-color: var(--bg-dark-3);
  width: 260px;
  margin: 0.5em;
  border-radius: 10px;
}
.benefit-container { padding: 1.5em; }

.benefit-box-container { margin: 1em 0; }
.benefit-box-container h4 { margin-bottom: 0.5em; }
.benefit-box-container p { font-size: 12px; line-height: 14px; }
.benefit-box-container img { height: 35px; margin-bottom: 0.5em; }

.button-section {
  padding: 1em 0.5em;
  border-top: 1px solid var(--bg-dark-1);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.FAQ {
  padding: 4em;
  background: var(--bg-dark-3);
}

.question-container {
  max-width: 800px;
  min-width: 80%;
  margin: 0.5em auto;
}

.faq-select {
  width: 100%;
  height: 60px;
  border-radius: 4px 4px 0 0;
  padding: 1.5em;
  text-align: left;
  color: white;
  border: none;
  font-family: 'Rubik';
  appearance: none;
  background-color: var(--bg-dark-2);
  background-image:
    linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 20px) calc(2em + 2px),
    calc(100% - 15px) calc(2em + 2px),
    100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

.faq-select > option { display: none !important; }

.displayed-option {
  width: 100%;
  padding: 1.5em;
  background: var(--bg-dark-1);
  border-radius: 0 0 4px 4px;
  text-align: left;
  font-size: 12px;
}
.displayed-option p { line-height: 18px; }

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
.newsletter {
  background: var(--bg-dark-1);
  padding: 4em 0;
}

.input-news {
  height: 50px;
  width: 30%;
  border: none;
  padding: 1em;
  border-radius: 4px 0 0 4px;
}

.submit { margin-left: 0.5em; }

.form-with-map .button-container { width: 100%; }
.form-reservar .button-container { width: 100% !important; }

.collect-data-form {
  min-width: 300px;
  width: 70%;
  flex-wrap: wrap;
  display: flex;
}
.collect-data-boxes { width: 100%; }

.input-section-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.map-container { width: 100%; }

/* Form Column Utilities */
.col-10, .col-25, .col-32, .col-45, .col-100 { margin-bottom: 1em; } 
.col-10 { width: 10%; }
.col-25 { width: 21%; }
.col-32 { width: 32.5%; }
.col-45 { width: 45%; }
.col-100 { width: 100%; }
.col-10 input, .col-25 input, .col-32 input, .col-45 input { width: 100%; }
.col-100 input { width: 93%; }

.margin-1em-right { margin-right: 1em; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  position: relative;
  background: var(--bg-dark-2);
  padding: 2em 5% 0 5%;
  color: white;
  font-size: 12px;
}

.contact-data-container {
  border-bottom: 1px solid var(--bg-dark-1);
  padding: 1.5em 0;
}
.contact-data-container:last-child { border-bottom: none; padding: 0; margin: 0; }

footer p { line-height: 20px; }
.data { width: 25%; }

.social-icon { margin: 1em; }
.social-icon:first-child { margin-left: 0; }

.legal-info {
  text-transform: uppercase;
  opacity: 0.5;
  font-size: 10px;
  line-height: 15px;
  padding: 2em 0;
}
.legal-info a { color: white; text-decoration: underline; }

/* ==========================================================================
   Service & Pricing Steps
   ========================================================================== */
.service-step-01 {
  margin: 0 0% 2% 0%;
  display: flex;
  justify-content: center; 
  gap: 1.5rem; 
  padding: 20px;             
}

.pricing-detail-selector { min-width: 300px; width: 30%;}
.pricing-detail-form { min-width: 300px; width: 70%; }
.pricing-detail-selector-header {
  padding: 1em 0 0 0;
  font-weight: bold;
}
.pricing-detail-selector-header-grey {
  background-color: #1E1F26;
  padding: 1em 0 0 0;
  border-radius: 15px 15px 0 0;
  font-weight: bold;
}
.pricing-detail-content { text-align: left; background-color: var(--bg-dark-3); }

.pricing-selector-card-container {
  background-color: var(--bg-dark-3);
  border-radius: 0 0 15px 15px;
  padding: 0 1em 1em 1em;
}

.price-selector { padding: 1em 2em; align-items: center; }
.arrow img { width: 30px; }

/* Inner Pricing Card */
.pricing-card-header-inner {
  color: white;
  text-align: center;
  padding: 0em;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08); 

}
.pricing-card-content-inner { border-radius: 0 0 10px 10px; }
.pricing-card-content-inner ul { padding: 1em 0; margin: 0; }
.price-inner {
  padding: 1em 0;
  background-color: var(--yellow-accent);
  border-radius: 0 0 10px 10px;
}
.wizard-bar { height: 2px; background-color: var(--yellow-accent); margin-bottom: 1em;}

/* ==========================================================================
   Payment & Thanks Message
   ========================================================================== */
.payment-container { padding-bottom: 2em; align-items: center; }
.payment-header { padding: 1.5em; border-radius: 10px 10px 0 0; font-weight: bold; }
.payment-header .small-text { margin: 0.5em 0; }
.payment-detail { min-width: 300px; width: 100%; }
.payment-content { background-color: var(--panel); }

.image-container-hands {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container-hands img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  margin-left: 100px;
 
}

.service-internet-container,
.thanks-message-container {
  padding: 2em;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.service-internet-container {
  background: #fff;
  background-size: 400px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.thanks-message-container {
  background: url(../img/carita_feliz.png) no-repeat 10px;
  background-position: calc(100% - 50px);
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-size: 250px;
}
.thanks-container { margin: 2em 0; }

/* ==========================================================================
   Service Selection Boxes
   ========================================================================== */
.box-container, .box-container-price {
  border-radius: 10px;
}

.box-container {
  border: 1px solid var(--yellow-accent);
  width: 360px;
}
.box-container .box-header {
  background-color: #21173A;
  border-radius: 10px 10px 0 0;
  padding: 1em;
  text-align: center;
}
.box-container .box-content { padding: 1em 1.5em; }

.box-container-price {
  border: 1px solid transparent;
  width: 300px;
  margin-right: 1em;
  transition: border-color 0.3s;
}

.box-container-price .box-content { padding: 1.5em; }

.box-header-price {
  padding: .2em;
}

.box-content-option { margin: 0.5em 0; }
.box-content-option .small-text { margin-left: 0; }
.box-container .box-content .box-content-option-plus {
  justify-content: center;
  padding: 0.5em;
  color: var(--yellow-accent) !important;
}
.box-container .box-content p, .box-container-price .box-content p {
  margin-left: 1em;
}

.box-footer {
  background-color: var(--yellow-accent);
  border-radius: 0 0 10px 10px;
  padding: 1.5em;
  text-align: center;
}
.box-footer .small-text, .box-footer-price .small-text, .box-header-price .small-text { margin: 0; }

.box-footer-price {
  color: white;
  margin: 1em 0;
  border-top: 1px solid #101218;
  padding: 1.5em 0;
}

.row-boxes { margin-bottom: 2em; }
.boxes-container-services { width: 100%; flex-wrap: wrap; }

.service-internet-container .title-container { margin: 3em 0; }
.service-internet-container .title-container h3 { font-size: 18px; color: var(--yellow-accent); }

.box-content-image-service { text-align: center; }
.box-content-image-service img { height: 50px; }

/* ==========================================================================
   Other Components & Utilities
   ========================================================================== */
/* List table */
.list-table { padding: 2em; color: white; width: 100%; }
.list-table .title-container { text-align: center; }

/* Utility to remove list bullets */
.list-unstyled, .no-bullets {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.list-unstyled li, .no-bullets li, .no-bullets li::before {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  content: none !important;
}
ul.no-bullets li { display: flex; align-items: center; margin-bottom: 10px; }


/* Cards (Destacados, TV) */
#destacados, #internettv {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.deco-card {
  background-color: #101621;
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  padding: 2.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* Scroll Down Button */
.scrollDown {
  width: 45px;
  height: 45px;
  border: var(--bg-dark-3) solid 2px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: var(--yellow-accent);
}

.scrollDown span {
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  border: solid var(--bg-dark-3);
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -10px;
}

.conectividad {
  background: var(--bg-dark-3);
  padding: 3em 30%;
  display: none; /* Initially hidden */
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.promo {
  background-color: #f7931d;  
  font-size: 0.9rem;
}
#tv.scroll-container {
  background: #f7f6fa;    /* Fondo lila suave */
  height: 350px;          /* Altura fija */
  overflow-y: auto;       /* Scroll vertical */
  border-radius: 14px;    /* Bordes redondeados opcionales */
  padding: 16px;          /* Espaciado interno */
  box-shadow: 0 4px 24px rgba(90,60,200,0.09); /* Sombra suave opcional */
}

.canal-cont{
  max-width: fit-content;
}

.responsive-img { width: 60px; height: auto; }

.reservation-data { width: 60%; margin-left: 1em; padding: 1em; }

.grecaptcha-badge { visibility: hidden; }
/* ==========================================================================
Cobranzas
   ========================================================================== */
.cobranzas-panel-client{
  height: 247px; margin-top:-7.7em;
}
.cobranzas-girl{
  height: 300px; margin-top:-8em;
}
.img-rapipago {
  width: 80px!important;
}
.cobranzas-mt-15px{
  margin-top:15px;
}
.bg-transparent{
  background-color: transparent!important;
}
.bg-transparent-orange {
  background-color: transparent!important;
  color: #f7931d!important;
}
.bg-transparent-white {
  background-color: transparent!important;
  color: #aaa!important;
}
.h-300{
height:300px;
}
.cobranzas-cuotas{
  color: black; border: solid 1px #999; width: 50%; margin: 0 auto; border-radius: 4px; font-size: 15px; text-align: center;
}
.color-aaa{
  background: #aaa!important;
}

/* ==========================================================================
Media Queries
   ========================================================================== */
@media (max-width: 968px) {
  .box-container-price, .box-content {
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .footer-social-center {
    justify-content: center !important;
  }
      #logoNeoFiber { height: 40px !important; }
    .desktop-menu { display: none !important; }
    .hamburger { display: block !important; }
    .ventas-al { display: none !important; }
}

@media (max-width: 600px) {
  .pricing-card-footer {
    padding: 0.2em 0 !important;
    border-radius: 0 0 8px 8px !important;
  }
  .pricing-card-footer .pill-black {
    padding: 0.7em 1em !important;
    font-size: 1em !important;
  }
}

@media (max-width: 360px) {
  .box-container-price {
    width: auto !important;
    padding: 10px;
  }
}
@media (min-width: 769px) {
    .mobile-menu { display: none !important; }
}

.btn-contratar:hover{
  opacity: .6 !important;
}

/*Naranja*/
.naranja{
    color: #f7931d;
}
.w-32 {
  width: 32px;
}
.logo-neo-blanco{
  display: flex; justify-content: space-between; width: 100%; box-sizing: border-box; position: relative;
}

.burga {
  background:none; border:none; outline:none; cursor:pointer; display:none;margin-top:1em;
}
.desk-menu{
  display: flex; align-items: center; margin-top:10px;
}

  #tv-section,
#flex-section {
  display: none;
}
.flex-row-70-30 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.flex-row-70-30 > .col-70 {
  flex: 0 0 70%;
}

.flex-row-70-30 > .col-30 {
  flex: 0 0 30%;
  display: flex;
  justify-content: flex-end;
}
.general-box-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.general-box.col-left {
  flex: 0 0 70%;
  background-color: #1c1c1c;
  border-radius: 10px;
  padding: 20px;
}

.general-box.col-right {
  flex: 0 0 30%;
  background-color: #2b2b2b;
  border-radius: 10px;
  padding: 20px;
  min-height: 100%; /* asegura altura pareja si contenido chico */
}
.promo-box{
  background: linear-gradient(145deg, #1c1c1e, #2c2c30); /* gris a gris oscuro */
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.3); /* glow naranja */
  border: 1px solid #ff8c00;
  border-radius: 15px;
}
