/* Consultoría Page Styles */
.consultoria-page {
    background-color: #000;
    min-height: 100vh;
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

/* Base animation classes */
.animate-on-scroll,
.animate-fade-in,
.animate-slide-left,
.animate-slide-right,
.animate-scale,
.animate-slide-up {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll {
    transform: translateY(50px);
}

.animate-fade-in {
    transform: translateY(30px);
}

.animate-slide-left {
    transform: translateX(-50px);
}

.animate-slide-right {
    transform: translateX(50px);
}

.animate-slide-up {
    transform: translateY(40px);
}

.animate-scale {
    transform: scale(0.95);
}

/* Visible state */
.animate-on-scroll.animate-visible,
.animate-fade-in.animate-visible,
.animate-slide-left.animate-visible,
.animate-slide-right.animate-visible,
.animate-scale.animate-visible,
.animate-slide-up.animate-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Progressive animation delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }
.animate-delay-7 { transition-delay: 0.7s; }
.animate-delay-8 { transition-delay: 0.8s; }

/* Hero Section - Fondo Negro */
.hero-plataforma-section {
    background-color: #000000;
    padding: 120px 0 80px 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* Label de sección */
.section-label {
    margin-bottom: 3rem;
}

.label-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 7%;
    color: rgba(186, 255, 41, 1);
    text-transform: uppercase;
}

/* Título principal */
.hero-title-container {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 74px;
    letter-spacing: -3%;
    color: #ffffff;
    margin: 0;
}

/* Descripción hero */
.hero-description {
    margin-top: 2rem;
}

.description-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.description-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
        line-height: 60px;
    }
    
    .description-text {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .hero-plataforma-section {
        padding: 100px 0 60px 0;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 52px;
    }
    
    .description-text {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .hero-plataforma-section {
        padding: 80px 0 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .description-text {
        font-size: 20px;
    }
    
    .label-text {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .description-text {
        font-size: 18px;
    }
    
    .label-text {
        font-size: 16px;
    }
}

/* Segunda Sección - ¿Qué ofrecemos? */
.services-section {
    background-color: #000000;
    padding: 80px 0;
}

.services-main-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 0%;
    color: rgba(186, 255, 41, 1);
    margin-bottom: 3rem;
}

/* Acordeón de Servicios */


.accordion-item {
    border-bottom: 1px solid rgba(245, 245, 245, 0.5);
    margin-bottom: 0;
}

.accordion-item:first-child {
    border-top: 1px solid rgba(245, 245, 245, 0.5);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-header:hover .accordion-content {
    transform: translateX(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-content {
    flex: 1;
    padding-right: 2rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.accordion-title .second-word {
    color: rgba(186, 255, 41, 1);
}

.accordion-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.accordion-toggle {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-icon {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    text-align: center;
}

.accordion-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Contenido desplegado */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 0 0 0;
    opacity: 0;
    transform: translateY(-15px);
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
    padding: 0 0 2rem 0;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, 
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
                padding 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Descripción del servicio - Primera columna */
.service-description {
    padding-right: 2rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
}

.service-description p,
.service-description ul,
.service-description ol,
.service-description li {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.service-description ul li {
    margin-bottom: 0.5rem;
}

.service-description p + p {
    margin-top: 1rem;
}

/* Caja de información - Segunda columna */
.service-info-box {
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 30px;
    padding: 2rem;
    height: fit-content;
}

.service-info-box p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}
.service-link {
    color: rgba(186, 255, 41, 1);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.service-link:hover {
    color: rgba(186, 255, 41, 0.8);
}

/* Check de proyecto más grande para additional info */
.project-check-large {
    width: 48px !important;  /* Doble del tamaño normal (24px * 2) */
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
}

.project-check-large i {
    font-size: 24px !important;  /* Doble del tamaño del icono normal */
}

/* Tercera Sección - Proyectos Asesorados */
.projects-section {
    background-color: #000000;
    padding: 80px 0;
}

.projects-content {
    padding-right: 3rem;
}

.projects-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: 0%;
    color: rgba(220, 150, 90, 1);
    margin-bottom: 2rem;
}

.projects-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

/* Lista de proyectos */
.project-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.project-check {
    width: 30px;
    height: 30px;
    background-color: rgba(220, 150, 90, 1);
    border: 2px solid rgba(0, 0, 0, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    align-self: flex-start;
}

.project-check i {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

.project-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #ffffff;
}

/* Responsive Design para Acordeón */
@media (max-width: 1199px) {
    .services-main-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .accordion-title {
        font-size: 48px;
    }
    
    .accordion-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }
    
    .accordion-title {
        font-size: 40px;
    }
    
    .accordion-subtitle {
        font-size: 20px;
    }
    
    .accordion-content {
        padding-right: 1rem;
    }
    
    .service-description {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .accordion-toggle {
        width: 50px;
        height: 50px;
    }
    
    .toggle-icon {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .services-main-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .accordion-title {
        font-size: 32px;
    }
    
    .accordion-subtitle {
        font-size: 18px;
    }
    
    .accordion-header {
        padding: 1.5rem 0;
    }
    
    .service-info-box {
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 575px) {
    .accordion-title {
        font-size: 28px;
    }
    
    .accordion-subtitle {
        font-size: 16px;
    }
    
    .accordion-toggle {
        width: 40px;
        height: 40px;
    }
    
    .toggle-icon {
        font-size: 18px;
    }
}

.color-highlight-orange {
    color: rgba(220, 150, 90, 1);
}

/* Estilos para viñetas de listas genéricas */
.accordion-body ul {
    list-style-type: disc;
    padding-left: 20px;
}

.accordion-body ul li {
    position: relative;
    list-style-type: disc;
    margin-bottom: 1rem;
}

.accordion-body ul li::marker {
    color: rgba(186, 255, 41, 1);
}

/* Fallback para navegadores que no soportan ::marker */
.accordion-body ul li:not(.project-item) {
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.accordion-body ul li:not(.project-item)::before {
    content: '●';
    color: rgba(186, 255, 41, 1);
    position: absolute;
    left: -20px;
    top: 0;
    font-size: 1em;
    line-height: inherit;
}