.btn-whatsapp {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.btn-whatsapp:hover {
    background: #1da85c;
    color: #ffffff !important;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-whatsapp .btn-icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.btn-whatsapp .btn-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem !important;
    line-height: 1;
}

.btn-whatsapp-lg {
    padding: 12px 24px;
    gap: 12px;
}

.btn-whatsapp-lg .btn-icon img {
    width: 24px;
    height: 24px;
}

.btn-whatsapp-lg .btn-text {
    font-size: 1rem;
}

#header {
    background: #2A3042;
    padding: 40px 0 60px 0;
    position: relative;
    overflow: hidden;
}

#header .texto {
    z-index: 4;
}

#header h1 {
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 105%;
}

@media all and (min-width: 992px) {
    #header h1 {
        font-size: 50px;
    }
}

#header span {
    color: #CED4DA;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.64px;
}

#header p {
    color: #E5F9FA !important;
    font-size: 18px;
    padding-bottom: 20px;
}

@media all and (min-width: 992px) {
    #header p {
        font-size: 20px;
    }
}

#header .logo-rombo img {
    margin-top: 0;
    width: 130px;
    filter: brightness(0) invert(1);
}

@media all and (min-width: 992px) {
    #header .logo-rombo img {
        width: 180px;
    }
}

#header .img-hero-2 {
    width: 100%;
    z-index: 3;
    position: relative;
    margin: 30px auto;
}

#header .img-hero-2 img {
    width: 100%;
    max-width: 660px;
    aspect-ratio: 3 / 2;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: block;
}

#header .bg {
    display: none !important;
}

#header {
    background-image: none !important;
}

@media (max-width: 767px) {
    #header {
        padding: 20px 0 40px 0;
    }

    #header .img-hero-2 img {
        border-radius: 12px;
        aspect-ratio: 4 / 3;
    }

    #header .logo-rombo img {
        width: 100px;
    }

    #header h1 {
        font-size: 28px;
    }

    #header p {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #header h1 {
        font-size: 34px;
    }

    #header .img-hero-2 img {
        border-radius: 16px;
    }
}

#bullets {
    position: relative;
    z-index: 2;
    margin-top: -30px !important;
}

.bullets-container {
    display: flex;
    min-height: 200px;
    padding: 48px 80px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: #F9FAFB !important;
    gap: 40px;
}

.bullet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
}

.bullet-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bullet-item p {
    align-self: stretch;
    color: #1F2937;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .bullets-container {
        flex-direction: column;
        height: auto;
        padding: 32px 20px;
        gap: 24px;
        margin-bottom: 10px;
    }

    .bullet-item {
        flex-direction: row;
        gap: 16px;
        width: 100%;
        justify-content: flex-start;
    }

    .bullet-item p {
        text-align: left;
        font-size: 13px;
    }

    .bullet-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bullets-container {
        padding: 48px 40px;
        gap: 24px;
        min-height: 180px;
    }

    .bullet-icon {
        width: 48px;
        height: 48px;
    }

    .bullet-item p {
        font-size: 13px;
    }
}

#divisiones {
    background: #FFFFFF;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.divisiones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.division-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.division-item.reverse {
    flex-direction: row-reverse;
}

.division-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 100px;
}

.division-tag {
    color: #F56300;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 3.6px;
    text-transform: uppercase;
}

.division-content h2 {
    color: #2A3042;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    margin: 0;
}

.division-content p {
    align-self: stretch;
    color: #6B7280;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    margin: 0;
}

.division-content p strong {
    color: #2A3042;
    font-weight: 600;
}

.btn-division {
    display: inline-flex;
    padding: 12px 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #F56300;
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: fit-content;
}

.btn-division:hover {
    background: #D45400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 99, 0, 0.3);
    color: #FFFFFF;
    text-decoration: none;
}

.division-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.division-image img {
    width: 560px;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    #divisiones {
        padding: 40px 0;
    }

    .divisiones-container {
        gap: 40px;
        padding: 0 16px;
    }

    .division-item {
        flex-direction: column;
        gap: 30px;
    }

    .division-item.reverse {
        flex-direction: column;
    }

    .division-content {
        width: 100%;
    }

    .division-tag {
        font-size: 18px;
        letter-spacing: 2.8px;
    }

    .division-content h2 {
        font-size: 32px;
    }

    .division-content p {
        font-size: 15px;
    }

    .division-image img {
        width: 100%;
        max-width: 400px;
    }

    .btn-division {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .division-item {
        gap: 40px;
    }

    .division-content h2 {
        font-size: 36px;
    }

    .division-image img {
        width: 400px;
    }

    .divisiones-container {
        padding: 0 32px;
    }
}


/* Sección Lo que nos distingue - Estilos específicos para traslado-personal */
#beneficios.distingue {
    background: #FFFFFF;
    padding: 80px 0;
}

#beneficios.distingue .beneficios-header {
    text-align: center;
    margin-bottom: 60px;
}

#beneficios.distingue .beneficios-tag {
    color: #F56300;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

#beneficios.distingue .beneficios-header h2 {
    color: #2A3042;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    margin: 0 0 16px 0;
}

#beneficios.distingue .beneficios-subtitle {
    color: #6B7280;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    max-width: 700px;
    margin: 0 auto;
}

#beneficios.distingue .beneficios-fila {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

#beneficios.distingue .beneficios-fila:last-child {
    margin-bottom: 0;
}

#beneficios.distingue .beneficio-card {
    display: flex !important;
    flex-direction: row !important;
    width: 420px;
    max-width: 100%;
    padding: 24px;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: auto;
    box-shadow: none;
}

#beneficios.distingue .beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

#beneficios.distingue .beneficio-icon {
    display: flex;
    width: 64px;
    height: 64px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: #CED4DA;
    font-size: 30px;
    flex-shrink: 0;
}

#beneficios.distingue .beneficio-card h3 {
    color: #1F2937;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 145%;
    margin: 0;
    text-align: left;
    font-family: Inter, sans-serif;
    flex: 1;
}

#beneficios.distingue .beneficios-fila-3 .beneficio-card {
    flex: 0 1 calc(33.333% - 14px);
}

@media (max-width: 1400px) {
    #beneficios.distingue .beneficio-card {
        width: 380px;
    }
}

@media (max-width: 1200px) {
    #beneficios.distingue .beneficio-card {
        width: 340px;
    }
    
    #beneficios.distingue .beneficios-fila-3 .beneficio-card {
        flex: 0 1 calc(50% - 10px);
    }
}

@media (max-width: 991px) {
    #beneficios.distingue .beneficios-fila-3 .beneficio-card {
        flex: 0 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    #beneficios.distingue {
        padding: 40px 0;
    }

    #beneficios.distingue .beneficios-header {
        margin-bottom: 32px;
    }

    #beneficios.distingue .beneficios-tag {
        font-size: 18px;
        letter-spacing: 2px;
    }

    #beneficios.distingue .beneficios-header h2 {
        font-size: 28px;
    }

    #beneficios.distingue .beneficios-subtitle {
        font-size: 15px;
        padding: 0 16px;
    }

    #beneficios.distingue .beneficio-card {
        width: 100%;
        padding: 20px;
        gap: 14px;
    }

    #beneficios.distingue .beneficios-fila-3 .beneficio-card {
        flex: 0 1 100%;
    }

    #beneficios.distingue .beneficios-fila {
        gap: 16px;
        padding: 0 16px;
    }

    #beneficios.distingue .beneficio-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        border-radius: 14px;
    }

    #beneficios.distingue .beneficio-card h3 {
        font-size: 13px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #beneficios.distingue {
        padding: 60px 0;
    }

    #beneficios.distingue .beneficios-header h2 {
        font-size: 36px;
    }

    #beneficios.distingue .beneficio-card {
        padding: 20px;
        gap: 14px;
    }

    #beneficios.distingue .beneficio-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }

    #beneficios.distingue .beneficio-card h3 {
        font-size: 13px;
    }
}

.estadisticas {
    background: #1F2937;
    padding: 60px 0;
    margin-bottom: -60px;
}

.estadisticas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.estadistica-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.estadistica-item.reverse {
    flex-direction: row-reverse;
}

.estadistica-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.estadistica-logo {
    width: 200px;
    height: 111.111px;
    aspect-ratio: 9/5;
    display: block;
    margin-bottom: 24px;
}

.estadistica-tag {
    color: #E5F9FA;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.1px;
    display: block;
    margin-bottom: 8px;
}

.estadistica-number {
    color: #FFFFFF;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    margin: 0;
}

.estadistica-number .highlight-number {
    color: #FF5F00;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
}

.estadistica-imagen {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.estadistica-imagen img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .estadistica-item {
        gap: 40px;
    }

    .estadistica-number,
    .estadistica-number .highlight-number {
        font-size: 52px;
    }

    .estadistica-tag {
        font-size: 20px;
    }

    .estadistica-logo {
        width: 160px;
        height: 88.888px;
    }
}

@media (max-width: 768px) {
    .estadisticas {
        padding: 40px 0;
    }

    .estadisticas-container {
        gap: 50px;
        padding: 0 16px;
    }

    .estadistica-item {
        flex-direction: column !important;
        gap: 24px;
    }

    .estadistica-item.reverse {
        flex-direction: column !important;
    }

    .estadistica-content {
        width: 100%;
    }

    .estadistica-number,
    .estadistica-number .highlight-number {
        font-size: 32px;
    }

    .estadistica-tag {
        font-size: 16px;
        letter-spacing: 1.8px;
    }

    .estadistica-logo {
        width: 120px;
        height: 66.666px;
        margin-bottom: 16px;
    }

    .estadistica-imagen {
        width: 100%;
    }

    .estadistica-imagen img {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .estadistica-item {
        gap: 30px;
    }

    .estadistica-number,
    .estadistica-number .highlight-number {
        font-size: 42px;
    }

    .estadistica-tag {
        font-size: 18px;
    }

    .estadistica-logo {
        width: 140px;
        height: 77.777px;
    }
}

.servicio-cliente {
    background: #FFFFFF;
    padding: 80px 0;
}

.servicio-header {
    text-align: center;
    margin-bottom: 60px;
}

.servicio-tag {
    color: #F56300;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.servicio-header h2 {
    color: #2A3042;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    margin: 0 0 16px 0;
}

.servicio-subtitle {
    color: #6B7280;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    max-width: 700px;
    margin: 0 auto;
}

.servicio-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
}

.servicio-cards .col-lg-6,
.servicio-cards .col-md-12 {
    padding: 0;
    display: flex;
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
    justify-content: center;
}

.servicio-card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.servicio-icon {
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: #CED4DA;
    font-size: 30px;
    flex-shrink: 0;
}

.servicio-card h3 {
    color: #1F2937;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.servicio-card p {
    color: #6B7280;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
}

.servicio-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.servicio-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1F2937;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    padding: 4px 0;
}

.servicio-list li img {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: block;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .servicio-cards .col-lg-6,
    .servicio-cards .col-md-12 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .servicio-cliente {
        padding: 40px 0;
    }

    .servicio-header {
        margin-bottom: 32px;
    }

    .servicio-tag {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .servicio-header h2 {
        font-size: 28px;
    }

    .servicio-subtitle {
        font-size: 15px;
        padding: 0 16px;
    }

    .servicio-cards {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
        margin-top: 32px;
    }

    .servicio-cards .col-lg-6,
    .servicio-cards .col-md-12 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .servicio-card {
        padding: 24px;
        gap: 14px;
    }

    .servicio-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        border-radius: 12px;
    }

    .servicio-card h3 {
        font-size: 20px;
    }

    .servicio-card p {
        font-size: 13px;
    }

    .servicio-list li {
        font-size: 13px;
        padding: 3px 0;
    }

    .servicio-list li img {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .servicio-cliente {
        padding: 60px 0;
    }

    .servicio-header h2 {
        font-size: 36px;
    }

    .servicio-cards .col-lg-6,
    .servicio-cards .col-md-12 {
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .servicio-card {
        padding: 28px;
    }

    .servicio-card h3 {
        font-size: 20px;
    }

    .servicio-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

#lo-que-nos-distingue {
    background: #FFFFFF;
    padding: 80px 0;
}

.distingue-header {
    text-align: center;
    margin-bottom: 56px;
}

.distingue-tag {
    color: #F56300;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.distingue-header h2 {
    color: #2A3042;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    margin: 0;
}

.distingue-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.distingue-cards .col-lg-6,
.distingue-cards .col-md-12 {
    padding: 0;
    display: flex;
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
    justify-content: center;
}

.distingue-card {
    display: flex;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 24px;
    background: #CED4DA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distingue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.distingue-card h3 {
    color: #1F2937;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin: 0;
}

.distingue-subcard {
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 18px;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distingue-subcard:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.distingue-icon {
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 14px;
    background: #E5F9FA;
    font-size: 28px;
    flex-shrink: 0;
}

.distingue-subcard-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.distingue-subtitle {
    color: #1F2937;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 145%;
    margin-bottom: 2px;
}

.distingue-text {
    color: #1F2937;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    margin: 0;
}

@media (max-width: 991px) {
    .distingue-cards .col-lg-6,
    .distingue-cards .col-md-12 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #lo-que-nos-distingue {
        padding: 40px 0;
    }

    .distingue-header {
        margin-bottom: 32px;
    }

    .distingue-tag {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .distingue-header h2 {
        font-size: 28px;
    }

    .distingue-cards {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .distingue-cards .col-lg-6,
    .distingue-cards .col-md-12 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .distingue-card {
        padding: 24px;
        gap: 16px;
    }

    .distingue-card h3 {
        font-size: 20px;
    }

    .distingue-subcard {
        padding: 16px;
        gap: 14px;
    }

    .distingue-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        border-radius: 12px;
    }

    .distingue-subtitle {
        font-size: 13px;
    }

    .distingue-text {
        font-size: 13px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #lo-que-nos-distingue {
        padding: 60px 0;
    }

    .distingue-header h2 {
        font-size: 36px;
    }

    .distingue-cards .col-lg-6,
    .distingue-cards .col-md-12 {
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .distingue-card {
        padding: 32px;
        gap: 18px;
    }

    .distingue-card h3 {
        font-size: 22px;
    }

    .distingue-subcard {
        padding: 20px;
        gap: 16px;
    }

    .distingue-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

.soluciones-medida {
    background: #1F2937;
    padding: 0;
    margin-top: -60px;
}

.soluciones-container {
    display: flex;
    padding: 100px 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.soluciones-tag {
    color: #E5F9FA;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.1px;
    display: block;
}

.soluciones-container h2 {
    color: #FFFFFF;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    margin: 0;
}

.soluciones-text {
    color: #E5F9FA;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    max-width: 800px;
    margin: 0;
}

.soluciones-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    max-width: 600px;
    text-align: left;
}

.soluciones-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    column-gap: 12px;
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    padding: 4px 0;
}

.soluciones-list li img {
    width: 24px;
    height: 24px;
    display: block;
}

.btn-soluciones {
    display: inline-flex;
    padding: 16px 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #F56300;
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    margin-top: 8px;
}

.btn-soluciones:hover {
    background: #D45400;
    color: #FFFFFF;
    text-decoration: none;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(245, 99, 0, 0.3);
}

@media (max-width: 768px) {
    .soluciones-container {
        padding: 60px 24px;
        gap: 24px;
    }

    .soluciones-tag {
        font-size: 18px;
        letter-spacing: 1.8px;
    }

    .soluciones-container h2 {
        font-size: 28px;
    }

    .soluciones-text {
        font-size: 15px;
        padding: 0 8px;
    }

    .soluciones-list {
        max-width: 100%;
        padding: 0 8px;
    }

    .soluciones-list li {
        font-size: 14px;
        gap: 10px;
    }

    .soluciones-list li img {
        width: 20px;
        height: 20px;
    }

    .btn-soluciones {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .soluciones-container {
        padding: 80px 48px;
        gap: 28px;
    }

    .soluciones-container h2 {
        font-size: 36px;
    }

    .soluciones-text {
        font-size: 16px;
    }

    .soluciones-list li {
        font-size: 15px;
    }

    .btn-soluciones {
        padding: 15px 30px;
        font-size: 15px;
    }
}

.flota {
    background: #FFFFFF;
    padding: 80px 0;
}

.flota-header {
    text-align: center;
    margin-bottom: 48px;
}

.flota-tag {
    color: #F56300;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.1px;
    display: block;
    margin-bottom: 14px;
}

.flota-header h2 {
    color: #2A3042;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 14px 0;
}

.flota-subtitle {
    color: #6B7280;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    max-width: 700px;
    margin: 0 auto;
}

.flota-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 24px;
    margin: 0 0 48px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.flota-cards .col-lg-4,
.flota-cards .col-md-6,
.flota-cards .col-sm-12 {
    padding: 0;
    margin: 0;
    width: auto;
    max-width: none;
    flex: none;
    display: flex;
}

.flota-card {
    display: flex;
    width: 100%;
    max-width: none;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 280px;
}

.flota-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.flota-icon {
    display: flex;
    width: 120px;
    height: 120px;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    background: #CED4DA;
    font-size: 48px;
    flex-shrink: 0;
}

.flota-card h3 {
    color: #1F2937;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.flota-nota {
    color: #6B7280;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

@media (max-width: 768px) {
    .flota {
        padding: 40px 0;
    }

    .flota-header {
        margin-bottom: 32px;
    }

    .flota-tag {
        font-size: 18px;
        letter-spacing: 1.8px;
        margin-bottom: 10px;
    }

    .flota-header h2 {
        font-size: 28px;
        letter-spacing: normal;
        margin-bottom: 10px;
    }

    .flota-subtitle {
        font-size: 15px;
        padding: 0 16px;
    }

    .flota-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .flota-card {
        padding: 24px;
        gap: 16px;
        min-height: 220px;
    }

    .flota-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
        border-radius: 45px;
    }

    .flota-card h3 {
        font-size: 16px;
    }

    .flota-nota {
        font-size: 12px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .flota-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .flota {
        padding: 60px 0;
    }

    .flota-header h2 {
        font-size: 36px;
    }

    .flota-card {
        padding: 28px;
        min-height: 260px;
    }

    .flota-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
        border-radius: 50px;
    }

    .flota-card h3 {
        font-size: 17px;
    }
}

.header-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.header-buttons .btn-transporte {
    display: inline-flex;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #F56300;
    color: #FFFFFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
    white-space: nowrap;
    min-width: 0;
}

.header-buttons .btn-transporte:hover {
    background: #D45400;
    color: #FFFFFF;
    text-decoration: none;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(245, 99, 0, 0.3);
}

@media (max-width: 768px) {
    .header-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .header-buttons .btn-transporte {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        white-space: normal;
        flex: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header-buttons {
        gap: 10px;
    }

    .header-buttons .btn-transporte {
        padding: 10px 16px;
        font-size: 12px;
    }
}

#beneficios .tramite-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#beneficios .tramite-header h2 {
    max-width: 700px;
    margin: 0 auto 24px auto;
}

#beneficios .tramite-header .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
