.fixed-top {
    background-color: white !important  ;
}
.plans-section {
    background: #fff;
}

.plans-section .title{
  font-size:48px;
  font-weight:800;
  color:#0a2f67;
}

.plans-section .subtitle{
  font-size:18px;
  color:#55667d;
}

.plan-card{
  position:relative;
  padding:35px;
  border-radius:25px;
  height:100%;
  transition:.3s;
}

.plan-card.basic-card{
  border:2px solid #e8e8e8;
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.plan-card.premium-card{
  background:#062d69;
  color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.recommended{
  position:absolute;
  top:-12px;
  right:20px;
  background:#f58220;
  color:#fff;
  padding:8px 20px;
  border-radius:30px;
  font-size:12px;
  font-weight:700;
}

.plan-header{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:25px;
}

.plan-header .icon-circle{
  width:55px;
  height:55px;
  border-radius:50%;
  background:#fff1e7;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
}

.plan-header h3{
  margin:0;
  font-size:30px;
  font-weight:700;
}

.plan-header h6{
  margin:0;
  font-size:16px;
}

.price{
  font-size:22px;
  font-weight:700;
  margin-bottom:30px;
}

.price span{
  font-size:58px;
  font-weight:800;
}

.price small{
  font-size:14px;
  font-weight:400;
}

.features{
  list-style:none;
  padding:0;
  margin-bottom:35px;
}

.features li{
  margin-bottom:14px;
}

.btn-plan{
  width:100%;
  height:50px;
  border:none;
  border-radius:12px;
  background:#f58220;
  color:#fff;
  font-size:20px;
  font-weight:700;
}

.btn-plan:hover{
  background:#de6d00;
  color:#fff;
}

@media(max-width:768px){
  .plans-section .title{
    font-size:34px;
  }
  .plan-header h3{
    font-size:24px;
  }
  .price span{
    font-size:42px;
  }
}

.business-packages {
  margin-top: 5rem;
}

.business-title {
  font-weight: 800;
  color: #1f2b5c;
  text-transform: uppercase;
}

.business-subtitle {
  color: #6b7280;
}

.business-card {
  background: #fff;
  border: 2px solid #d7dde8;
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
  transition: .3s ease;
}

.business-card:hover {
  transform: translateY(-4px);
}

.business-card-premium {
  border-color: #f59e0b;
}

.business-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.business-icon {
  font-size: 2rem;
}

.business-price {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f2b5c;
}

.business-price span {
  font-size: 2.5rem;
}

.saving {
  margin-top: .5rem;
  color: #16a34a;
  font-weight: 700;
}

.sello{
  display:flex;
  align-items:center;
  gap:12px;
  margin:20px 0;
  font-size:16px;
  font-weight:500;
}

.sello i{
  font-size:22px;
}

.sello span{
  color:inherit;
  font-weight:500;
}

/* Existing styles */
:root {
    --primary: #0d2b5c;
    --secondary: #f58220;
}

body {
    font-family: 'Segoe UI', sans-serif;
    padding-top: 110px;
}

.text-orange {
    color: var(--secondary);
}

.text-warning {
    color: var(--secondary) !important;
}

.btn-warning {
    background: var(--secondary);
    color: white;
    border: none;
}

.btn-warning:hover {
    background: #df6e0d;
    color: white;
}
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../img/banner_2.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
    }
    .hero-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 35%, rgba(255,255,255,.25) 70%, rgba(255,255,255,0) 100% );
        z-index: 1;
    }
    .hero-section .container {
        position: relative;
        z-index: 2;
    }
.hero-img {
    max-width: 100%;
    border-radius: 15px;
}

.stat-box {
    background: var(--primary);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 40px;
}

.problem-card,
.step-card {
    text-align: center;
    padding: 20px;
}

.problem-card .icon-circle,
.step-card .icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 30px;
}

.testimonial-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
}

.cta-section {
    margin: 70px 0;
}

.cta-box {
    background: #17386C;
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-title {
    margin: 0;
    color: #fff;
    font-size: 2.3rem;
    font-weight: 800;
}

    .cta-title span {
        color: #F58220;
    }

.btn-cta {
    background: #F58220;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: .3s;
}

    .btn-cta:hover {
        background: #de6d00;
        color: #fff;
    }

@media (max-width:768px) {

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .btn-cta {
        width: 100%;
    }
}
.social-impact-section {
    background: #f6f8f7;
    border-radius: 20px;
}

.nosotros-section {
    background: #f8f9fa;
}

.contact-section {
    background: #f8f8f8;
    padding: 40px 0;
}

.contacto-wrapper {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.formulario-container {
    padding: 40px;
    background: #fff;
}

.formulario-container h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f2d5c;
    margin-bottom: 10px;
}

.form-control,
.form-select {
    border-radius: 10px;
    min-height: 50px;
}

textarea.form-control {
    min-height: 120px;
}

.imagen-container {
    background: #f3f3f3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.imagen-container img {
    max-height: 600px;
    object-fit: contain;
}

.info-container {
    background: #002f75;
    color: white;
    padding: 40px 30px;
}

.info-container h4 {
    text-align: center;
    margin-bottom: 35px;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: #28c76f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-item span {
    font-size: 14px;
    opacity: .8;
}

.info-item p {
    margin: 0;
    font-weight: 500;
}

footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 30px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary);
}

.navbar-dark {
    background: #000;
}

.navbar .nav-link.active {
    color: #0a2e73 !important;
    font-weight: 800;
}

.seal-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
}

.cliente-info-section {
    background: #f8f9fa;
}

@media (max-width: 991px) {
    .formulario-container,
    .info-container {
        padding: 25px;
    }

    .imagen-container img {
        max-height: 400px;
    }

    .formulario-container h2 {
        font-size: 1.7rem;
    }
}


.team-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    height: 100%;
    transition: .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0,0,0,.12);
    }

.team-image {
    width: 48%;
    flex-shrink: 0;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.team-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .team-info h3 {
        color: #082B68;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .team-info h5 {
        color: #F58220;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .team-info p {
        color: #24344d;
        line-height: 1.8;
        font-size: 18px;
    }

@media(max-width:992px) {

    .team-card {
        flex-direction: column;
    }

    .team-image {
        width: 100%;
    }

        .team-image img {
            height: 340px;
        }

    .team-info {
        padding: 25px;
    }
}

.how-section {
    min-height: 700px !important;
    background-image: linear-gradient( 90deg, rgba(255,255,255,.95) 45%, rgba(255,255,255,.65) 70%, rgba(255,255,255,0) 100% ), url('/img/banner_2.png') !important;
    background-size: cover !important;
    background-position: right center !important;
    background-repeat: no-repeat !important;
}
.how-section-header {
    padding-top: 160px;
    padding-bottom: 30px;
}
.how-section-title {
    color: #0A2E73;
    font-size: 46px;
    font-weight: 800;
}

.how-section-subtitle {
    font-size: 24px;
    color: #222;
}

.how-section-steps-box {
    background: #fff;
    border-radius: 30px;
    padding: 60px 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    position: relative;
}

.how-section-step {
    padding: 15px;
    position: relative;
}

.how-section-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ff8500;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -90px;
    margin-bottom: 20px;
}

.how-section-icon {
    font-size: 42px;
    color: #0A2E73;
    margin-bottom: 15px;
}

.how-section-step-title {
    color: #0A2E73;
    font-weight: 800;
    font-size: 18px;
    min-height: 50px;
}

.how-section-step-description {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

    .how-section-arrow {
        position: absolute;
        top: 70px;
        right: -15px;
        color: #0A2E73;
        font-size: 35px;
        font-weight: bold;
    }

.how-section-info-box {
    background: #fff;
    border-radius: 18px;
    padding: 25px 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.how-section-info-title {
    color: #0A2E73;
    font-weight: 700;
}

.how-section-info-text {
    margin: 0;
}

.how-section-clock {
    color: #0A2E73;
    font-size: 42px;
}

.how-section-btn {
    background: #ff8500;
    border: none;
    border-radius: 8px;
    padding: 14px 35px;
    font-weight: 700;
    color: #fff;
}

    .how-section-btn:hover {
        background: #e87600;
        color: #fff;
    }


.about-section {
    padding: 120px 0;
    background: linear-gradient(0deg, rgba(255,255,255,.98) 45%, rgba(255,255,255,.70) 65%, rgba(255,255,255,0) 100%), url('/img/banner_nosotros.png');
    background-size: cover;
    background-position: right center;
}

.about-section-header {
    padding-bottom: 80px;
}

.about-section-subtitle {
    color: #ff8500;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-section-title {
    color: #ff8200;
    font-size: 54px;
    font-weight: 800;
}
.about-section-title2 {
    color: #0a2e73;
    font-size: 54px;
    font-weight: 800;
}

.about-section-process {
    background: #fff;
    border-radius: 28px;
    padding: 60px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.about-section-step {
    position: relative;
}

.about-section-number {
    width: 46px;
    height: 46px;
    background: #ff8500;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: -84px;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 22px;
}

.about-section-icon {
    font-size: 42px;
    color: #0A2E73;
    margin-bottom: 18px;
}

.about-section-step-title {
    color: #0A2E73;
    font-weight: 800;
    font-size: 28px;
}

.about-section-step-description {
    margin-top: 40px;
    font-size: 18px;
    line-height: 2;
}

.about-section-arrow {
    position: absolute;
    right: -22px;
    top: 60px;
    color: #0A2E73;
    font-size: 32px;
}

.fw-bold {
    color: #0d2b5c;
}



.social-impact-section {
    background: #fff;
}

    .social-impact-section h2,
    .social-impact-section h4 {
        line-height: 1.2;
    }

    

.seal-box {
    background: #173F73;
    border-radius: 10px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.seal-logo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #FFD400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
}

.seal-content {
    flex: 1;
}

.seal-title {
    margin: 0 0 6px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.seal-description {
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: .9rem;
}

@media (max-width:768px) {

    .seal-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .seal-title {
        font-size: 1.25rem;
    }

    .seal-logo {
        margin-bottom: 10px;
    }
}

