.colorFont {
  color: #000000;
  font-weight: bolder;
  text-align: justify;
}

.juastifyText {
  text-align: center;
  font-size: 16px;
}

.colorFontWhite {
  color: #ffffff;
  font-weight: bolder;
  text-align: justify;
}

.menu-transparent {
  background-color: #ffffff !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-nav li {
  list-style: none;
}

.navbar-nav li img {
  width: 20px;
  cursor: pointer;
}

.custom-file-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.custom-file-input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.custom-file-label {
  display: block;
  padding: 10px 15px;
  background-color: #000000;
  color: white;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  z-index: 1;
  position: relative;
}

.custom-file-label:hover {
  background-color: #0056b3;
}

.logo-navbar {
  width: 100px;
  height: auto;
}

.rounded {
  border-radius: 30px;
}

#banner {
  width: 100%;
}

.banner-img {
  display: block;
  width: 100%;
  height: auto;
}


.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(16px, 4vw, 48px);
  box-sizing: border-box;
  overflow: hidden;
}

.hero.hero--center {
  min-height: 100vh;
  justify-content: center;
}

.hero--center .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  gap: 2px;
}

.hero--center .hero__logo {
  display: block;
  margin: 0 auto 16px;
}


.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(50deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, 0) 30%);
  z-index: 1;
  pointer-events: none;
}


.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
}


.hero__logo {
  width: clamp(250px, 10vw, 250px);
  height: auto;
  margin-bottom: 16px;
}

.hero__title {
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  font-size: clamp(28px, 5vw, 48px);
}

.hero__text {
  margin: 0 0 24px;
  font-size: clamp(14px, 2.2vw, 18px);
  opacity: .95;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, opacity .15s ease;
}

.btn--primary {
  background: #1499D5;
  color: #fff;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: .95;
}


/*panel inferior*/
.summary-panel {
  width: 100%;
  display: block;
}

.summary-panel--overlap {
  margin-top: -12px;
}


.summary-panel__bg {
  width: 100%;
  background: linear-gradient(50deg, rgba(20, 153, 213, 0.95) 0%, rgba(8, 48, 65, 0.95) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 24px 16px;
}


.summary-panel__content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.55;
  font-size: clamp(32px, 1.7vw, 16px);
}

.summary-panel__content p {
  margin: 0;
}

.summary-panel__content p+p {
  margin-top: 10px;
}

.summary-panel__bg {
  width: 100%;
  background: linear-gradient(90deg, rgba(20, 153, 213, 0.95) 0%, rgba(7, 57, 78, 0.95) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 24px 16px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}
/*panel inferior*/


/*sobre nosotros*/
#about .about-row {
  gap: 10px;
}

#about .about-img img {
  display: block;
  width: 95%;
  border-radius: 20px;
}

#about .about-col {
  max-width: 900px;
}

#about .about-title {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.5;
  font-size: 20px;
  font-family: "Montserrat", Helvetica, sans-serif;
  color: #1499D5;
  font-weight: bold;
}

#about .about-copy {
  color: #1B1A1A;
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
}

#about .about-copy p {
  margin: 0 0 16px;
}

@media (min-width:1400px) {
  #about .about-img img {
    height: 480px;
  }
}

@media (max-width: 991.98px) {
  #about .about-row {
    gap: 24px;
  }

  #about .about-title {
    font-size: 34px;
  }

  #about .about-img img {
    height: 340px;
  }
}

@media (max-width: 575.98px) {
  #about .about-title {
    font-size: 28px;
    letter-spacing: .04em;
  }

  #about .about-img img {
    height: 260px;
    border-radius: 12px;
  }
}
/*sobre nosotros*/


/* Servicios */
#services 
.services-grid {
  background: transparent;   
  padding: 24px 16px 32px;  
  margin-top: 12px;     
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  align-items: start;
  margin-top: 24px;
  position: relative;    
}

.service-card {
  padding: 16px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 25px;
  margin-right: 25px;
  border-radius: 24px;
  min-height: 195px;
  background-color: #ffffff;
  display: block;
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-body {
  flex: 1;
  text-align: center;
}

.service-title {
  margin: 0 0 6px;
  font-size: 20px;
  margin-bottom: 10%;
  font-weight: 800;
  letter-spacing: .2em;
}

.service-text {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  text-align: center;
  color: #1B1A1A;
}


#services {
  position: relative;
  overflow: hidden;       
  background: transparent;  
}

#services .container-fluid {
  position: relative;
  z-index: 2;
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;        
  object-position: center; 
  display: block;
}

.services__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);           
  pointer-events: none;
}

#services {
  min-height: 520px;    
}

@media (min-width: 768px) {
  #services { padding-top: 8px; } 
}
/* Servicios */


/* IDEAL */
.bg-brand {
  background-color: #0d2b4a;
}

.text-white-75 {
  color: rgba(255, 255, 255, .86) !important;
}

.ideal-list {
  max-width: 1000px;
  list-style-position: inside;
  padding-left: 10%;
  margin: 0 auto;
  text-align: center;
  text-align: justify;
  color: rgba(255, 255, 255, .86);
}

.ideal-list li {
  margin-bottom: .5rem;
  line-height: 1.6;
}

#ideal .ideal-img {
  display: block !important;
  margin: 1rem auto 2.25rem !important;
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  float: none !important;
}

:root {
  --fs-body: clamp(14px, 1.1vw + 0.2rem, 14px);
  --fs-h2: clamp(24px, 3.2vw + 0.2rem, 20px);
  --lh-body: 1.7;
  --lh-h2: 1.15;
}

#ideal h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: .02em;
  margin-bottom: clamp(12px, 1.6vw, 24px);
}

#ideal .ideal-list {
  max-width: clamp(680px, 80vw, 1000px);
  margin: 0 auto;
  padding-left: clamp(0px, 4vw, 10%);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, .86);
  text-align: justify;
  hyphens: auto;
  word-break: normal;
}

#ideal .ideal-list li {
  margin-bottom: clamp(.35rem, 1.2vw, .75rem);
}

#ideal .ideal-img {
  margin: clamp(.75rem, 2vw, 1.25rem) auto clamp(1.25rem, 3vw, 2.25rem) !important;
  max-width: clamp(300px, 60vw, 460px);
}

@media (max-width: 992px) {
  #ideal .ideal-list {
    padding-left: clamp(0px, 2vw, 24px);
  }
}

@media (max-width: 576px) {
  #ideal .ideal-list {
    text-align: left;
  }
}

@media (max-width: 992px) {
  .ideal-img {
    max-width: 100%;
  }
}

.rounded-4 {
  border-radius: 1rem;
}
/* IDEAL */


/* Elegirnos */
.bg-ice {
  background: linear-gradient(180deg, #cecece 0%, #ffffff 100%);
}


#elegirnos p {
  color: #ffffff;
  line-height: 1.65;
}

#elegirnos {
  padding-top: 40px; 
  padding-bottom: 120px; 
  margin-bottom: 10px; 
  position: relative; 
  --hero-overlap: 390px; 
}


.feature-card {
  background: #117BAA;
  box-shadow: 0 10px 24px rgba(20, 61, 99, .08);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#elegirnos .row:last-child {
  margin-bottom: 0;
}


#planes, 
#pricing, 
section + section {
  margin-top: 0; 
}

.feature-card--split {
  display: flex;
  align-items: stretch;
}


.hero-img {

    display: block;
  margin-bottom: calc(var(--hero-overlap) * -1);
  position: relative;
  z-index: 0;
  width: 520px;
  height: 500px;
}


.feature-content {
  flex: 1 1 auto;
  padding: 22px 24px;
  color: #ffffff;
  line-height: 1.65;
  font-size: clamp(16px, 1.2vw + 12px, 18px);
}


.row .col-md-6 .feature-card,
.row .col-lg-8 .feature-card {
  height: 100%;
}

@media (max-width: 991.98px) {
  #elegirnos {
    padding-top: 24px;
    --hero-overlap: 0px;
    padding-bottom: 50px;
  }
  #elegirnos .hero-img {
    margin-bottom: 0;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .feature-card--split {
    flex-direction: column;
  }
  .feature-content {
    padding-top: 16px;
  }
}
/* Elegirnos */



/* planes y precios*/
.plan-card{
  background:#fff;
  border:2px solid rgba(0,0,0,.65);
  border-radius:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
  padding:22px 22px 20px;
  text-align:center;
}

.plan-title{
  margin:0 0 10px;
  font-size:18px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#1b1a1a;
}

.plan-price{ margin:6px 0 14px; }
.plan-price .amount{
  font-size:28px;         
  font-weight:900;
  color:#1499D5;         
  line-height:1;
}
.plan-price .per{
  margin-top:4px;
  font-size:14px;
  font-weight:800;
  color:#1499D5;          
  text-transform:capitalize;
}

.plan-desc{
  margin:0 0 16px;
  color:#1B1A1A;
  line-height:1.45;
}


.plan-cta{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:#1499D5;
  color:#fff;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 6px 0 rgba(0,0,0,.35);  
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.plan-cta:hover{ transform:translateY(-1px); opacity:.95; }
.plan-cta:active{ transform:translateY(0); box-shadow:0 3px 0 rgba(0,0,0,.35); }


.row .col-12.col-sm-6.col-md-4.d-flex > .plan-card{ height:100%; }
#plans.section{ padding-top:28px; padding-bottom:40px; }

@media (max-width: 575.98px){
  .plan-card{ padding:18px; }
  .plan-price .amount{ font-size:26px; }
}
/*planes y precios */




/*contacto*/
#contacto.bg-contact {
  background: linear-gradient(180deg, #e9edf1 0%, #f7f8f9 100%);
  padding: 32px 0 28px;
}


#contacto .container {
  max-width: 1140px;
  padding-left: 12px;
  padding-right: 12px;
}


#contacto .contact-title {
  display: block;
  background: #000;
  color: #1499D5;
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 16px;
  margin: 0 0 16px;  
  border-radius: 0;
}


#contacto .contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px 32px;     
  align-items: start;
}

#contacto .field { display: flex; flex-direction: column; }
#contacto .field.field--full { grid-column: 1 / -1; }

#contacto .form-label-sm {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

#contacto .form-line {
  border: 0;
  border-bottom: 2px solid rgba(0,0,0,.35);
  border-radius: 0;
  background: transparent;
  color: #1B1A1A;
  padding: 6px 2px;
  outline: none;
}
#contacto .form-line:focus { border-bottom-color: #1499D5; }

#contacto .textarea {
  min-height: 120px;
  resize: vertical;
}

#contacto .actions {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 6px;
}
#contacto .btn-contact {
  background: #1499D5;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 800;
  letter-spacing: .06em;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
#contacto .btn-contact span { margin-left: 6px; }

#contacto .contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0;   
}

#contacto .info-card {
  background: #000;
  color: #fff;
  padding: 18px 20px;
  margin: 0;                      
  line-height: 1.6;
}


#contacto .contact-title{
  margin-bottom: 0;              
}


#contacto .row.gx-4{
  --bs-gutter-y: 0 !important;    
  margin-top: 0 !important;
}

#contacto .row.gx-4 > [class*="col-"]{
  padding-top: 0 !important;
}

#contacto .contact-form,
#contacto .contact-aside,
#contacto .info-card{
  margin-top: 0 !important;
}

#contacto .photo-card { margin: 0; }
#contacto .photo-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 8px 8px;     
  object-fit: cover;
}

@media (max-width: 991.98px) {
  #contacto .contact-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/*contacto*/




/* Responsivo */
@media (min-width: 992px) {
  #confianza img {
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .service-head {
    align-items: center;
  }
}

@media (max-width: 1200px) {
  #services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  #services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #services .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
}

@media (min-width: 768px) {
  .logo-navbar {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .logo-navbar {
    margin-top: 0;
  }
}

.quote-image {
  width: 100%;
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cert-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.footer-pequeno {
  padding-top: 40px;
  padding-bottom: 150px;
  font-size: 1.3rem;
}

nav {
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 15px;

}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a,
.nav-links img {
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}

/* Botón hamburguesa */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive: solo se muestra la hamburguesa en móviles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #000000;
    width: 200px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Responsivo */

.img-uniform {
  width: 100%;
  max-width: 250px;
  height: 250px;
  object-fit: contain;
  background-color: #fff;
}