:root {
    --accent-color: #ff0073;
    --text-dark: #000000;
    --nav-bg: rgba(255, 255, 255, 0.8);
    --body-bg: linear-gradient(135deg, #f64f59, #c471ed, #12c2e9);
    --card-text: #000000;
    --lang-btn-bg: rgba(0, 0, 0, 0.05);
    --lang-btn-text: #000000;
    --lang-btn-border: transparent;
    --logo-color: #ff0073;
    --html-bg: #c471ed;
}
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
    outline: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: inherit;
}
html {
    scroll-behavior: smooth;
    background: var(--html-bg);
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--body-bg);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--card-text);
    transition: background 0.5s ease, color 0.5s ease;
    overscroll-behavior: none;
}
.dark-mode {
    --nav-bg: rgba(23, 41, 58, 0.9);
    --text-dark: #ffffff;
    --body-bg: linear-gradient(to right, #000000, #152331);
    --card-text: #ffffff;
    --lang-btn-bg: rgba(255, 255, 255, 0.1);
    --lang-btn-text: #ffffff;
    --lang-btn-border: rgba(255, 255, 255, 0.2);
    --logo-color: #a29bfe;
    --html-bg: #152331;
}
.navbar {
    position: sticky;
    top: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 70px;
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
}
.nav-container {
    width: 100%;
    max-width: 1080px; 
    margin: 0 auto !important; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px !important; 
}
.logo {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--logo-color);
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 85px;
    transition: color 0.5s ease, letter-spacing 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.logo:hover {
    opacity: 0.8;
    letter-spacing: 2px;
    transform: scale(1.02);
    text-shadow: 0 0 10px var(--logo-color);
}
.dark-mode .logo {
    text-shadow: 0 0 8px rgba(162, 155, 254, 0.5);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin-right: 0;
    margin-left: 0;  
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links a:not(.lang-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.dark-mode .nav-links a:not(.lang-btn)::after {
    background-color: var(--logo-color);
}
.nav-links a:hover::after {
    width: 100%;
}
.lang-btn {
    background: var(--lang-btn-bg);
    color: var(--lang-btn-text);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 6px;
    font-weight: 600;
    border: 1px solid var(--lang-btn-border);
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lang-btn:hover {
    background: var(--accent-color);
    color: white !important;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}
.dark-mode .lang-btn:hover {
    background: var(--logo-color);
    border-color: var(--logo-color);
    color: #17293a !important;
}
.lang-btn:active {
    transform: scale(0.9);
}
.theme-label {
    background-color: rgba(0, 0, 0, 0.08); 
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 54px; height: 28px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dark-mode .theme-label {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.theme-checkbox, .menu-checkbox { opacity: 0; position: absolute; }
.theme-label .ball {
    background-color: #ffffff;
    width: 20px; height: 20px;
    position: absolute;
    left: 3px; top: 3px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); 
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}
.dark-mode .theme-label .ball { background-color: #a29bfe; }
.theme-checkbox:checked + .theme-label .ball { transform: translateX(26px); }
.sun-icon, .moon-icon { font-size: 11px; z-index: 1; }
.sun-icon { color: #ff9f43; margin-left: 2px; }
.moon-icon { color: #f1c40f; margin-right: 2px; }
#menu-toggle, .hamburger { display: none; }
.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto 0 auto; 
    padding: 0 15px;          
    background: transparent !important; 
    box-shadow: none !important;        
}
.hero-wrapper {
    margin-left: 110px !important;
    margin-right: 110px !important;
    padding: 40px 0;
}
.titulo_principal {
    margin: 0 0 25px 0 !important; 
    color: #c50542 !important;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.dark-mode .titulo_principal {
    color: #ccc8ff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.titulo_principal span {
    font-weight: 300; 
    opacity: 0.85;    
}
p.descripcion_principal {
    color: inherit;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: justify; 
    margin: 0 !important; 
    max-width: 100% !important;
    width: 100% !important;
}
.bloque_accesos {
    margin-left: 0 !important;
    margin-top: 25px;
    display: block;
}
.caja_iconos {
    display: flex;
    gap: 25px;
    align-items: center;
}
.boton_acceso {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    overflow: visible;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.boton_acceso:hover {
    transform: translateY(-4px); 
}
.caja_iconos .boton_acceso svg {
    width: auto;
    height: 80%;
    max-width: 90%;
    max-height: 90%;
    overflow: visible;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.caja_iconos .boton_acceso svg path {
    fill: #c50542;
    transition: fill 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.dark-mode .caja_iconos .boton_acceso svg path {
    fill: var(--logo-color);
}
.caja_iconos .boton_acceso:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--accent-color));
}
.dark-mode .caja_iconos .boton_acceso:hover svg {
    filter: drop-shadow(0 0 8px var(--logo-color));
}
.proyectos-section {
    width: 90%;
    max-width: 1200px;
    margin: 90px auto 40px auto; 
    padding: 0 15px;
}
.titulo_seccion {
    color: #c50542;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0 0 0 110px !important; 
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.dark-mode .titulo_seccion {
    color: #ccc8ff;
}
.titulo_seccion::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}
.dark-mode .titulo_seccion::after { 
    background-color: var(--logo-color); 
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.lazy-section {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}
.lazy-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    content-visibility: visible;
}
.protected-img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.global-footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 80px 0;
    margin-top: 140px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
}
.dark-mode .global-footer {
    background: rgba(10, 20, 30, 0.45) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 -15px 45px rgba(0, 0, 0, 0.4);
}
.footer-container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    padding: 0 40px;
}
.footer-desc {
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 25px 0 35px 0 !important;
    opacity: 0.9;
}
.email-copy-box {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 10px 10px 24px;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.dark-mode .email-copy-box {
    background: rgba(21, 35, 49, 0.4);
    border-color: rgba(255, 255, 255, 0.06);
}
#myEmail {
    font-weight: 600;
    font-size: 0.95rem;
}
.btn-copy-email {
    background: var(--accent-color);
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s ease, background-color 0.3s ease;
}
.btn-copy-email:hover {
    transform: scale(1.03);
    background: #e00065;
}
.dark-mode .btn-copy-email {
    background: var(--logo-color);
    color: #17293a !important;
}
.dark-mode .btn-copy-email:hover {
    background: #8f85f1;
}
.footer-glass-form {
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dark-mode .footer-glass-form {
    background: rgba(21, 35, 49, 0.45);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.footer-glass-form button[type="submit"] {
    background: var(--accent-color) !important;
    color: #ffffff !important; 
    border: none !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 24px rgba(255, 0, 115, 0.2) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease !important;
    width: 100% !important;
    margin-top: 10px;
}
.footer-glass-form button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.01) !important;
    background: #e00065 !important;
    box-shadow: 0 12px 30px rgba(255, 0, 115, 0.35) !important;
}
.dark-mode .footer-glass-form button[type="submit"] {
    background: var(--logo-color) !important;
    color: #152331 !important; 
    box-shadow: 0 8px 24px rgba(162, 155, 254, 0.2) !important;
}
.dark-mode .footer-glass-form button[type="submit"]:hover {
    background: #8f85f1 !important;
    box-shadow: 0 12px 30px rgba(162, 155, 254, 0.35) !important;
}
.footer-glass-form button[type="submit"]:active {
    transform: scale(0.98) !important;
}
.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
}
.footer-glass-form input,
.footer-glass-form textarea {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.dark-mode .footer-glass-form input,
.dark-mode .footer-glass-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-glass-form input:focus,
.footer-glass-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.5);
}
.dark-mode .footer-glass-form input:focus,
.dark-mode .footer-glass-form textarea:focus {
    border-color: var(--logo-color);
    background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
    .hero-wrapper {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }
    .titulo_seccion {
        margin-left: 40px !important;
    }
    .proyectos-grid-wrapper,
    .skills-grid-wrapper,
    .services-grid,
    .about-wrapper-grid {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }
    .services-intro-text {
        margin-left: 40px !important;
    }
}
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 20px !important;
    }
    .logo { order: 1; }
    .theme-switch-container { order: 2; margin-left: auto; margin-right: 15px; }
    .lang-item { order: 3; margin-right: 15px; }
    .hamburger { order: 4; display: block; cursor: pointer; z-index: 1001; }
    .hamburger span, 
    .hamburger span::before, 
    .hamburger span::after {
        display: block;
        background: var(--text-dark);
        height: 2px;
        width: 22px;
        position: relative;
        transition: all 0.3s ease;
    }
    .hamburger span::before { content: ''; position: absolute; top: -7px; left: 0; }
    .hamburger span::after { content: ''; position: absolute; top: 7px; left: 0; }
    #menu-toggle:checked + .hamburger span { background: transparent; }
    #menu-toggle:checked + .hamburger span::before { transform: rotate(45deg); top: 0; }
    #menu-toggle:checked + .hamburger span::after { transform: rotate(-45deg); top: 0; }
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
        height: calc(100vh - 70px);
        width: 100vw;
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s ease;
        will-change: transform;
    }
    #menu-toggle:checked ~ .nav-links {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        font-size: 1.3rem;
        width: 100%;
        text-align: center;
        display: block;
        padding: 10px 0;
    }
    .hero-container {
        width: 100% !important;
        padding: 0 20px !important;
    }
}
.flash-container {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 500px;
    pointer-events: none;
}

.flash-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    animation: flashIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.flash-success {
    background: rgba(46, 204, 113, 0.92);
    color: #fff;
    border: 1px solid rgba(46, 204, 113, 0.5);
}
.flash-error {
    background: rgba(231, 76, 60, 0.92);
    color: #fff;
    border: 1px solid rgba(231, 76, 60, 0.5);
}
.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    flex-shrink: 0;
    padding: 0 2px;
}
.flash-close:hover {
    opacity: 1;
}
@keyframes flashIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.dark-mode .flash-success {
    background: rgba(39, 174, 96, 0.92);
}
.dark-mode .flash-error {
    background: rgba(192, 57, 43, 0.92);
}

.form-error-banner {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.4);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #e74c3c;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    animation: formErrorIn 0.35s ease;
}

.dark-mode .form-error-banner {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
}

@keyframes formErrorIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.lightbox-modal {
    position: fixed !important;
    z-index: 99999 !important;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(8px);
    display: none; 
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show { display: flex !important; opacity: 1; }
.lightbox-img {
    max-width: 85%; max-height: 85%; object-fit: contain; border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: scale(0.95); transition: transform 0.3s ease;
}
.lightbox-modal.show .lightbox-img { transform: scale(1); }

.lightbox-close-btn {
    position: absolute !important; top: 30px; right: 40px; color: rgba(255,255,255,0.7) !important;
    font-size: 40px !important; font-weight: 300; cursor: pointer !important; user-select: none;
    transition: color 0.2s ease, transform 0.2s ease !important;
    z-index: 10;
}
.lightbox-close-btn:hover { color: var(--accent-color) !important; transform: scale(1.1); }

.lightbox-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.lightbox-nav-prev { left: 20px !important; }
.lightbox-nav-next { right: 20px !important; }

.lightbox-nav:hover {
    background-color: var(--accent-color) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

.dark-mode .lightbox-nav:hover { background-color: var(--logo-color) !important; }

@media (max-width: 768px) {
    .lightbox-close-btn { top: 20px; right: 25px; font-size: 35px !important; }
    .proyectos-section {
        width: 100% !important;
        padding: 0 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .hero-wrapper {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }
    .titulo_principal, 
    p.descripcion_principal, 
    .bloque_accesos, 
    .titulo_seccion {
        margin-left: 20px !important;
        text-align: center;
    }
    p.descripcion_principal {
        text-align: center;
        padding: 0 10px;
    }
    .caja_iconos {
        justify-content: center;
    }
    .titulo_seccion::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .global-footer { padding: 40px 0; margin-top: 80px; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; padding: 0 16px; }
    .footer-info-side { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .footer-desc { text-align: center; font-size: 0.95rem; margin: 20px 0 25px 0 !important; }
    .about-paragraph, .card-text, .service-card-description {
        text-align: justify !important;
        text-justify: inter-word;
    }
    .form-row { flex-direction: column; gap: 16px; }
    .footer-glass-form { padding: 20px; gap: 16px; }
    .footer-glass-form input,
    .footer-glass-form textarea { padding: 14px 14px; font-size: 16px; }
    .footer-glass-form label { font-size: 0.85rem; }
    .footer-glass-form button[type="submit"] { padding: 14px 24px !important; font-size: 1rem !important; }
    .project-card:hover, .service-glass-card:hover, .skill-badge-card:hover,
    .boton_acceso:hover, .btn-ver-mas-glass:hover, .btn-copy-email:hover,
    .custom-carousel-btn:hover, .lang-btn:hover {
        transform: none !important;
    }
    .email-copy-box { width: 100%; max-width: 340px; padding: 8px 8px 8px 18px; }
    #myEmail { font-size: 0.85rem; }
    .btn-copy-email { padding: 8px 16px; font-size: 0.8rem; }
    .custom-carousel-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .proyectos-section {
        width: 100% !important;
        padding: 0 16px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .hero-wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .titulo_principal, 
    p.descripcion_principal, 
    .bloque_accesos, 
    .titulo_seccion {
        margin-left: 0 !important;
        text-align: center;
    }
    p.descripcion_principal {
        text-align: center;
        padding: 0 8px;
    }
}

