/* ========================================
   SAPSA - Custom Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    max-width: 100vw;
    overflow-x: clip;
}

/* ---- Utility ---- */
.blend-soft-light {
    mix-blend-mode: soft-light;
}

.blend-multiply {
    mix-blend-mode: multiply;
}

/* ---- Buttons ---- */
/* Botón Nosotros: blur, sin borde */
.btn-cta-nosotros {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 153, 192, 0.6);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    border: none;
    transition: background 0.3s ease;
}

.btn-cta-nosotros:hover {
    background: rgba(34, 153, 192, 0.8);
}

/* Botón Servicios: borde cyan, sin blur */
.btn-cta-servicios {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 63, 113, 0.7);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #2299c0;
    transition: border-width 0.2s ease, padding 0.2s ease;
    margin-top: 12px;
}

.btn-cta-servicios:hover {
    border-width: 3px;
    padding: 18px 46px;
    background: rgba(34, 153, 192, 0.5);
}

/* ---- Políticas links ---- */
.politica-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 24px 40px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #003b71;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 600px;
}

.politica-link:hover {
    background: #e0f4fa;
    transform: translateY(-2px);
}

.politica-link svg {
    flex-shrink: 0;
    color: #2299c0;
}

/* ---- Hero graphic animation ---- */
.hero-graphic {
    transition: transform 0.6s ease;
}

.hero-section:hover .hero-graphic {
    transform: scale(1.01);
}

/* ---- Navbar ---- */
.nav-bar {
    position: absolute;
    right: 90px;
    top: 121px;
    width: 660px;
    height: 79px;
    background: #2299c0;
    border-radius: 50px;
    backdrop-filter: blur(2px);
    mix-blend-mode: soft-light;
    z-index: 1;
}

.nav-links {
    position: absolute;
    right: 90px;
    top: 138px;
    display: flex;
    gap: 32px;
    z-index: 2;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 45px;
    border-radius: 50px;
    background: #2299c0;
    backdrop-filter: blur(8px);
    mix-blend-mode: multiply;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.nav-link.active {
    background: #173f71;
    mix-blend-mode: soft-light;
}

.nav-link:hover {
    opacity: 0.85;
}

.nav-logo {
    position: absolute;
    left: 101px;
    top: 98px;
    z-index: 2;
}

.nav-logo img {
    width: 510px;
    height: auto;
}

/* ---- Mobile Menu ---- */
.mobile-menu-btn {
    display: none;
    background: rgba(34, 153, 192, 0.5);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 14px;
    width: 52px;
    height: 52px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(34, 153, 192, 0.7);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
    transform-origin: center;
}

.mobile-menu-btn.open {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(160deg, #173f71 0%, #1a5a8a 50%, #2299c0 100%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-overlay a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 16px 44px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-nav-overlay.open a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-overlay.open a:nth-of-type(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.open a:nth-of-type(2) { transition-delay: 0.18s; }
.mobile-nav-overlay.open a:nth-of-type(3) { transition-delay: 0.26s; }
.mobile-nav-overlay.open a:nth-of-type(4) { transition-delay: 0.34s; }

.mobile-nav-overlay a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-overlay a.active {
    color: #fff;
    background: rgba(34, 153, 192, 0.5);
    border-color: rgba(34, 153, 192, 0.6);
}

/* ---- Footer ---- */
.footer {
    width: 100%;
    padding: 60px 0;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    padding: 0 80px;
    gap: 60px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img.footer-logo-main {
    width: 424px;
    height: auto;
}

.footer-logo img.footer-logo-secondary {
    width: 277px;
    height: auto;
    margin-top: 80px;
}

.footer-info {
    display: flex;
    gap: 80px;
    margin-left: auto;
}

.footer-col h4 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.footer-col p, .footer-col a {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    line-height: 1.6;
}

/* ---- Section titles ---- */
.section-subtitle {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
}

.section-title {
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

/* ---- Decorative line ---- */
.decorative-line {
    width: 557px;
    height: 3px;
    background: #fff;
}

/* ---- Values section (nosotros) ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    align-items: start;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-dot {
    width: 24px;
    height: 24px;
    background: #2299c0;
    border-radius: 50%;
}

.value-line-short {
    width: 5px;
    height: 125px;
    background: #2299c0;
}

.value-line-long {
    width: 5px;
    height: 327px;
    background: #2299c0;
}

.value-icon {
    width: 219px;
    height: 219px;
}

.value-label {
    font-size: 30px;
    font-weight: 700;
    color: #173f71;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* ---- Image hover zoom ---- */
.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* ---- Pagination dots (servicios) ---- */
.pagination-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dot-active {
    width: 114px;
    height: 25px;
    background: #adadad;
    border-radius: 50px;
}

.dot {
    width: 26px;
    height: 25px;
    background: #dedede;
    border-radius: 50px;
}

.mision-vision-container {
    padding-bottom: 40px !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1400px) and (min-width: 1025px) {
    /* Header: reduce logo + nav to avoid overlap */
    header.relative {
        overflow: hidden;
    }
    .nav-logo {
        left: 40px;
        top: 80px;
    }
    .nav-logo img {
        width: 320px;
    }
    .nav-bar {
        width: 38%;
        right: 5%;
        top: 90px;
        height: 60px;
    }
    .nav-links {
        right: 5%;
        top: 90px;
        height: 60px;
        gap: 8px;
        display: flex;
        align-items: center;
    }
    .nav-link {
        width: 80px;
        height: 36px;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Servicios: image 45%, text gets more room */
    .servicios-image {
        width: 42% !important;
    }
    .servicios-text {
        padding: 20px 24px 30px !important;
    }
    .servicios-text .section-title {
        font-size: 64px;
    }
    .servicios-text li {
        font-size: 24px !important;
    }
    .btn-cta-servicios {
        font-size: 22px !important;
        padding: 16px 32px !important;
    }

    /* Nosotros page: hide decorative images */
    .img-decorative-8088 {
        display: none !important;
    }
    .img-decorative-fb1c {
        display: none !important;
    }
    .arch-image-container {
        margin-top: 0 !important;
        height: 0;
        overflow: hidden;
    }
    .mision-vision-container {
        padding: 0 60px !important;
    }

    /* Values: icon + label in row, hide dots and lines */
    .value-line-short,
    .value-line-long {
        display: none;
    }
    .value-dot {
        display: none;
    }
    .values-grid {
        grid-template-columns: repeat(2, auto);
        gap: 30px 60px;
        justify-content: center;
        max-width: 700px;
        margin: 0 auto;
    }
    .value-item {
        flex-direction: row;
        gap: 16px;
        align-items: center;
    }
    .value-icon {
        width: 80px;
        height: 80px;
    }
    .value-label {
        font-size: 22px;
        margin: 0;
    }
    .valores-section {
        padding: 60px 0 40px !important;
    }
}

@media (max-width: 1024px) {
    .nav-bar {
        display: none;
    }
    .nav-links {
        display: none;
    }
    .nav-logo {
        left: 20px;
        top: 20px;
    }
    .nav-logo img {
        width: 260px;
    }
    .mobile-menu-btn {
        display: flex;
        position: fixed;
        left: calc(100vw - 72px);
        top: 20px;
        z-index: 95;
    }
    .section-title {
        font-size: 60px;
    }
    .section-subtitle {
        font-size: 28px;
    }
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 30px;
    }
    .footer-info {
        margin-left: 0;
        flex-direction: column;
        gap: 30px;
    }
    .footer-logo img.footer-logo-main {
        width: 300px;
    }
    .footer-logo img.footer-logo-secondary {
        margin-top: 30px;
        width: 200px;
    }

    /* Hero */
    .hero-container {
        height: 500px !important;
        padding: 0 20px !important;
        margin-top: -100px !important;
    }
    .hero-container .hero-inner {
        border-radius: 30px !important;
    }

    /* Sobre Nosotros */
    .nosotros-wrapper {
        padding: 40px 20px !important;
    }
    .nosotros-card {
        height: auto !important;
        min-height: 0 !important;
        border-radius: 30px !important;
    }
    .nosotros-content {
        position: relative !important;
        padding: 40px 30px !important;
        flex-direction: column !important;
    }
    .nosotros-content li {
        font-size: 22px !important;
    }
    .nosotros-content .btn-cta-nosotros {
        font-size: 20px;
        padding: 16px 36px;
        margin-top: 24px;
    }

    /* Servicios */
    .servicios-wrapper {
        padding: 0 20px 60px !important;
    }
    .servicios-flex {
        flex-direction: column !important;
        min-height: 0 !important;
    }
    .servicios-image {
        width: 100% !important;
        min-height: 300px !important;
        border-radius: 30px !important;
    }
    .servicios-image img {
        border-radius: 30px !important;
    }
    .servicios-text {
        padding: 30px 24px !important;
    }
    .servicios-text li {
        font-size: 22px !important;
    }
    .servicios-text .btn-cta-servicios {
        font-size: 20px;
        padding: 16px 36px;
    }

    /* Footer */
    .footer-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 20px !important;
        gap: 24px !important;
    }
    .footer-logo-area {
        min-width: 0 !important;
    }
    .footer-logo-area img:first-child {
        width: 250px !important;
    }
    .footer-logo-area img:last-child {
        width: 180px !important;
    }
    .footer-info-cols {
        margin-left: 0 !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center;
    }

    /* Header */
    header.relative {
        height: 120px !important;
    }
    .btn-cta-nosotros {
        font-size: 20px !important;
        padding: 16px 36px !important;
    }
    .btn-cta-servicios {
        font-size: 20px !important;
        padding: 16px 36px !important;
    }
    .decorative-line {
        width: 100%;
        max-width: 350px;
    }

    /* ---- Nosotros page ---- */
    .nosotros-hero-box {
        margin-left: 20px !important;
        margin-right: 20px !important;
        margin-top: 100px !important;
        padding: 40px 30px 0 !important;
        border-radius: 40px 40px 0 0 !important;
    }
    .nosotros-description {
        font-size: 20px !important;
        margin-top: 40px !important;
    }
    .nosotros-service-icons {
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 16px !important;
    }
    .nosotros-service-icons img {
        width: 80px !important;
        height: 80px !important;
    }
    .mv-title {
        font-size: 60px !important;
    }
    .mv-subtitle {
        font-size: 28px !important;
    }
    .mv-text {
        font-size: 20px !important;
    }
    .mision-vision-container {
        padding: 0 40px !important;
    }
    .mision-block {
        margin-bottom: 80px !important;
    }
    .img-decorative-8088 {
        display: none !important;
    }
    .img-decorative-fb1c {
        display: none !important;
    }
    .arch-image-container {
        margin-top: 0 !important;
        height: 0;
        overflow: hidden;
    }
    .valores-section {
        padding: 60px 0 40px !important;
    }
    .valores-container {
        padding: 0 40px !important;
    }
    .valores-title {
        margin-bottom: 40px !important;
    }
    /* Values: icon + label in row, hide dots and lines */
    .value-line-short,
    .value-line-long {
        display: none;
    }
    .value-dot {
        display: none;
    }
    .values-grid {
        grid-template-columns: repeat(2, auto);
        gap: 24px 60px;
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }
    .value-item {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
    .value-icon {
        width: 60px;
        height: 60px;
    }
    .value-label {
        font-size: 20px;
        margin: 0;
    }

    /* ---- Servicios page ---- */
    .servicios-hero-image {
        margin-left: 20px !important;
        margin-right: 20px !important;
        height: 350px !important;
        border-radius: 30px 30px 0 30px !important;
    }
    .servicios-corner-img {
        width: 220px !important;
        height: 220px !important;
    }
    .servicios-corner-img img {
        margin-top: 10px !important;
        margin-left: 10px !important;
        border-radius: 30px !important;
    }
    .servicios-hero-title {
        bottom: 24px !important;
        left: 24px !important;
    }
    .sv-hero-title {
        font-size: 40px !important;
    }
    .servicios-main-title-section {
        padding: 50px 20px !important;
    }
    .sv-title {
        font-size: 50px !important;
    }
    .sv-subtitle {
        font-size: 24px !important;
    }
    .servicio-container {
        padding: 40px 24px !important;
    }
    .sv-section-title {
        font-size: 36px !important;
        margin-bottom: 20px !important;
    }
    .sv-text {
        font-size: 18px !important;
    }
    .servicio-right {
        text-align: left !important;
    }
    .servicio-right .sv-text-box {
        margin-left: 0 !important;
    }
    /* Politicas 1024 */
    .politicas-container {
        padding: 0 40px !important;
    }
    .politicas-title {
        flex-wrap: wrap;
        justify-content: center;
    }
    .politica-link {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-container {
        height: 350px !important;
        padding: 0 16px !important;
        margin-top: -60px !important;
    }
    .hero-container .hero-inner {
        border-radius: 30px !important;
    }

    /* Sobre Nosotros */
    .nosotros-wrapper {
        padding: 40px 16px !important;
    }
    .nosotros-card {
        height: auto !important;
        min-height: 0 !important;
        border-radius: 30px !important;
    }
    .nosotros-content {
        position: relative !important;
        padding: 40px 24px !important;
        flex-direction: column !important;
    }
    .nosotros-content .section-title {
        font-size: 44px;
    }
    .nosotros-content .section-subtitle {
        font-size: 22px;
    }
    .nosotros-content li {
        font-size: 20px !important;
    }
    .nosotros-content .btn-cta-nosotros {
        font-size: 18px;
        padding: 14px 32px;
        margin-top: 24px;
    }

    /* Servicios */
    .servicios-wrapper {
        padding: 0 16px 60px !important;
    }
    .servicios-flex {
        flex-direction: column !important;
        min-height: 0 !important;
    }
    .servicios-image {
        width: 100% !important;
        min-height: 250px !important;
        border-radius: 30px !important;
    }
    .servicios-image img {
        border-radius: 30px !important;
    }
    .servicios-text {
        padding: 30px 24px !important;
    }
    .servicios-text .section-title {
        font-size: 44px;
    }
    .servicios-text .section-subtitle {
        font-size: 22px;
    }
    .servicios-text li {
        font-size: 20px !important;
    }
    .servicios-text .btn-cta-servicios {
        font-size: 18px;
        padding: 14px 32px;
    }
    .nav-logo img {
        width: 200px;
    }
    header.relative {
        height: 100px !important;
    }
    .section-title {
        font-size: 44px;
    }
    .section-subtitle {
        font-size: 22px;
    }
    .btn-cta {
        font-size: 20px;
        padding: 14px 32px;
    }

    /* ---- Nosotros page ---- */
    .nosotros-hero-box {
        margin-left: 20px !important;
        margin-right: 20px !important;
        margin-top: 80px !important;
        padding: 40px 24px 0 !important;
        border-radius: 30px 30px 0 0 !important;
    }
    .nosotros-description {
        font-size: 18px !important;
        margin-top: 30px !important;
    }
    .nosotros-service-icons {
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 12px !important;
    }
    .nosotros-service-icons img {
        width: 70px !important;
        height: 70px !important;
    }
    .mv-title {
        font-size: 50px !important;
    }
    .mv-subtitle {
        font-size: 24px !important;
    }
    .mv-text {
        font-size: 18px !important;
    }
    .mision-vision-container {
        padding: 0 30px 40px !important;
    }
    .mision-block {
        margin-bottom: 60px !important;
    }
    .mision-title,
    .vision-title {
        flex-wrap: wrap;
    }
    .img-decorative-8088 {
        display: none !important;
    }
    .img-decorative-fb1c {
        display: none !important;
    }
    .arch-image-container {
        margin-top: 0 !important;
        height: 0;
        overflow: hidden;
    }
    .valores-section {
        padding: 60px 0 40px !important;
    }
    .valores-container {
        padding: 0 30px !important;
    }
    .valores-title {
        margin-bottom: 40px !important;
    }
    /* Values: icon + label in row, hide dots and lines */
    .value-line-short,
    .value-line-long {
        display: none;
    }
    .value-dot {
        display: none;
    }
    .values-grid {
        grid-template-columns: repeat(2, auto);
        gap: 24px 40px;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    .value-item {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
    .value-icon {
        width: 50px;
        height: 50px;
    }
    .value-label {
        font-size: 20px;
        margin: 0;
    }
    .btn-cta-nosotros {
        font-size: 18px !important;
        padding: 14px 32px !important;
    }
    .btn-cta-servicios {
        font-size: 18px !important;
        padding: 14px 32px !important;
    }
    .decorative-line {
        width: 100%;
        max-width: 280px;
    }
    /* Servicios page 768 */
    .servicios-hero-image {
        height: 280px !important;
        margin-left: 16px !important;
        margin-right: 16px !important;
        border-radius: 30px 30px 0 30px !important;
    }
    .servicios-corner-img {
        width: 170px !important;
        height: 170px !important;
    }
    .servicios-corner-img img {
        margin-top: 8px !important;
        margin-left: 8px !important;
        border-radius: 25px !important;
    }
    .sv-hero-title {
        font-size: 32px !important;
    }
    .servicios-main-title-section {
        padding: 40px 16px !important;
    }
    .sv-title {
        font-size: 36px !important;
    }
    .sv-subtitle {
        font-size: 20px !important;
    }
    .servicio-container {
        padding: 40px 20px !important;
    }
    .sv-section-title {
        font-size: 28px !important;
    }
    .sv-text {
        font-size: 16px !important;
    }
    .mv-title {
        font-size: 36px !important;
    }
    .mv-subtitle {
        font-size: 18px !important;
    }
    .mv-text {
        font-size: 16px !important;
    }
    .nosotros-description {
        font-size: 16px !important;
    }
    .value-label {
        font-size: 18px;
    }
    .value-icon {
        width: 50px;
        height: 50px;
    }
    .footer-col h4 {
        font-size: 22px;
    }
    .footer-col p, .footer-col a {
        font-size: 16px;
    }

    /* Footer responsive stacking */
    .footer-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 20px !important;
        gap: 24px !important;
    }
    .footer-logo-area {
        min-width: 0 !important;
    }
    .footer-logo-area img:first-child {
        width: 220px !important;
    }
    .footer-logo-area img:last-child {
        width: 160px !important;
    }
    .footer-info-cols {
        margin-left: 0 !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center;
    }
    /* Politicas 768 */
    .politicas-section {
        padding: 50px 0 !important;
    }
    .politicas-container {
        padding: 0 24px !important;
    }
    .politica-link {
        font-size: 18px;
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        width: 160px;
    }
    .hero-graphic {
        top: -50px !important;
        object-position: top right !important;
    }
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 18px;
    }
    .btn-cta {
        font-size: 16px;
        padding: 12px 24px;
    }
    .decorative-line {
        width: 200px;
    }
    .values-grid {
        grid-template-columns: auto;
        justify-content: center;
    }
    .value-icon {
        width: 40px;
        height: 40px;
    }
    .mv-title {
        font-size: 28px !important;
    }
    .mv-subtitle {
        font-size: 16px !important;
    }
    .nosotros-hero-box {
        margin-left: 10px !important;
        margin-right: 10px !important;
        padding: 24px 16px 0 !important;
    }
    .mision-vision-container {
        padding: 0 16px 20px !important;
    }
    .valores-container {
        padding: 0 16px 40px !important;
    }
    /* Servicios page 480 */
    .servicios-hero-image {
        margin-left: 10px !important;
        margin-right: 10px !important;
        height: 200px !important;
        border-radius: 20px 20px 0 20px !important;
    }
    .servicios-corner-img {
        width: 120px !important;
        height: 120px !important;
    }
    .servicios-corner-img img {
        margin-top: 6px !important;
        margin-left: 6px !important;
        border-radius: 16px !important;
    }
    .servicios-hero-title {
        bottom: 16px !important;
        left: 16px !important;
    }
    .sv-hero-title {
        font-size: 22px !important;
    }
    .servicios-main-title-section {
        padding: 30px 16px !important;
    }
    .sv-title {
        font-size: 28px !important;
    }
    .sv-subtitle {
        font-size: 16px !important;
    }
    .servicio-container {
        padding: 24px 16px !important;
    }
    .sv-section-title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }
    .sv-text {
        font-size: 14px !important;
    }
    .mobile-nav-overlay a {
        font-size: 17px;
        padding: 14px 36px;
    }
    .mobile-nav-overlay img {
        width: 150px !important;
    }
    /* Politicas 480 */
    .politicas-section {
        padding: 40px 0 !important;
    }
    .politicas-container {
        padding: 0 16px !important;
    }
    .politicas-title {
        margin-bottom: 30px !important;
    }
    .politica-link {
        font-size: 16px;
        padding: 16px 20px;
        gap: 12px;
        border-radius: 14px;
    }
    .politica-link svg {
        width: 24px;
        height: 24px;
    }
}
