/* ============================================
   SOBRE NOSOTROS - ARKAIA
   ============================================ */

/* ============================================
   ANIMACIONES REVEAL
   ============================================ */
[data-reveal] {
    opacity: 0;
}

[data-reveal].revealed {
    opacity: 1;
}

/* Reveal Up */
.reveal-up {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.revealed {
    transform: translateY(0);
}

/* Reveal Down */
.reveal-down {
    transform: translateY(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-down.revealed {
    transform: translateY(0);
}

/* Reveal Left */
.reveal-left {
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
    transform: translateX(0);
}

/* Reveal Right */
.reveal-right {
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
    transform: translateX(0);
}

/* Reveal Scale Up */
.reveal-scale-up {
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale-up.revealed {
    transform: scale(1);
}

/* Reveal Fade */
.reveal-fade {
    transition: opacity 0.6s ease;
}

.reveal-fade.revealed {
    opacity: 1;
}

/* ============================================
   SECCIONES
   ============================================ */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.about-hero__parallax {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(57, 255, 20, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(157, 78, 221, 0.03) 0%, transparent 50%),
        linear-gradient(
            180deg,
            rgba(5, 5, 10, 0.75) 0%,
            rgba(5, 5, 10, 0.88) 50%,
            rgba(5, 5, 10, 0.95) 100%
        );
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-purple);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.about-hero__label-dot {
    width: 8px;
    height: 8px;
    background: var(--color-purple);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-purple);
    animation: pulse 2s ease-in-out infinite;
}

.about-hero__title {
    margin-bottom: 40px;
}

.about-hero__title-line {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.about-hero__title-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    line-height: 0.85;
}

.about-hero__title-word {
    display: block;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: clamp(8px, 2vw, 20px);
    text-transform: uppercase;
    font-family: var(--font-display);
    position: relative;
}

.about-hero__title-word--arkaia {
    background: linear-gradient(135deg, #39FF14 0%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter:
        drop-shadow(0 0 30px rgba(57, 255, 20, 0.5))
        drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
}

.about-hero__title-word--arkaia::before {
    content: 'ARKAIA';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, rgba(0, 240, 255, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
}

.about-hero__title-word--corporation {
    font-size: clamp(2.5rem, 7vw, 5rem);
    background: linear-gradient(135deg, #9D4EDD 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: clamp(15px, 3vw, 35px);
    margin-top: 0;
    filter:
        drop-shadow(0 0 25px rgba(157, 78, 221, 0.4))
        drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    animation: titleGlow 3s ease-in-out infinite;
    animation-delay: 0.5s;
    position: relative;
}

.about-hero__title-word--corporation::before {
    content: 'CORPORATION';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(57, 255, 20, 0.6));
    }
}

.about-hero__description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    font-family: var(--font-body);
}

.about-hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 120px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.about-hero__stat {
    text-align: center;
}

.about-hero__stat-value {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.about-hero__stat-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
}

.about-hero__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(124, 58, 237, 0.5) 50%,
        transparent 100%
    );
}

/* Mission Section */
.about-mission {
    padding: 100px 0;
    background: var(--color-bg);
}

.about-mission__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

@media (max-width: 768px) {
    .about-mission__grid {
        grid-template-columns: 1fr;
    }
}

.about-mission__item {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-mission__item:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
}

.about-mission__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 15px;
    margin-bottom: 25px;
}

.about-mission__icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-purple);
}

.about-mission__title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-mission__text {
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Stats Section */
.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.about-stats__item {
    padding: 30px;
    transition: transform 0.3s ease;
}

.about-stats__item:hover {
    transform: scale(1.05);
}

.about-stats__number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.about-stats__label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.about-team {
    padding: 100px 0;
    background: var(--color-bg);
}

.about-team__header {
    text-align: center;
    margin-bottom: 80px;
}

.about-team__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-cyan);
    margin-bottom: 20px;
}

.about-team__label-dot {
    width: 8px;
    height: 8px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.about-team__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 15px;
    font-weight: 900;
    position: relative;
}

.about-team__title .text-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #39FF14 50%, #9D4EDD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter:
        drop-shadow(0 0 30px rgba(6, 182, 212, 0.5))
        drop-shadow(0 0 20px rgba(57, 255, 20, 0.3))
        drop-shadow(0 5px 20px rgba(0, 0, 0, 0.6));
    animation: teamTitleGlow 4s ease-in-out infinite;
}

.about-team__title .text-gradient::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.15) 0%, rgba(57, 255, 20, 0.1) 40%, transparent 70%);
    filter: blur(25px);
    z-index: -1;
}

@keyframes teamTitleGlow {
    0%, 100% {
        filter:
            drop-shadow(0 0 25px rgba(6, 182, 212, 0.4))
            drop-shadow(0 0 15px rgba(57, 255, 20, 0.2))
            drop-shadow(0 5px 20px rgba(0, 0, 0, 0.6));
    }
    50% {
        filter:
            drop-shadow(0 0 45px rgba(6, 182, 212, 0.7))
            drop-shadow(0 0 30px rgba(57, 255, 20, 0.5))
            drop-shadow(0 5px 25px rgba(0, 0, 0, 0.7));
    }
}

.about-team__subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    font-style: italic;
}

/* Team Intro */
.team-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
    .team-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.team-intro__image-container {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.team-intro__glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.team-intro__image {
    position: relative;
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.team-intro__badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(57, 255, 20, 0.4);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #fff;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(57, 255, 20, 0.15);
}

.team-intro__badge-icon {
    font-size: 16px;
}

.team-intro__content {
    padding: 20px 0;
}

.team-intro__name {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
    position: relative;
}

.team-intro__name .text-neon {
    background: linear-gradient(135deg, #39FF14 0%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    filter:
        drop-shadow(0 0 25px rgba(57, 255, 20, 0.6))
        drop-shadow(0 0 15px rgba(0, 240, 255, 0.4))
        drop-shadow(0 3px 15px rgba(0, 0, 0, 0.5));
    animation: chesterGlow 3s ease-in-out infinite;
    letter-spacing: 2px;
}

.team-intro__name .text-neon::after {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle at center, rgba(39, 255, 20, 0.2) 0%, rgba(0, 240, 255, 0.1) 40%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

@keyframes chesterGlow {
    0%, 100% {
        filter:
            drop-shadow(0 0 20px rgba(39, 255, 20, 0.5))
            drop-shadow(0 0 10px rgba(0, 240, 255, 0.3))
            drop-shadow(0 3px 15px rgba(0, 0, 0, 0.5));
    }
    50% {
        filter:
            drop-shadow(0 0 40px rgba(39, 255, 20, 0.8))
            drop-shadow(0 0 25px rgba(0, 240, 255, 0.6))
            drop-shadow(0 5px 20px rgba(0, 0, 0, 0.6));
    }
}

.team-intro__bio {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

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

@media (max-width: 992px) {
    .team-intro__stats {
        justify-content: center;
    }
}

.team-intro__stat {
    text-align: center;
}

.team-intro__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.team-intro__stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specializations Section */
.specializations {
    padding: 100px 0;
    background: var(--color-bg);
}

.specialization {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.specialization:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}

.specialization:last-child {
    margin-bottom: 0;
}

.specialization--reverse {
    grid-template-columns: 1fr 1fr;
}

.specialization--reverse .specialization__media {
    order: 2;
}

.specialization--reverse .specialization__content {
    order: 1;
}

@media (max-width: 992px) {
    .specialization,
    .specialization--reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specialization--reverse .specialization__media,
    .specialization--reverse .specialization__content {
        order: initial;
    }
}

.specialization__media {
    position: relative;
}

.specialization__media-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 2px dashed rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.specialization__media-placeholder:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-color: rgba(124, 58, 237, 0.5);
}

.specialization__media-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--color-purple);
    opacity: 0.5;
}

.specialization__media-placeholder p {
    margin: 0;
    color: var(--color-text-secondary);
    font-style: italic;
    text-align: center;
}

/* Estilos para imágenes y videos cuando se agreguen */
.specialization__image,
.specialization__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.specialization__media:hover .specialization__image,
.specialization__media:hover .specialization__video {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.2);
    transform: scale(1.02);
}

.specialization__content {
    position: relative;
}

.specialization__number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.35);
    line-height: 1;
    margin-bottom: -30px;
}

.specialization__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.specialization__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.specialization__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.specialization__skill {
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-purple);
    transition: all 0.3s ease;
}

.specialization__skill:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

/* Services Section */
.about-services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(26, 10, 46, 0.5) 100%);
}

.about-services__header {
    text-align: center;
    margin-bottom: 60px;
}

.about-services__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
    background: rgba(124, 58, 237, 0.05);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: rgba(124, 58, 237, 0.2);
    transform: scale(1.1);
}

.service-card__icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-purple);
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.service-card__desc {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.about-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.about-cta__glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.about-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-neon), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta__text {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.about-cta__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        min-height: 100vh;
    }

    .about-hero__stats {
        gap: 30px;
        margin-bottom: 80px;
    }

    .about-hero__stat-divider {
        display: none;
    }

    .about-hero__title-line {
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .about-hero__title-main {
        gap: 10px;
    }

    .about-hero__title-word {
        letter-spacing: 6px;
    }

    .about-hero__title-word--arkaia {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .about-hero__title-word--corporation {
        font-size: clamp(1.8rem, 9vw, 3rem);
        letter-spacing: 8px;
        margin-top: 0;
    }

    .about-mission {
        padding: 60px 0;
    }

    .about-stats {
        padding: 60px 0;
    }

    .about-team {
        padding: 60px 0;
    }

    .specializations {
        padding: 60px 0;
    }

    .about-services {
        padding: 60px 0;
    }

    .about-cta {
        padding: 60px 0;
    }

    .team-intro {
        padding: 30px 20px;
        gap: 40px;
    }

    .team-intro__name {
        font-size: 2rem;
    }

    .team-intro__bio {
        font-size: 1rem;
    }

    .team-intro__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .specialization {
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .specialization__number {
        font-size: 4rem;
        margin-bottom: -20px;
    }

    .specialization__title {
        font-size: 1.8rem;
    }

    .specialization__desc {
        font-size: 1rem;
    }

    .specialization__media-placeholder {
        padding: 30px 20px;
    }

    .specialization__media-placeholder svg {
        width: 60px;
        height: 60px;
    }
}
