:root {
    --sz-white: #FFFFFF;
    --sz-black: #111111;
    --sz-neon-olive: #89F336;
    --sz-neon-olive-glow: rgba(137, 243, 54, 0.4);
    --sz-cyan: #00E0FF;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-speed: 0.3s;
    --z-index-bg: 1;
    --z-index-content: 10;
    --z-index-header: 100;
    --z-index-cta: 50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF !important;
    color: var(--sz-black);
    font-family: var(--font-body);
    line-height: 1.4;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1 {
    line-height: 1.1;
}

h2,
h3,
h4,
.section-title {
    line-height: 1.2
}

.sz-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: var(--z-index-header);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;

    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-speed) ease;
}

.page-servicios .sz-header {
    background: linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0) 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.page-filosofia.dark-mode .sz-header {
    background: linear-gradient(to bottom, #1A1A1A 0%, rgba(26, 26, 26, 0.9) 70%, rgba(26, 26, 26, 0) 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.page-filosofia.dark-mode .sz-section {
    background-color: transparent !important;
    box-shadow: none !important;
}

.page-filosofia.dark-mode .sz-logo,
.page-filosofia.dark-mode .nav-link {
    color: #FFFFFF !important;
}

.page-filosofia.dark-mode .nav-toggle .hamburger,
.page-filosofia.dark-mode .nav-toggle .hamburger::before,
.page-filosofia.dark-mode .nav-toggle .hamburger::after {
    background-color: #FFFFFF !important;
}

.logo-container,
.sz-nav,
.nav-toggle {
    pointer-events: auto;
}

.sz-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--sz-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sz-neon-olive);
    transition: width var(--transition-speed);
}

.nav-link:hover {
    color: var(--sz-black);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--sz-black);
    position: absolute;
    transition: all var(--transition-speed) ease;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.sz-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--sz-black);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-speed) ease;
    text-shadow: none;
}

.stoa-icon {
    color: #38A711;
    transition: all var(--transition-speed) ease;
}

.sz-logo:hover {
    color: var(--sz-black);
    text-shadow: none;
}

.sz-logo:hover .stoa-icon {
    color: var(--sz-neon-olive);
    filter: none;
}

.sz-hero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Inicio.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: var(--z-index-bg);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: var(--z-index-content);
    width: 100%;
    max-width: 1600px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 8vh auto 0 auto;
}

.hero-h1 {
    font-family: var(--font-heading);
    font-size: 6vw;
    font-weight: 700;
    color: var(--sz-black);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 100%;

    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-h2 {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--sz-black);
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.dynamic-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #38A711;
    padding: 0 0.2rem;
}

.cursor {
    font-family: var(--font-heading);
    color: #38A711;
    font-weight: 700;
    animation: blink 1s step-end infinite;
}

.dynamic-container {
    display: block;
    min-height: 1.5em;
    margin-top: 1.2rem;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.mobile-break {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;

    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    z-index: var(--z-index-cta);
}

.cta-container-fixed {
    display: none;

}

.btn-cta {
    position: relative;
    display: inline-block;
    text-decoration: none;
    background-color: var(--sz-black);
    color: var(--sz-neon-olive);
    border: 1px solid var(--sz-neon-olive);
    padding: 1.5rem 3.5rem; 
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.12em; 
    cursor: pointer;
    overflow: hidden;
    border-radius: 50px; 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: var(--z-index-cta);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.btn-cta::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0s;
    animation: sz-shimmer 3s infinite;
    z-index: 1;
}

@keyframes sz-shimmer {
    0% { left: -60%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--sz-neon-olive);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.5s ease-out, height 0.5s ease-out;
    z-index: 0;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px var(--sz-neon-olive-glow);
    border-color: #FFFFFF;
}

.btn-cta:hover::before {
    width: 600px;
    height: 600px;
}

.btn-text {
    position: relative;
    z-index: 1;
    transition: color 0.15s ease-in-out;
}

.btn-cta:hover .btn-text {
    color: var(--sz-black);

}

.cta-icon {
    display: none;

}


.sz-section {
    padding: 4rem 0;

    position: relative;
    background-color: var(--sz-white);
    z-index: 10;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.container-wide {
    width: 95%;
    margin: 0 auto;
    max-width: 1500px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.sz-center-force {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}


.hero-fade-transition {
    width: 100%;
    height: 35vh;

    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;

    pointer-events: none;
}

.sz-claridad {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: 35vh;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 90%),
        url('../assets/images/Claridad En Movimiento.png');
    background-size: contain;

    background-position: right center;

    background-repeat: no-repeat;
    background-color: transparent !important;
}

.sz-claridad-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
    max-width: 45%;

    margin-left: 0;

}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--sz-black);
    font-weight: 700;
}

.title-underlined-olive {
    text-decoration: underline;
    text-decoration-color: #38A711;

    text-decoration-thickness: 5px;

    text-underline-offset: 8px;

}

.title-underlined-burdeo {
    text-decoration: underline;
    text-decoration-color: #A835F2;

    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.sz-claridad .section-title {
    color: #A835F2;

    font-weight: 900;

    -webkit-text-stroke: 1px #A835F2;

    text-shadow: none;
}

.section-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.4;
    color: #444;

    text-align: justify;

}

.text-italic {
    font-style: italic;
}


.sz-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: transparent;

    padding: 0.5rem 0;

    display: flex;
    align-items: center;
}

.sz-marquee {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 55s linear infinite;

    font-family: var(--font-heading);
    font-size: 2.2rem;

    font-weight: 700;
    letter-spacing: 0.1em;
}

.c-neon {
    color: var(--sz-neon-olive);
    -webkit-text-stroke: 1px var(--sz-black);

    text-shadow: none;
}

.c-burdeo {
    color: #A835F2;
    text-shadow: none;
}

.star {
    color: var(--sz-black);
    opacity: 0.2;
    padding: 0 1.5rem;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10vw;
    background: linear-gradient(to right, var(--sz-white) 0%, transparent 100%);

    z-index: 2;
    pointer-events: none;
}

.marquee-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 10vw;
    background: linear-gradient(to left, var(--sz-white) 0%, transparent 100%);

    z-index: 2;
    pointer-events: none;
}


.sz-claridad {

    background-image:
        linear-gradient(to bottom, var(--sz-white) 0%, rgba(255, 255, 255, 0) 15%),
        url('../assets/images/Claridad%20En%20Movimiento.png');
    background-size: 100% 100%, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: scroll, fixed;
    position: relative;
    width: 100%;
    min-height: 550px;
    display: block;
}


#equipo {
    position: relative;
    overflow: hidden;

    padding-top: 2rem;
    padding-bottom: 3rem;
}

.equipo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: flex-start;

}

.section-header {
    text-align: left;

    max-width: 1000px;
    margin: 0 0 3rem 0;

}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;

    line-height: 1.4;

    color: #444;

    text-align: left;

    margin-top: 1.5rem;
}

.team-grid {
    display: flex;
    flex-direction: column;

    gap: 0.5rem;

    width: 100%;

}

.sz-center-force {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.sz-center-force .section-subtitle {
    text-align: center !important;
}

.team-member {
    background: rgba(255, 255, 255, 0.65);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border: 1px solid #EDEDED;
    padding: 0.6rem 2rem;

    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #38A711;

}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(56, 167, 17, 0.5);

}

.team-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--sz-black);
    margin-bottom: 0.1rem;

}

.team-role {
    font-family: var(--font-body);
    font-weight: 600;
    color: #38A711;

    margin-bottom: 0.2rem;

    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.team-desc {
    font-family: var(--font-body);
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}



.sz-ripple-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;

    display: flex;
    justify-content: center;
    align-items: center;
}

.ripple-circle {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(56, 167, 17, 0.5);

    opacity: 0;
    animation: ripple-expand 10.5s cubic-bezier(0.1, 0, 0.9, 1) infinite;

}

@keyframes ripple-expand {
    0% {
        width: 0px;
        height: 0px;
        opacity: 1;

    }

    100% {
        width: 160vw;

        height: 160vw;
        opacity: 0;
    }
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.brand-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;

}

.brand-card {
    background: rgba(255, 255, 255, 0.65);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border: 1px solid #EDEDED;
    padding: 1.2rem 2.5rem;

    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.brand-card.h-full {
    height: 100%;

}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 53, 242, 0.5);

}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #A835F2;
}

.brand-card-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.brand-card-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--sz-black);
    margin-bottom: 0.4rem;

    font-weight: 700;
}

.brand-card-desc {
    font-family: var(--font-body);
    font-size: 1.25rem;

    line-height: 1.4;

    color: #444;
    text-align: justify;
}

.brand-card-desc strong {
    color: var(--sz-black);
    font-weight: 700;
}

.proposito-list {
    list-style: none;

    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

}

.proposito-list li {
    font-family: var(--font-body);
    font-size: 1.25rem;

    line-height: 1.4;

    color: #444;
    position: relative;
    padding-left: 1.8rem;

}

.proposito-list li::before {
    content: '✦';

    position: absolute;
    left: 0;
    top: 2px;

    color: #A835F2;

    font-size: 1.2rem;
}

.proposito-list strong {
    color: var(--sz-black);
    font-weight: 700;
}

.social-link {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--sz-black);
    text-decoration: none;
    border-bottom: 2px solid var(--sz-neon-olive);
    padding-bottom: 0.2rem;
    transition: color var(--transition-speed);
}

.social-link:hover {
    color: #38A711;
}

@property --shine-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes shine-rotate {
    from {
        --shine-angle: 0deg;
    }

    to {
        --shine-angle: 360deg;
    }
}

@keyframes cloud-pass {
    0% {
        transform: translate(-20%, -20%) scale(1);
    }

    50% {
        transform: translate(20%, 20%) scale(1.1);
    }

    100% {
        transform: translate(-20%, -20%) scale(1);
    }
}

.shine-border-container {
    position: relative;
    overflow: hidden;

}

.shine-border-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            #A07CFE 45deg,
            #FE8FB5 90deg,
            #FFBE7B 135deg,
            transparent 180deg);
    animation: shine-rotate 4s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.shine-border-container::after {
    content: "";
    position: absolute;
    inset: 2px;

    background: inherit;
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;

    margin-bottom: 2rem;
}

.service-card {
    position: relative;
    background: transparent;
    border: none;

    padding: 1.5rem;

    display: flex;
    flex-direction: column;
    gap: 0.8rem;

    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;

}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;

    background: conic-gradient(from var(--shine-angle),
            transparent 0%,
            #A07CFE 10%,
            #FE8FB5 20%,
            #FFBE7B 30%,
            transparent 40%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: shine-rotate 4s linear infinite;
    z-index: 10;

    border-radius: inherit;
    pointer-events: none;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 1.5px;
    background: rgba(255, 255, 255, 0.57);

    backdrop-filter: blur(11.2px);

    -webkit-backdrop-filter: blur(11.2px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.38);

}

.service-card {
    background: transparent !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(137, 243, 54, 0.4);
}

.service-tier-badge {
    background-color: var(--sz-neon-olive);
    color: var(--sz-black);
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    align-self: flex-start;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--sz-black);
    line-height: 1.2;
    margin-bottom: 0.3rem;
    min-height: 4.5rem;

    display: flex;
    align-items: center;
}

.service-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    min-height: 5rem;
}

.service-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.5rem;

    min-height: 2.5rem;

    display: flex;
    align-items: center;
}

.service-focus {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--sz-black);
    text-align: left;

    margin-top: 0.5rem;

    min-height: 6rem;

}

.service-scope {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

}

.service-scope h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--sz-black);
}

.service-scope ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;

}

.service-scope li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #444;
    text-align: justify;
}

.service-scope li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #38A711;
    font-size: 1.2rem;
    line-height: 1;
}

.scope-content-wrapper {
    max-height: none;
    overflow: visible;
}

.scope-content-wrapper.expanded {
    max-height: 400px;

}

.btn-read-more {
    background: transparent;
    border: none;
    color: var(--sz-black);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin-top: auto;

    padding-top: 1rem;

    transition: color 0.3s ease;
}

.btn-read-more:hover {
    color: var(--sz-neon-olive);
}

.btn-read-more svg {
    transition: transform 0.4s ease;
}

.btn-read-more.expanded svg {
    transform: rotate(180deg);
}

.service-purpose {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 1.2rem;
    border-left: 3px solid #38A711;
    min-height: 6rem;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    text-align: left;
}

.service-purpose strong {
    display: block;
    color: var(--sz-black);
    margin-bottom: 0.3rem;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.intel-card {
    position: relative;
    background: transparent;
    color: var(--sz-white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: none;
    overflow: hidden;
    border-radius: 20px;
}

.intel-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(160, 124, 254, 0.95) 0%,

            rgba(254, 143, 181, 0.6) 60%,

            transparent 90%);
    animation: cloud-pass 12s ease-in-out infinite;
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.intel-card::after {
    content: "";
    position: absolute;
    inset: 1.5px;
    background: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(11.2px);
    -webkit-backdrop-filter: blur(11.2px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.15);

}

.intel-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--sz-white);
    line-height: 1.2;
}

.intel-subtitle {
    font-family: var(--font-body);
    color: var(--sz-neon-olive);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.intel-focus {
    font-size: 1.1rem;
    color: var(--sz-white);
}

.intel-desc,
.intel-value {
    font-size: 1rem;
    line-height: 1.4;
    color: #CCC;
    text-align: justify;
}

.intel-value strong {
    color: var(--sz-white);
}

.guarantee-box {
    position: relative;
    background: transparent;
    border: none;
    padding: 1.5rem 2.5rem;
    box-shadow: 10px 10px 0 var(--sz-neon-olive);
    overflow: hidden;
    border-radius: 12px;
}

.guarantee-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: conic-gradient(from var(--shine-angle),
            transparent 0%,
            #A07CFE 10%,
            #FE8FB5 20%,
            #FFBE7B 30%,
            transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: shine-rotate 6s linear infinite;
    z-index: 10;
    border-radius: inherit;
    pointer-events: none;
}

.guarantee-box::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: rgba(255, 255, 255, 0.57);
    backdrop-filter: blur(11.2px);
    -webkit-backdrop-filter: blur(11.2px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--sz-black);
    margin-bottom: 1rem;
}

.guarantee-intro {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #444;
}

.guarantee-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-list li {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    padding: 0.8rem 1.2rem;
    background-color: #F5F5F5;
    border-left: 4px solid #38A711;
}

.guarantee-footer {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid #DDD;
    color: var(--sz-black);
}

@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.sz-footer {
    background-color: #0A0A0A;
    color: #A0A0A0;
    padding: 5rem 0 2rem 0;
    font-family: var(--font-body);
    border-top: 1px solid rgba(255,255,255,0.05); 
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--sz-white);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-slogan {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 90%;
    color: #888;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: #666;
    transition: color 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.footer-socials a:hover {
    color: var(--sz-neon-olive);
    background: rgba(137, 243, 54, 0.1);
}

.footer-heading {
    color: var(--sz-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #38A711;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul a {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul a:hover {
    color: var(--sz-neon-olive);
    transform: translateX(4px);
}

.highlight-link {
    color: #38A711 !important;
    font-weight: 600;
}

.form-col p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #888;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-subscribe-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.footer-subscribe-form input:focus {
    border-color: var(--sz-neon-olive);
}

.footer-subscribe-form button {
    background: transparent;
    border: 1px solid #38A711;
    color: #38A711;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-subscribe-form button:hover {
    background: var(--sz-neon-olive);
    border-color: var(--sz-neon-olive);
    color: #000;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--sz-white);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-legal {
        justify-content: center;
    }
}


.sz-footer-light {
    background-color: #ffffff;
    color: #555;
    border-top: none;
}

.sz-footer-light::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

.sz-footer-light .footer-logo { color: #111; }
.sz-footer-light .footer-heading { color: #111; }
.sz-footer-light .footer-heading::after { background-color: var(--sz-neon-olive); }
.sz-footer-light .footer-slogan { color: #666; }
.sz-footer-light .footer-col ul a { color: #666; }
.sz-footer-light .footer-col ul a:hover { color: var(--sz-neon-olive); }
.sz-footer-light .form-col p { color: #666; }

.sz-footer-light .footer-socials a {
    color: #666;
    background: rgba(0,0,0,0.05);
}
.sz-footer-light .footer-socials a:hover {
    color: var(--sz-neon-olive);
    background: rgba(137, 243, 54, 0.15);
}

.sz-footer-light .footer-subscribe-form input {
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.1);
    color: #333;
}
.sz-footer-light .footer-subscribe-form input:focus {
    border-color: var(--sz-neon-olive);
    background: #fff;
}

.sz-footer-light .footer-bottom-bar {
    border-top: 1px solid rgba(0,0,0,0.08);
}
.sz-footer-light .footer-legal a { color: #555; }
.sz-footer-light .footer-legal a:hover { color: #111; }

@media screen and (max-width: 768px) {

    .sz-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 1rem 1.5rem;
        z-index: 9999 !important;
    }

    .nav-toggle {
        display: block;
    }

    .sz-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left var(--transition-speed) ease;
        z-index: 1000;
        pointer-events: auto;
    }

    .page-filosofia.dark-mode .sz-nav {
        background-color: rgba(26, 26, 26, 0.98);
    }

    .sz-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-toggle.active .hamburger {
        background-color: transparent !important;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
        background-color: var(--sz-black);
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
        background-color: var(--sz-black);
    }

    .page-filosofia.dark-mode .nav-toggle.active .hamburger::before,
    .page-filosofia.dark-mode .nav-toggle.active .hamburger::after {
        background-color: #FFFFFF !important;
    }

    .sz-logo {
        font-size: 2rem;
    }

    .hero-bg {

        background-color: rgba(255, 255, 255, 0.2);

        background-blend-mode: overlay;

        height: 110%;
    }

    .hero-overlay-mobile {
        display: block;
        background-color: rgba(255, 255, 255, 0.2);

    }

    .hero-content {
        padding: 0 2rem;
        margin-top: 100px;
        justify-content: center;
    }

    .hero-h1 {
        font-size: clamp(1.65rem, 6vw, 2.25rem);

        margin-bottom: 1.5rem;
        line-height: 1.1;

        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        padding: 0.8rem;
        border-radius: 12px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .dynamic-container {
        margin-top: 0.5rem;
        min-height: 1.5em;

    }

    .hero-h2 {
        font-size: 0.9rem;

        padding: 0.8rem;
        width: 100%;
        text-align: left;

    }

    .mobile-break {
        display: block;

        margin-bottom: 0.5rem;
    }

    .container {
        width: 88% !important;

    }

    .page-filosofia.dark-mode .section-title {
        font-size: 1.65rem !important;

        line-height: 1.2 !important;
        text-align: center !important;
    }

    .page-filosofia.dark-mode .sz-hero-filosofia .section-subtitle {
        font-size: 0.9rem !important;

        line-height: 1.4 !important;
        text-align: center !important;
    }

    .page-filosofia.dark-mode .sz-hero-filosofia div[style*="text-align: justify"] {
        text-align: center !important;
        max-width: 100% !important;
    }

    .page-filosofia.dark-mode .sz-hero-filosofia p {
        font-size: 0.85rem !important;

        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }

    .container-wide {
        width: 92% !important;

    }

    .sz-section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 1.5rem;

    }

    .section-subtitle {
        font-size: 0.85rem;

        line-height: 1.4;
        text-align-last: center;

    }

    .section-text {
        font-size: 0.85rem;

    }

    .sz-claridad {

        background-image:
            linear-gradient(to bottom, var(--sz-white) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, var(--sz-white) 100%),
            url('../assets/images/Claridad%20En%20Movimiento.png');
        background-size: 100% 100%, cover;

        background-position: center, center;
        background-attachment: scroll, fixed;

        min-height: 350px;

        padding: 0;
    }

    .sz-claridad-content {
        display: none;

    }

    .section-header {
        margin-left: 0;

        margin-bottom: 3rem;
    }

    .team-grid {
        display: flex;

        flex-direction: column;
        gap: 2rem;
        margin-left: 0;

    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.8rem;

    }

    .intelligence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intel-card {
        padding: 1.8rem;

    }

    .guarantee-box {
        padding: 2rem 1.5rem;
        box-shadow: 8px 8px 0 var(--sz-neon-olive);

    }

    .guarantee-list {
        grid-template-columns: 1fr;
    }

    .equipo-layout {
        grid-template-columns: 1fr;

        gap: 3rem;
    }

    .equipo-layout .section-header {
        order: -1;

    }

    .antihero-grid {
        grid-template-columns: 1fr;

        gap: 2.5rem;

    }

    .antihero-card {
        padding: 1.8rem !important;

        backdrop-filter: blur(12px);

    }

    .antihero-info h3 {
        font-size: 1.2rem !important;

    }

    .antihero-desc,
    .antidote-text {
        font-size: 0.75rem !important;

    }

    .antihero-card {
        padding: 1.2rem 1.1rem !important;

    }

    .laments-grid {
        grid-template-columns: 1fr 1fr;

        gap: 0.8rem;
    }

    .lament-card {
        padding: 1rem !important;
        min-height: 100px !important;
    }

    .lament-quote {
        font-size: 0.75rem !important;

    }

    .antidote-box {
        padding: 1.2rem !important;
    }

    .brand-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-name {
        font-size: 1.15rem;

    }

    .brand-card-number {
        font-size: 1.5rem;
    }

    .brand-card-title {
        font-size: 1.2rem;

    }

    .brand-card-desc,
    .proposito-list li {
        font-size: 0.85rem;

    }

    .service-title,
    .intel-title,
    .guarantee-title,
    .antihero-info h3 {
        font-size: 1.5rem !important;

    }

    .lament-quote,
    .antihero-desc,
    .antidote-text {
        font-size: 0.82rem !important;

    }

    .antidote-title {
        font-size: 0.9rem !important;
    }

    .brand-card {
        padding: 2rem 1.8rem;

    }

    .cta-container {
        display: flex;
        gap: 1rem;
        flex-direction: column;

        width: 100%;
        align-items: stretch;
    }

    .cta-container-fixed {
        display: block;
        position: fixed;
        bottom: 2rem;
        right: 1.5rem;
        z-index: var(--z-index-header);
    }

    .cta-container-fixed .btn-cta {
        width: 65px;
        height: 65px;
        border-radius: 50%;

        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);

    }

    .cta-container .btn-cta,
    .footer-actions .btn-cta {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        border-radius: 50px;
        padding: 1.2rem 2.5rem;
        
        font-size: 1rem;
        
        text-align: center;
        display: flex;
        
        align-items: center;
        justify-content: center;
    }

    .cta-container-fixed .btn-text {
        display: none;

    }

    .cta-icon {
        display: block;

        width: 28px;
        height: 28px;
        color: var(--sz-neon-olive);
        position: relative;
        z-index: 1;

    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;

    }

    .footer-logo {
        font-size: 1.8rem;

        margin-bottom: 0.8rem;
    }

    .footer-society {
        font-size: 0.85rem;

        line-height: 1.4;
    }

    .contact-item {
        font-size: 0.85rem;

    }

    .contact-label {
        font-size: 0.75rem;

    }

    .sz-footer {
        padding: 3rem 0 6rem 0;

    }
}


.sz-fab-container {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 1rem;
    z-index: 9999;
}

.sz-fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 60px;
    padding: 0 18px;

    border-radius: 30px;

    background-color: var(--sz-black);
    color: var(--sz-neon-olive);
    border: 1px solid var(--sz-neon-olive);
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    white-space: nowrap;
}

.fab-whatsapp {
    background-color: #25D366;

    color: var(--sz-white);
    border-color: #25D366;
}

.sz-fab-btn .fab-icon {
    min-width: 24px;

    margin: 0;
    transition: margin 0.3s ease;
}

.sz-fab-btn .fab-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    max-width: 0;

    opacity: 0;

    transform: translateX(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.sz-fab-btn.fab-expanded {
    padding: 0 25px;
}

.sz-fab-btn.fab-expanded .fab-icon {
    margin-right: 12px;
}

.sz-fab-btn.fab-expanded .fab-text {
    max-width: 250px;
    opacity: 1;
    transform: translateX(0);
}


.footer-actions {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-actions .btn-cta {
    background-color: #A835F2;
    border-color: #A835F2;
    color: #FFFFFF;
}

.footer-actions .btn-cta::before {
    background-color: #FFFFFF;

}

.footer-actions .btn-cta:hover .btn-text {
    color: #A835F2;
}

.footer-actions .btn-cta .btn-text svg {
    color: #FFFFFF;
    transition: color 0.15s ease-in-out;
}

.footer-actions .btn-cta:hover .btn-text svg {
    color: #A835F2;

}


.laments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;

    margin-top: 4rem;
}

.lament-card {
    position: relative;
    padding: 1.5rem 2rem;

    min-height: 140px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    border-left: 4px solid #FF9800;

    transition: all 0.3s ease;
    will-change: transform, opacity;

    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lament-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);

}

.lament-card::after {
    display: none;

}

.lament-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #E0E0E0;

    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.lament-quote::before {
    content: "“";
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    font-size: 4rem;
    color: #A835F2;
    opacity: 0.2;
    font-family: var(--font-heading);
}

.antihero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
    margin-top: 4rem;
}

.antihero-card::before {
    display: none;

}

.antihero-card::after {
    display: none;

}

.antihero-card {
    position: relative;
    padding: 2rem;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;

    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;

}

.antihero-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    .antihero-card {
        flex-direction: column;

        padding: 1.5rem;
        gap: 1.5rem;
    }
}

.antihero-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;

    color: #A835F2;
    margin-bottom: 1rem;
}

.antihero-desc {
    font-size: 1.15rem;
    color: #B0B0B0;

    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: justify;

}

.antidote-box {
    background: rgba(137, 243, 54, 0.03);

    padding: 2rem;
    border-left: 4px solid var(--sz-neon-olive);
    border-radius: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.antidote-title {
    color: #38A711;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.antidote-text {
    font-size: 1.1rem;
    color: #E0E0E0;

    line-height: 1.4;
    text-align: justify;

}

.page-filosofia.dark-mode .sz-footer {
    background-color: #1A1A1A;

    color: #E0E0E0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-filosofia.dark-mode .footer-logo {
    color: #FFFFFF;
}

.page-filosofia.dark-mode .footer-society {
    color: #B0B0B0;
}

.page-filosofia.dark-mode .contact-item {
    color: #E0E0E0;
}

.page-filosofia.dark-mode .contact-item a {
    color: var(--sz-neon-olive);

}

.page-filosofia.dark-mode .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
}


.sz-form-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.sz-form-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.sz-form-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 1px;
    background: #E0E0E0;
    z-index: 0;
}

.sz-step-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F0F2F5;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    margin: 0 20px;
    transition: all 0.3s ease;
}

.sz-step-circle.active {
    background: #38A711;
    color: #FFFFFF;
}

.sz-step-circle.completed {
    background: #38A711;
    color: #FFFFFF;
}

.sz-form-section-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    color: #38A711;
    border-bottom: 1px solid #EEE;
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
}

.sz-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .sz-form-row {
        grid-template-columns: 1fr;
    }
}

.sz-form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.sz-form-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--sz-black);
    margin-bottom: 0.5rem;
}

.sz-form-input, .sz-form-select, .sz-form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #FAFBFC;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.sz-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.sz-form-input:focus, .sz-form-select:focus, .sz-form-textarea:focus {
    border-color: #38A711;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(56, 167, 17, 0.1);
}

.sz-form-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
}

.sz-btn-outline {
    background: transparent;
    border: 1px solid #38A711;
    color: #38A711;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.sz-btn-outline:hover {
    background: rgba(56, 167, 17, 0.05);
}

.sz-btn-solid {
    background: #38A711;
    border: 1px solid #38A711;
    color: #FFFFFF;
    padding: 0.8rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sz-btn-solid:hover {
    background: #394A1C;
}

.sz-form-note {
    background: #FAFBFC;
    border: 1px dashed #CBD5E1;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.85rem;
    color: #64748B;
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
}

.sz-report-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
}

.sz-report-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.sz-report-box p {
    color: #B0B0B0;
    margin-bottom: 1.5rem;
}

.sz-report-box input, .sz-report-box textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.sz-report-box input:focus, .sz-report-box textarea:focus {
    border-color: #A835F2;
    box-shadow: 0 0 0 3px rgba(168, 53, 242, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.sz-report-box .sz-form-label {
    color: #E0E0E0;
}


@media (max-width: 992px) {
    .antihero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


body {
    opacity: 0;

    animation: szPageStart 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes szPageStart {
    0% { 
        opacity: 0; 
    }
    100% { 
        opacity: 1; 
    }
}



body.dashboard-active {
    background-color: #121212 !important;
    color: #EDEDED;
    margin: 0;
    padding: 0;
    overflow: hidden; 
}


body.dashboard-active #login-view {
    display: none !important;
}


.dashboard-layout {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}


.dashboard-sidebar {
    width: 280px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: all 0.3s ease;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-nav {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item-dashboard {
    padding: 0.8rem 1.5rem;
    margin-bottom: 0.2rem;
}

.nav-link-dashboard {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #AAA;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link-dashboard:hover {
    color: #FFF;
    background: rgba(255, 255, 255, 0.03);
}

.nav-link-dashboard.active {
    color: #121212;
    background: var(--sz-neon-olive);
}


.dashboard-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.dashboard-topbar {
    height: 70px;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 10;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(168, 53, 242, 0.15);
    border: 1px solid var(--sz-neon-purple);
    color: var(--sz-neon-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(168, 53, 242, 0.2);
}

.client-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFF;
}

.client-rut {
    font-size: 0.75rem;
    color: #AAA;
}


.dashboard-content-area {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}


.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #FFF;
    margin: 0;
}


.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: rgba(168, 53, 242, 0.03);
    border: 1px solid rgba(168, 53, 242, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(168, 53, 242, 0.08);
    border-color: rgba(168, 53, 242, 0.4);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--sz-neon-purple);
}

.stat-label {
    font-size: 0.8rem;
    color: #AAA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #FFF;
    font-weight: 700;
}


.docs-table {
    width: 100%;
    border-collapse: collapse;
}

.docs-table th, .docs-table td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}

.docs-table th {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.docs-table td {
    font-size: 0.95rem;
    color: #DDD;
}

.btn-download {
    background: rgba(168, 53, 242, 0.1);
    color: var(--sz-neon-purple);
    border: 1px solid rgba(168, 53, 242, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-download:hover {
    background: var(--sz-neon-purple);
    color: #121212;
}


.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.drag-drop-zone {
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s;
    cursor: pointer;
}

.drag-drop-zone:hover {
    border-color: var(--sz-neon-olive);
    background: rgba(195, 255, 0, 0.05);
}

.drag-icon {
    font-size: 3rem;
    color: #666;
    margin-bottom: 1rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.btn-cta-claridad {
    background-color: rgba(255, 255, 255, 0.90); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--sz-black);
    border: 2px solid rgba(56, 167, 17, 1); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
    transform: translateY(0);
}

.btn-cta-claridad::before {
    background-color: rgba(56, 167, 17, 0.2);
}

.btn-cta-claridad:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-claridad:hover .btn-text {
    color: var(--sz-black);
}

.btn-whatsapp.btn-cta-claridad {
    border-color: #25D366;
    color: var(--sz-black);
}
.btn-whatsapp.btn-cta-claridad::before {
    background-color: rgba(37, 211, 102, 0.2);
}

.sz-meteors-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    background: transparent;
}

.sz-meteor {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 1.5px;
    height: 1.5px;
    background-color: var(--sz-neon-olive); 
    border-radius: 9999px;
    pointer-events: none;
    opacity: 0;
    transform: rotate(215deg);
    animation: sz-meteor-anim linear infinite;
}

.sz-meteor::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, var(--sz-neon-olive), transparent);
}

@keyframes sz-meteor-anim {
    0% {
        transform: rotate(215deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    30% {
        opacity: 0.8;
    }
    100% {
        transform: rotate(215deg) translateX(-1000px);
        opacity: 0;
    }
}

