/* VARIABLES Y RESET */
:root {
    --primary-color: #b8860b;
    --secondary-color: #1b2a41;
    --text-color: #333;
    --light-text: #777;
    --white: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #162333;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--light-text);
}

/* BOTONES */
.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* HEADER */
.header {
    background-color: var(--secondary-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    font-size: 14px;
}

.contact-info a i {
    margin-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 14px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    width: 150px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li a {
    color: var(--white);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.consulta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.consulta-btn:hover {
    background-color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background-image: url('../img/Portada.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* EXPERIENCIA Y ÉTICA SECTION */
.exp-etica-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.exp-info {
    flex: 1;
}

.exp-info h2 {
    color: var(--secondary-color);
    font-size: 36px;
}

.exp-stats {
    flex: 1;
    position: relative;
}

.stats-box img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.counter-box {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 4px 4px 4px 30px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.counter {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    padding-left: 30px;
}

.firma {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.firma img {
    height: 60px;
}

.firma p {
    margin-bottom: 0;
    font-weight: 600;
}

.firma p span {
    font-weight: 400;
    font-size: 14px;
    color: var(--light-text);
}

.valores-icons {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.valor-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.valor-icon img {
    max-width: 40px;
    opacity: 0.7;
    transition: var(--transition);
}

.valor-icon:hover img {
    opacity: 1;
}

/* ÁREAS DE PRÁCTICA SECTION */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.area-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    min-height: 300px;
}

.area-card:hover {
    transform: translateY(-10px);
}

.area-card:nth-child(1) {
    background-color: var(--secondary-color);
    color: var(--white);
}

.card-icon {
    margin-bottom: 20px;
    font-size: 30px;
    color: var(--primary-color);
}

.area-card:nth-child(1) .card-icon {
    color: var(--primary-color);
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.area-card p {
    color: var(--light-text);
    margin-bottom: 0;
}

.area-card:nth-child(1) p {
    color: rgba(255, 255, 255, 0.8);
}

.areas-link {
    text-align: right;
}

.areas-link a {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.areas-link a i {
    margin-left: 5px;
    transition: var(--transition);
}

.areas-link a:hover i {
    transform: translateX(5px);
}

/* PRIORIDAD SECTION */
.prioridad {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 100px 0;
    background-image: url('../img/bg-pattern.png');
    background-size: cover;
    background-blend-mode: overlay;
}

.prioridad-content {
    max-width: 600px;
}

.prioridad-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.prioridad-content h2 span {
    color: var(--primary-color);
}

.prioridad-content p {
    margin-bottom: 30px;
}

/* TESTIMONIOS SECTION */
.testimonios-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonio-item {
    display: none;
}

.testimonio-item.active {
    display: block;
}

.testimonio-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.testimonio-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.cliente-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cliente-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.cliente-info h4 {
    margin-bottom: 5px;
}

.cliente-info span {
    color: var(--light-text);
    font-size: 14px;
}

.testimonio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.control-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-color);
}

/* CONTACTO SECTION */
.contacto-wrapper {
    display: flex;
    gap: 50px;
}

.contacto-info, .contacto-form {
    flex: 1;
}

.contacto-info h2, .contacto-form h2 {
    color: var(--secondary-color);
    font-size: 30px;
    margin-bottom: 20px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

textarea {
    height: 150px;
    resize: vertical;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* FOOTER */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-top {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* MENÚ MÓVIL */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Estilo del menú móvil que aparece desde la izquierda */
.nav-menu.mobile {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 80px 30px 30px;
    transition: left 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-menu.mobile.active {
    left: 0;
}

.nav-menu.mobile li {
    margin: 0 0 20px 0;
}

.nav-menu.mobile li a {
    display: block;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

.mobile-menu-header {
    position: absolute;
    top: 20px;
    left: 20px;
}

.mobile-menu-header img {
    height: 40px;
}

.mobile-consulta-btn {
    margin-top: 20px;
    display: inline-block;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .exp-etica-content {
        flex-direction: column;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contacto-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .nav-menu:not(.mobile), .consulta-btn {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .valores-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* TOASTS (NOTIFICACIONES) */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.toast {
    background-color: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 24px;
    margin-right: 15px;
}

.toast-content {
    flex: 1;
}

.toast-content h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.toast-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.toast-close:hover {
    opacity: 1;
}

/* Variantes de Toast */
.toast-success {
    background-color: #4CAF50;
}

.toast-error {
    background-color: #F44336;
}

.toast-warning {
    background-color: #FF9800;
}

.toast-info {
    background-color: #2196F3;
}

@media (max-width: 576px) {
    .toast-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        width: auto;
    }
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #22c15e;
    color: white;
}

.whatsapp-btn i {
    animation: pulse 1.5s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    top: -45px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .prioridad-content h2 {
        font-size: 30px;
    }
    
    .valores-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Estilos adicionales para los modales de servicios */

/* Estilos para los items de servicio */
.service-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-item h5 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-item h5 i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

/* Estilos para los beneficios del servicio */
.service-benefits {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.service-benefits h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-benefits li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Estilos para la línea de tiempo del proceso */
.process-timeline {
    position: relative;
    margin: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-content {
    padding-left: 20px;
    flex-grow: 1;
}

.timeline-content h5 {
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

/* Estilos para el acordeón de FAQs */
.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    padding: 15px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header h5 {
    margin: 0;
    font-size: 16px;
    color: var(--secondary-color);
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.accordion-item.active .accordion-content {
    padding: 15px;
    max-height: 500px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.accordion-content ul li {
    margin-bottom: 5px;
}

/* Estilos para CTA dentro del modal */
.modal-cta {
    background-color: #f9f9f9;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    margin-top: 30px;
}

.modal-cta p {
    margin-bottom: 15px;
    font-weight: 500;
}

/* Responsividad para los estilos adicionales */
@media (max-width: 768px) {
    .service-item h5 {
        font-size: 16px;
    }
    
    .timeline-content h5 {
        font-size: 16px;
    }
    
    .modal-cta {
        padding: 20px 15px;
    }
}

/* Estilos para el sistema de modales */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.service-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.modal-header h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 0 0 25px;
}

.modal-sections {
    display: flex;
    flex-direction: column;
}

.modal-nav {
    display: flex;
    gap: 10px;
    padding: 20px 25px;
    background-color: #f5f5f5;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 66px;
    z-index: 9;
}

.modal-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-color);
}

.modal-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.modal-tab-content {
    padding: 25px;
    display: none;
}

.modal-tab-content.active {
    display: block;
}

.modal-tab-content h4 {
    margin-top: 0;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

/* Estilo para el botón "Ver más" en las tarjetas */
.ver-mas-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    padding: 0;
    font-size: 14px;
    transition: color 0.3s;
}

.ver-mas-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.ver-mas-btn:hover {
    color: var(--secondary-color);
}

.ver-mas-btn:hover i {
    transform: translateX(5px);
}

/* Para prevenir scroll cuando hay modal abierto */
body.modal-open {
    overflow: hidden;
}