@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/assets/fonts/poppins-v24-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/poppins-v24-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/poppins-v24-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/poppins-v24-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/poppins-v24-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/montserrat-v31-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/montserrat-v31-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/montserrat-v31-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/assets/fonts/montserrat-v31-latin-900.woff2') format('woff2');
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}
@keyframes shine {
    100% { left: 125%; }
}
@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes popGreen {
    0% { transform: scale(1); color: #ef4444; }
    50% { transform: scale(1.3); color: #22c55e; }
    100% { transform: scale(1); color: #22c55e; }
}
@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@keyframes messageCycle {
    0%, 20% { opacity: 0; transform: translateX(10px); pointer-events: none; }
    25%, 85% { opacity: 1; transform: translateX(0); pointer-events: auto; }
    90%, 100% { opacity: 0; transform: translateX(10px); pointer-events: none; }
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a1a;
    color: #e0e0e0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.poppins-font { font-family: 'Poppins', sans-serif; }
.montserrat-heading { font-family: 'Montserrat', sans-serif; }
.playfair-number { font-family: 'Playfair Display', serif; }
.royal-blue-text { color: #ef4444; }
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}
.content-z {
    position: relative;
    z-index: 10;
}
.footer-bg {
    background: linear-gradient(to top, rgba(0, 35, 102, .5), #0a0a1a);
}
#header {
    background-color: #0f172a;
    transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
}
#header.scrolled {
    background-color: #0f172a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}
#header .nav-link,
#header .header-logo-text,
#header #mobile-menu-button {
    color: #e2e8f0;
}
.nav-link {
    transition: color .3s ease;
    position: relative;
}
.nav-link:hover {
    color: #ef4444;
}
.nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ef4444;
    transition: transform .3s ease;
    transform: scaleX(0);
    transform-origin: center;
}
.nav-link:hover::after {
    transform: scaleX(1);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 1rem;
    width: 18rem;
    background: #1e293b;
    border-radius: .75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(.95);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    z-index: 50;
    border: 1px solid rgba(239, 68, 68, .3);
    padding: 0.5rem;
}
.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}
.dropdown-link {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: .75rem 1rem;
    font-size: .875rem;
    color: #e2e8f0;
    transition: background-color .3s ease, color .3s ease, transform .3s ease;
    border-radius: .5rem;
    margin: 0;
    white-space: nowrap;
}
.dropdown-link:hover {
    background: rgba(239, 68, 68, .2);
    color: #fff;
    transform: translateX(5px);
}
.dropdown-link svg {
    color: #f87171;
    transition: color .3s ease, transform .3s ease;
}
.dropdown-link:hover svg {
    color: #fff;
    transform: scale(1.1);
}
.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, .3);
    color: white;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, .4);
}
.btn-secondary {
    background-color: transparent;
    border: 2px solid #dc2626;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
    color: #dc2626;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
}
.btn-secondary:hover {
    background-color: #dc2626;
    border-color: #ef4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, .3);
}
.btn-pulse {
    animation: pulse-white 2s infinite;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    margin: 10px auto 0;
    border-radius: 2px;
}
#servicios {
    background: linear-gradient(to bottom, #0a0a1a, #0f172a 30%, #0f172a 70%, #0f172a);
}
.service-card {
    background: rgba(10, 10, 26, .6);
    border: 1px solid rgba(65, 105, 225, .2);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), border-bottom-color .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s cubic-bezier(.4, 0, .2, 1), background-color .4s cubic-bezier(.4, 0, .2, 1);
    border-bottom: 4px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 450px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.service-card h3 {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
}
.service-card .icon-container {
    margin: 0 auto 1.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .4s cubic-bezier(.4, 0, .2, 1), color .4s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid rgba(65, 105, 225, .3);
    flex-shrink: 0;
}
.service-card.active, .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-bottom-color: #4169E1;
    box-shadow: 0 20px 40px rgba(65, 105, 225, .15);
    background: rgba(65, 105, 225, .05);
}
.service-card.active .icon-container, .service-card:hover .icon-container {
    background: linear-gradient(135deg, #4169E1, #5a82e8);
    color: #fff;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(65, 105, 225, .4);
}
.service-card.hover-green.active, .service-card.hover-green:hover {
    border-bottom-color: #10b981;
    box-shadow: 0 25px 50px rgba(16, 185, 129, .2);
    background: rgba(16, 185, 129, .05);
}
.service-card.hover-green.active .icon-container, .service-card.hover-green:hover .icon-container {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 12px 30px rgba(16, 185, 129, .4);
}
.service-card.hover-red.active, .service-card.hover-red:hover {
    border-bottom-color: #ef4444;
    box-shadow: 0 25px 50px rgba(239, 68, 68, .2);
    background: rgba(239, 68, 68, .05);
}
.service-card.hover-red.active .icon-container, .service-card.hover-red:hover .icon-container {
    background: linear-gradient(135deg, #ef4444, #f87171);
    box-shadow: 0 12px 30px rgba(239, 68, 68, .4);
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all .3s ease;
}
.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(239, 68, 68, .4);
}
.pattern-bg {
    background-color: #f8fafc;
    background-image: none;
}
#presencia {
    color: #334155;
}
#presencia h2 {
    color: #1e293b;
}
#presencia .bg-blue-500 {
    background-color: #4169E1 !important;
}
#presencia .bg-red-500 {
    background-color: #ef4444 !important;
}
#presencia .bg-blue-500:hover,
#presencia .bg-red-500:hover {
    transform: scale(1.05);
    transition: transform .3s ease;
}
.accordion-content {
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .4s cubic-bezier(.4, 0, .2, 1);
    max-height: 0;
}
.accordion-icon {
    transition: transform .3s ease;
}
.scroller {
    max-width: 1200px;
    margin: auto;
}
.scroller__inner {
    padding-block: 1rem;
    display: flex;
    gap: 1rem;
}
.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}
.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll 40s linear infinite;
}
.scroller[data-animated="true"]:hover .scroller__inner {
    animation-play-state: paused;
}
.custom-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.step-item .step-icon {
    transition: all 0.3s ease !important;
}
.step-item:hover .step-icon {
    background-color: #ef4444 !important;
    color: white !important;
    transform: scale(1.1) !important;
}
.step-item:hover h3 {
    color: #ef4444 !important;
}
.main-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease-in-out, z-index 0.5s ease;
    z-index: 20;
}
.main-image:hover {
    transform: scale(1.05) rotate(1deg);
    z-index: 30 !important;
}
.faq-card {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}
.faq-card:hover {
    background-color: #f3f4f6;
}
.accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: #111827;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.accordion-button:hover {
    color: #1f2937;
}
.accordion-button.open .accordion-icon {
    transform: rotate(180deg);
}
.accordion-content.open {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}
.accordion-content p {
    color: #4b5563;
    margin: 0;
}
.phone-button {
    transition: transform .3s ease, box-shadow .3s ease;
}
.phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, .4);
}
.video-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px dashed rgba(96, 165, 250, .3);
}
.video-placeholder:hover {
    border-color: rgba(96, 165, 250, .6);
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    transition: border-color .3s ease, background .3s ease;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-message {
    position: absolute;
    right: 70px;
    background-color: white;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    animation: messageCycle 6s ease-in-out infinite;
}
.shine-effect {
    position: relative;
    overflow: hidden;
}
.shine-effect::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
}
.shine-effect:hover::before {
    animation: shine .75s;
}
.animate-pulse-green {
    animation: pulseGreen 2s infinite;
}
.animate-pop-green {
    animation: popGreen 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.hover-pulse:hover i {
    animation: pulse-icon 1s infinite;
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    touch-action: pan-y;
}
.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}
.slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 4px;
}
.dot {
    transition: all 0.3s ease;
}
.dot.active {
    background-color: #DC2626;
    width: 2rem;
}
#creditos-wrapper {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f4f6;
}
#creditos-wrapper .montserrat-heading {
    font-family: 'Montserrat', sans-serif;
}
#creditos-wrapper .royal-blue-text {
    color: #ef4444;
}
#ppr-main {
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    overflow-x: hidden;
}
#ppr-main .montserrat-heading { font-family: 'Montserrat', sans-serif; }
#ppr-main .red-highlight-text { color: #ef4444; }
#ppr-main .royal-blue-text { color: #ef4444; }
#ppr-main .chart-container {
    width: 100%;
}
#ppr-main .bar-fill {
    width: 100%;
    height: 0%;
    transition: height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
#ppr-main .animate-chart .bar-fill {
    height: var(--final-height);
}
#ppr-main .floating-label {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s ease 0.6s;
    margin-bottom: 8px;
}
#ppr-main .animate-chart .floating-label {
    opacity: 1;
    transform: translateY(0);
}
#ppr-main .hover-arrow i {
    transition: transform 0.3s ease;
}
#ppr-main .hover-arrow:hover i {
    transform: translateX(4px);
}
#ppr-main .dashed-line {
    background-image: linear-gradient(to right, #94a3b8 40%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 12px 1px;
    background-repeat: repeat-x;
}
.hover-scale-img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
    filter: brightness(1);
}
.group:hover .hover-scale-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.timeline-line {
    background-color: #e2e8f0;
}
.bg-pattern {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}
::placeholder {
    color: #9ca3af !important;
    opacity: 1;
}
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.image-container::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
}
.image-container:hover::before {
    animation: shine .75s;
}
.image-container:hover .hover-scale-img {
    transform: scale(1.03);
}
.stat-item {
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid #ef4444;
}
.philosophy-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    text-align: center;
}
.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.philosophy-icon-bg {
    background: #f1f5f9;
    color: #94a3b8;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.philosophy-card:hover .philosophy-icon-bg {
    background: #fef2f2;
    color: #ef4444;
    transform: scale(1.1);
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #fafafa;
    border: 1px solid #f1f5f9;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.value-item:hover {
    background-color: white;
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}
.value-icon {
    font-size: 2rem;
    color: #ef4444;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    transition: transform 0.3s ease;
}
.value-item:hover .value-icon {
    transform: scale(1.1);
}
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: #1faf53;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}
.agenda-page-wrapper {
    background-color: #f1f5f9;
    color: #1f2937;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.agenda-page-wrapper .fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.agenda-page-wrapper .expandable-box {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin 0.3s ease;
}
.agenda-page-wrapper .expandable-box.open {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 1.5rem;
}
.agenda-page-wrapper .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.agenda-page-wrapper .calendar-day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    padding-bottom: 8px;
}
.agenda-page-wrapper .calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 9999px;
    font-size: 0.9rem;
    transition: all 0.2s;
    position: relative;
}
.agenda-page-wrapper .calendar-day:hover:not(.disabled):not(.selected) {
    background-color: #fee2e2;
    color: #ef4444;
}
.agenda-page-wrapper .calendar-day.selected {
    background-color: #ef4444;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.4);
}
.agenda-page-wrapper .calendar-day.selected .availability-dot {
    background-color: white !important;
    opacity: 0.8;
}
.agenda-page-wrapper .calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}
.agenda-page-wrapper .calendar-day.sunday {
    color: #ef4444;
    font-weight: 500;
}
.agenda-page-wrapper .time-slot {
    transition: all 0.2s ease;
}
.agenda-page-wrapper .time-slot:hover:not(.disabled):not(.selected) {
    border-color: #ef4444;
    color: #ef4444;
}
.agenda-page-wrapper .time-slot.selected {
    background-color: #ef4444;
    color: white;
    border-color: #ef4444;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}
.agenda-page-wrapper .time-slot.selected:hover {
    background-color: #dc2626;
    color: white !important;
    border-color: #dc2626;
}
.agenda-page-wrapper .time-slot.disabled {
    background-color: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.7;
}
.agenda-page-wrapper .mode-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.agenda-page-wrapper .mode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.agenda-page-wrapper .mode-card.presencial:hover { border-color: #22c55e; }
.agenda-page-wrapper .mode-card.presencial.selected {
    border-color: #22c55e;
    background-color: #f0fdf4;
    box-shadow: 0 0 0 2px #22c55e;
}
.agenda-page-wrapper .mode-card.presencial.selected .icon-box {
    background-color: #22c55e;
    color: white;
}
.agenda-page-wrapper .mode-card.video:hover { border-color: #3b82f6; }
.agenda-page-wrapper .mode-card.video.selected {
    border-color: #3b82f6;
    background-color: #eff6ff;
    box-shadow: 0 0 0 2px #3b82f6;
}
.agenda-page-wrapper .mode-card.video.selected .icon-box {
    background-color: #3b82f6;
    color: white;
}
.agenda-page-wrapper .custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.agenda-page-wrapper .custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.agenda-page-wrapper .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
.agenda-page-wrapper .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.agenda-page-wrapper .fix-safari-radius {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    border-radius: 1rem;
}
.bg-whatsapp { background-color: #25D366; }
.text-whatsappDark { color: #128C7E; }
.text-primary { color: #ef4444; }
.bg-primary { background-color: #ef4444; }
.hover\:bg-primaryDark:hover { background-color: #dc2626; }
.contacto-dark {
    background: #0f172a;
    position: relative;
    overflow: hidden;
}
.contacto-dark::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220,38,38,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cd-phones-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
@media (min-width: 640px) {
    .cd-phones-row {
        grid-template-columns: 1fr 1fr;
    }
}
.cd-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
    text-decoration: none;
}
.cd-phone:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.cd-phone-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.cd-phone:hover .cd-phone-icon {
    transform: scale(1.08);
}
.cd-phone-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e2e8f0;
    margin-bottom: 4px;
}
.cd-phone-num {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}
@media (min-width: 768px) {
    .cd-phone-num { font-size: 22px; }
}
.cd-whatsapp {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    border: 2px solid #25D366;
    background: rgba(37,211,102,0.08);
    transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
    margin-bottom: 24px;
}
.cd-whatsapp:hover {
    background: rgba(37,211,102,0.15);
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.2);
}
.cd-wa-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    transition: transform 0.3s;
}
.cd-whatsapp:hover .cd-wa-icon {
    transform: scale(1.1) rotate(-5deg);
}
.cd-wa-icon i { color: #fff; font-size: 28px; }
.cd-wa-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4ade80;
    margin-bottom: 4px;
}
.cd-wa-num {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}
.cd-wa-hint {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 3px;
    font-weight: 500;
}
.cd-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
}
.cd-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}
.cd-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 640px) {
    .cd-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.cd-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}
.cd-info-card .cd-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 16px;
}
.tabla-v5 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 30px rgba(0,0,0,0.06);
}
.tabla-v5 thead th {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tabla-v5 thead th:first-child {
    background: #f8fafc;
    color: #94a3b8;
    text-align: left;
    width: 35%;
}
.tabla-v5 thead .th-sin {
    background: #fef2f2;
    color: #dc2626;
    text-align: center;
}
.tabla-v5 thead .th-con {
    background: #f0fdf4;
    color: #16a34a;
    text-align: center;
}
.tabla-v5 tbody td {
    padding: 16px 24px;
    border-top: 1px solid #f1f5f9;
    color: #334155;
    font-size: 14px;
}
.tabla-v5 tbody td:first-child {
    font-weight: 600;
    color: #1e293b;
    background: #fafbfc;
}
.tabla-v5 tbody td:nth-child(2),
.tabla-v5 tbody td:nth-child(3) {
    text-align: center;
}
.tabla-v5 tbody td .vi {
    margin-right: 6px;
    font-size: 11px;
    opacity: 0.4;
}
.tabla-v5 tbody tr:hover td {
    background: #f8fafc;
}
.tabla-v5 tbody tr:hover td:first-child {
    background: #f1f5f9;
}
.cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(220,38,38,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
@media (min-width: 768px) {
    .cta-card {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.cta-btn:hover {
    background: #fff;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.banner-v5 {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #b91c1c 100%);
    position: relative;
    overflow: hidden;
}
.bv5-inner {
    position: relative;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bv5-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 22px 24px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}
.bv5-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
.bv5-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bv5-icon i { color: #fff; font-size: 16px; }
.bv5-text {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}
.bv5-hl {
    display: inline-block;
    background: #fff;
    color: #1e293b;
    font-weight: 800;
    padding: 2px 12px;
    border-radius: 6px;
}
.bv5-cta {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #dc2626;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 11px 26px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
}
.bv5-cta:hover {
    background: #1e293b;
    color: #fff;
    transform: scale(1.05);
}
.bv5-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.4);
    width: 0;
    z-index: 2;
    border-radius: 0 3px 3px 0;
}
.bv5-progress.running {
    width: 100%;
    transition: width linear;
}
@media (min-width: 768px) {
    .bv5-text { font-size: 17px; text-align: left; }
    .bv5-slide { flex-wrap: nowrap; }
}
@media (max-width: 767px) {
    .bv5-slide { flex-direction: column; gap: 12px; text-align: center; }
}
/* Casos de éxito */
.caso-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); border: 1px solid #e2e8f0; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; }
.caso-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: #cbd5e1; }
.caso-perfil { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.caso-avatar { width: 50px; height: 50px; border-radius: 14px; background: #0f172a; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px; color: #fff; flex-shrink: 0; }
.caso-nombre { font-weight: 700; color: #0f172a; font-size: 16px; }
.caso-desc { font-size: 13px; color: #94a3b8; margin-top: 2px; }
.caso-montos { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding: 20px; background: #f8fafc; border-radius: 14px; }
.caso-monto-block { flex: 1; }
.caso-monto-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: #94a3b8; margin-bottom: 6px; }
.caso-monto-antes { font-size: 22px; font-weight: 800; color: #94a3b8; text-decoration: line-through; text-decoration-color: #cbd5e1; }
.caso-monto-despues { font-size: 28px; font-weight: 900; color: #0f172a; }
.caso-flecha { width: 36px; height: 36px; background: #dc2626; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.caso-flecha i { color: #fff; font-size: 13px; }
.caso-detalle { font-size: 14px; color: #64748b; line-height: 1.6; }
.caso-tag { display: inline-block; background: #f1f5f9; color: #475569; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; margin-top: 12px; }
@media (max-width: 767px) {
    .caso-monto-despues { font-size: 22px; }
    .caso-monto-antes { font-size: 18px; }
    .caso-montos { flex-direction: column; gap: 8px; }
}
@media (max-width: 1023px) {
    #content-column {
        order: 2;
        text-align: center;
        margin-top: 2rem;
    }
    #inicio .grid {
        gap: 2rem;
    }
    #image-column {
        order: 1;
    }
    .main-image-container {
        margin: auto;
    }
    .step-item {
        text-align: left;
    }
    .text-3xl {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .cd-phone-num { font-size: 18px; }
    .cd-wa-num { font-size: 20px; }
    .cta-card { padding: 24px 20px; }
    #presencia .grid {
        gap: 2rem;
    }
    #presencia h2 {
        font-size: 1.875rem;
    }
    .tabla-v5,
    .tabla-v5 thead,
    .tabla-v5 tbody,
    .tabla-v5 tr,
    .tabla-v5 th,
    .tabla-v5 td {
        display: block;
        width: 100%;
    }
    .tabla-v5 {
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }
    .tabla-v5 thead {
        display: none;
    }
    .tabla-v5 tbody tr {
        margin-bottom: 16px;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .tabla-v5 tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px;
        text-align: right;
        border-top: 1px solid #f1f5f9;
    }
    .tabla-v5 tbody td:first-child {
        background: #f8fafc;
        font-weight: 800;
        color: #0f172a;
        font-size: 15px;
        text-align: center;
        display: block;
        border-top: none;
    }
    .tabla-v5 tbody td:nth-child(2)::before {
        content: '\2717  Sin asesor\00EDa';
        font-weight: 700;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #dc2626;
    }
    .tabla-v5 tbody td:nth-child(3)::before {
        content: '\2713  Con asesor\00EDa';
        font-weight: 700;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #16a34a;
    }
    .tabla-v5 tbody td .vi {
        display: none;
    }
    .tabla-v5 tbody tr:hover td {
        background: transparent;
    }
    .tabla-v5 tbody tr:hover td:first-child {
        background: #f8fafc;
    }
}
.ohnohoney {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
    .animate-pulse-green,
    .btn-pulse {
        animation: none !important;
    }
    .fade-in {
        animation: none !important;
        opacity: 1 !important;
    }
    .reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .shine-effect::before {
        animation: none !important;
    }
    .service-card,
    .btn-primary,
    .btn-secondary,
    .philosophy-card,
    .value-item,
    .caso-card {
        transition: none !important;
    }
}