/*-- Use For Custom Styling --*/

/* Estilos para la marquesina de logos */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-wrap {
    flex: 0 0 auto;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrap img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-wrap img:hover {
    transform: scale(1.1);
    filter: brightness(1) invert(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar la animación al pasar el mouse */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Precio: estilo sutil para el texto + IVA */
.price{
    padding: 0;
}
.price .iva {
    font-size: 0.4em;
    opacity: 0.7;
    margin-left: 6px;
}

.honorarios, .tasa{
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 600;
    color: white;
    margin-top: 12px;
}


.tasa{
    margin-bottom: 16px!important;
    font-size: 0.8em;
    opacity: 0.7;

}



.tp-parallax-wrap{
    left: 120px!important;
    text-align: left!important;
}

#layer-13531776{
    left: 0!important;
}

#js-rotating{
    text-align: left!important;
}

#layer-187395422{
    min-width: auto!important;
    max-width: none!important;
}

.logo-link{
    width: 80px !important;
    height: 80px !important;
}

.tp-caption {
    text-align: left!important;
    padding-left: 10px!important;
}

.box-hero{
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.box-hero-content-item-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
    margin-bottom: 30px;
}

.hero-logo{
    width: 100px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.box-hero-content-item-title h1{
    font-size: 48px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.box-hero-content-item-description{
    font-size: 24px;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: center;
}

/* Toast de descuento que aparece después de 2 segundos */
.hero-discount-badge {
    background: linear-gradient(135deg, rgba(135, 166, 234,90) 0%, rgba(0, 139, 116, 0.95) 100%);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 190, 149, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    position: fixed !important;
    right: -400px !important;
    z-index: 99999 !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 520px;
    min-width: 280px;
    opacity: 0;
    transform: translateX(0);
}



@media only screen and (max-width: 600px) {
    .hero-discount-badge {
        top: 50px !important;
    }
}


@media only screen and (min-width: 600px) {
    .hero-discount-badge {
        top: 50px !important;
    }
}

@media only screen and (min-width: 768px) {
    .hero-discount-badge {
        top: 100px !important;
    }

}

@media only screen and (min-width: 992px) {
    .hero-discount-badge {
        top: 100px !important;
    }
}

@media only screen and (min-width: 1200px) {
    .hero-discount-badge {
        top: 100px !important;
    }
}


/* Estado visible del toast */
.hero-discount-badge.show {
    right: 20px !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Botón de cerrar */
.discount-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.discount-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.discount-close-btn::before {
    content: "×";
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.hero-discount-badge::before {
    content: "🎯";
    font-size: 20px;
    animation: pulse-gentle 2s infinite;
}

.discount-percentage {
    background: rgba(255, 255, 255, 0.9);
    color: #00BE95;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.discount-service {
    color: white;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animaciones para el toast */
@keyframes pulse-gentle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slide-in {
    from {
        right: -400px;
        opacity: 0;
    }
    to {
        right: 20px;
        opacity: 1;
    }
}

@keyframes slide-out {
    from {
        right: 20px;
        opacity: 1;
    }
    to {
        right: -400px;
        opacity: 0;
    }
}

/* Botones del hero */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin: 0 auto 30px auto;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #00BE95 0%, #008B74 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 190, 149, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #008B74 0%, #00BE95 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 190, 149, 0.4);
    color: white;
    text-decoration: none;
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.hero-btn i {
    font-size: 16px;
}

.box-hero-content-item-button-code{
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
}

.about{
    text-align: left!important;
}   
.main-title {
  height: 100%;

}
.aabout2 .main-title{
    display: flex;
    align-items: center;
}

.about .about-title{
    font-size: 40px;
    font-weight: 600;
    color: white;
    text-align: center;
    text-transform: uppercase;
}


.about-title2{
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: left;
}

.about-title3{
    color: #ffffff !important;
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: left;
}


.main-title h2{ 



}

.main-title p{
    text-align: left!important;
    margin: 0!important;
}

.logo-about{
    position: absolute;
    bottom: 0;
    left: 100px;
    filter: opacity(0.2);

}

.about-img-small{
    border-radius: 20px;
    overflow: hidden;
}


/* === Servicios === */
.services-section{
    padding: 80px 0;
}

/* === Beneficios === */
.benefits-section{
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-section .main-title h2{
    font-size: 36px;
    font-weight: 600;
    color: #1F1740;
    margin-bottom: 15px;
}

.benefits-section .main-title p{
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}

/* === Cupón Moderno === */
.coupon-section{
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
}

.coupon-title{
    font-weight: 600;
    margin-bottom: 18px;
    color: #1F1740;
}

.coupon-rules{
    max-width: 900px;
    margin: 0 auto 28px;
    text-align: left;
    color: #000;
}
.coupon-rules li{ margin-bottom: 10px; }

/* Tarjeta del cupón moderna */
.modern-coupon-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(94, 81, 205, 0.15), 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(94, 81, 205, 0.1);
    transition: all 0.4s ease;
}

.modern-coupon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(94, 81, 205, 0.2), 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Header del cupón */
.coupon-header {
    background: linear-gradient(135deg, #5E51CD 0%, #00BE95 100%);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.discount-badge-modern {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.discount-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.discount-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
    opacity: 0.9;
    letter-spacing: 1px;
}

.coupon-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Cuerpo del cupón */
.coupon-body {
    padding: 40px 30px;
}

.coupon-title-modern {
    font-size: 28px;
    font-weight: 700;
    color: #1F1740;
    margin-bottom: 8px;
    text-align: center;
}

.coupon-subtitle {
    font-size: 16px;
    color: #00BE95;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.coupon-description {
    text-align: center;
    margin-bottom: 30px;
}

.coupon-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Sección del código */
.coupon-code-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid rgba(0, 190, 149, 0.2);
    margin-bottom: 25px;
}

.code-label {
    font-size: 14px;
    color: #00BE95;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.coupon-code-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.code-text {
    background: #1F1740;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.copy-btn-modern {
    background: linear-gradient(135deg, #00BE95 0%, #00a085 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 190, 149, 0.3);
}

.copy-btn-modern:hover {
    background: linear-gradient(135deg, #00a085 0%, #008b75 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 190, 149, 0.4);
}

/* Footer del cupón */
.coupon-footer {
    text-align: center;
}

.validity-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 190, 149, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    color: #00BE95;
    font-size: 14px;
    font-weight: 600;
}

/* Elementos decorativos */
.coupon-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(94, 81, 205, 0.1), rgba(0, 190, 149, 0.1));
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -40px;
    animation: float 8s ease-in-out infinite reverse;
}

.decoration-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(94, 81, 205, 0.2), transparent);
}

.line-1 {
    width: 100px;
    top: 20%;
    left: 10%;
    transform: rotate(15deg);
    animation: shimmer 3s ease-in-out infinite;
}

.line-2 {
    width: 80px;
    bottom: 25%;
    right: 15%;
    transform: rotate(-15deg);
    animation: shimmer 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive para el cupón moderno */
@media (max-width: 992px) {
    .coupon-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .discount-badge-modern {
        align-self: center;
    }
    
    .coupon-logo {
        align-self: center;
    }
    
    .coupon-code-modern {
        flex-direction: column;
        gap: 15px;
    }
    
    .code-text {
        font-size: 16px;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .modern-coupon-card {
        margin: 0 15px;
    }
    
    .coupon-body {
        padding: 30px 20px;
    }
    
    .coupon-title-modern {
        font-size: 24px;
    }
    
    .discount-number {
        font-size: 28px;
    }
    
    .coupon-code-section {
        padding: 20px;
    }
    
    .circle-1, .circle-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .coupon-header {
        padding: 20px;
    }
    
    .coupon-body {
        padding: 25px 15px;
    }
    
    .coupon-title-modern {
        font-size: 20px;
    }
    
    .discount-number {
        font-size: 24px;
    }
    
    .discount-text {
        font-size: 12px;
    }
    
    .coupon-logo img {
        width: 50px;
        height: 50px;
    }
    
    .code-text {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .copy-btn-modern {
        padding: 10px 16px;
        font-size: 12px;
    }
}

.services-title{
    font-weight: 500;
    font-size: 2rem;
    color: #666666;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.5rem;
    
}

.services-grid{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
}

.services-tabs{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-tab{
    position: relative;
    background: transparent;
    border: 2px solid rgba(0,190,149,0.5);
    color: black;
    border-radius: 14px;
    padding: 16px 22px 16px 48px;
    text-align: left;
    font-weight: 600;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-icon{
    font-size: 18px;
    color: #00BE95;
    flex-shrink: 0;
}

.service-tab:hover{
    border-color: #00BE95;
    transform: translateY(-2px);
}

.service-tab:hover .service-icon{
    color: #00a085;
    transform: scale(1.1);
}

.service-tab.active{
    border-color: #00BE95;
    box-shadow: 0 0 0 3px rgba(0,190,149,0.1) inset;
}

.service-tab.active .service-icon{
    color: #00BE95;
    transform: scale(1.05);
}

.discount-badge{
    position: absolute;
    left: -10px;
    top: -10px;
    background: #5E51CD;
    color: white;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.1;
    border-radius: 8px 8px 0px 8px;
}

.service-panel{
    border: 2px solid rgba(0,190,149,0.5);
    border-radius: 24px;
    padding: 24px;
    background-color: white;
}

.service-panel-header{
    text-align: center;
    margin-bottom: 16px;
}

.service-panel-title{
    color: black;
    font-weight: 600;   
}

.service-panel-heading{
    text-align: center;
    color: black;
    font-weight: 700;
    font-size: 36px;
    margin: 24px 0 8px;
}

.service-panel-content{
    color: black;
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Estilos específicos para el contenido del diagnóstico */
.diagnostico-content {
    padding: 20px 0;
}

.intro-section {
    margin-bottom: 30px;
}

.intro-text {
    font-size: 24px;
    font-weight: 600;
    color: black;
    margin-bottom: 20px;
    text-align: center;
}

.why-section, .experience-section, .more-than-section {
    margin-bottom: 30px;
}

.why-section h4, .experience-section h4, .more-than-section h4 {
    color: #00BE95;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-section ul, .experience-section ul, .more-than-section ul {
    padding-left: 20px;
}

.why-section li, .experience-section li, .more-than-section li {
    margin-bottom: 8px;
    color: black;
}

.highlight-text {
    background: rgba(0,190,149,0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #00BE95;
    margin: 20px 0;
    font-weight: 500;
    color: black;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.benefit-media{
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
}

.benefit-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefit-column {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-column h4 {
    color: #00BE95;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.benefit-column ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.benefit-column li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.benefit-column blockquote {
    background: rgba(94,81,205,0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #5E51CD;
    font-style: italic;
    margin: 0;
    color: #333;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

.impact-section {
    margin-top: 40px;
    text-align: center;
    background: rgba(0,190,149,0.05);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(0,190,149,0.2);
}

.impact-section h4 {
    color: #00BE95;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.impact-section ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.impact-section li {
    background: #00be952a;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 10px;
    border-left: 4px solid #00BE95;
    color: black;
    font-weight: 500;
}

/* Scrollbar personalizado */
.service-panel-content::-webkit-scrollbar {
    width: 8px;
}

.service-panel-content::-webkit-scrollbar-track {
    background: black;
    border-radius: 4px;
}

.service-panel-content::-webkit-scrollbar-thumb {
    background: #00BE95;
    border-radius: 4px;
}

.service-panel-content::-webkit-scrollbar-thumb:hover {
    background: #00a085;
}

#serviceContent > div > div.intro-section > p:nth-child(2){
    color: black;
}
/* Responsive */
@media (max-width: 992px){
    .services-grid{ grid-template-columns: 1fr; }
    .services-tabs{ flex-direction: row; flex-wrap: wrap; }
    .service-tab{ flex: 1 1 calc(50% - 9px); text-align: center; padding-left: 22px; }
    .discount-badge{ left: 6px; top: -8px; }
    .service-panel-heading{ font-size: 28px; }
    .benefits-grid{ grid-template-columns: 1fr; gap: 20px; }
    .intro-text{ font-size: 20px; }
    .benefits-section .main-title h2{ font-size: 28px; }
    .service-icon{ font-size: 16px; }
}

@media (max-width: 576px){
    .service-tab{ flex: 1 1 100%; }
    .service-panel{ padding: 18px; }
    .service-panel-heading{ font-size: 22px; }
    .service-panel-content{ font-size: 16px; }
    .intro-text{ font-size: 18px; }
    .benefits-grid{ gap: 15px; }
    .benefits-section .main-title h2{ font-size: 24px; }
    .benefits-section .main-title p{ font-size: 16px; }
    .benefit-column{ padding: 20px; }
    .benefit-column h4{ font-size: 18px; }
    .service-icon{ font-size: 14px; }
    .service-tab{ gap: 8px; }
}

@media (max-width: 1400px) {
    .hero-logo{
        width: 60px;
        height: 60px;
    }

    .box-hero-content-item-title h1{
        font-size: 36px;
    }
    
    .box-hero-content-item-description{
        font-size: 20px;
    }

    .hero-discount-badge {
        position: fixed !important;
        padding: 12px 20px;
      
        gap: 12px;
      
    }

    .hero-discount-badge.show {
        right: 15px !important;
    }

    .hero-discount-badge::before {
        font-size: 16px;
    }

    .discount-percentage {
        font-size: 14px;
        padding: 6px 12px;
    }

    .discount-service {
        font-size: 12px;
    }

    .hero-btn {
        padding: 15px 25px;
        font-size: 16px;
    }

    .hero-cta-buttons {
        gap: 15px;
        margin-bottom: 25px;
    }
}

.logo-about{
    width: 70vw;
}


@media (max-width: 768px) {
    .box-hero{
        left: 50%;
        transform: translate(-50%, 50%);
        width: 90%;
        max-width: 500px;
    }
    
    .box-hero-content-item-title{
        flex-direction: column;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-logo{
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .box-hero-content-item-title h1{
        font-size: 32px;
    }
    
    .box-hero-content-item-description{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-discount-badge {
        position: fixed !important;
        top: 10px !important;
        right: -280px !important; /* Ajustado para móvil */
        padding: 12px 15px;
        gap: 10px;
        
        font-size: 12px;
        z-index: 99999 !important;
    }

    .hero-discount-badge.show {
        right: 10px !important;
    }

    .hero-discount-badge::before {
        font-size: 16px;
    }

    .discount-percentage {
        font-size: 12px;
        padding: 6px 10px;
    }

    .discount-service {
        font-size: 11px;
    }

    .discount-close-btn {
        width: 20px;
        height: 20px;
        margin-left: 8px;
    }

    .discount-close-btn::before {
        font-size: 14px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 0 auto 20px auto;
        justify-content: center;
    }

    .hero-btn {
        padding: 15px 25px;
        font-size: 16px;
        justify-content: center;
    }
}

/* === Call to Action === */
.cta-section {
    padding: 60px 0;
    background-color: transparent;
}

.cta-card {
    background: linear-gradient(135deg, #f0f0ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-icon-container {
    position: relative;
    flex-shrink: 0;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-icon svg {
    color: #333;
    z-index: 2;
}

.cta-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    z-index: 3;
}

.cta-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #5E51CD;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 4;
}

.cta-content {
    flex: 1;
}

.cta-headline {
    font-size: 28px;
    font-weight: 700;
    color: #1F1740;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.cta-action {
    flex-shrink: 0;
}

.cta-button {
    background: #e9ecef;
    color: #1F1740;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#precios{
    background: linear-gradient(135deg, #f0f2f5 0%, #e1e5e9 15%, #ffffff 35%, #e8f4f8 55%, #ffffff 75%, #f0f2f5 100%);
}

/* Responsive para Call to Action */
@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }
    
    .cta-headline {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-card {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .cta-headline {
        font-size: 20px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .cta-icon {
        width: 50px;
        height: 50px;
    }
    
    .cta-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .cta-dot {
        width: 10px;
        height: 10px;
        top: 6px;
    }
    
    .cta-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}