* {
    font-family:
        ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
        'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #e7501e;
    --button: #536876;
    --background: #fbfdfd;
    --text-dark: #2b2f38;
    --text-light: #555555;
}

body {
    background-color: var(--background);
    height: 300vh;
}

header {
    height: 8vh;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: rgb(240, 240, 240);
    padding: 0.5rem 7rem;
    z-index: 100;
    transition:
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

header img {
    height: 100%;
    object-fit: contain;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(20, 23, 33, 0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(240, 240, 240, 0.95);
}

.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.menu a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .menu {
        gap: 1rem;
    }

    .menu a {
        font-size: 0.85rem;
    }

    header {
        padding: 0.5rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu {
        gap: 0.5rem;
    }

    .menu a {
        font-size: 0.75rem;
    }

    header {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        height: 7vh;
    }
}

.language-select {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

@media (max-width: 480px) {
    .language-select {
        gap: 0.4rem;
    }
}

.lang-btn {
    font-size: 1.2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    padding: 0;
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 0.8;
}

.lang-btn.active {
    opacity: 1;
}

.lang-btn:focus {
    outline: none;
}

@media (max-width: 480px) {
    .lang-btn {
        font-size: 1rem;
    }
}

main {
    margin-top: 8vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    main {
        margin-top: 7vh;
    }
}

.front-page {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 7rem;
    animation: fadeIn 0.6s ease-in;
}

@media (max-width: 480px) {
    .front-page {
        padding: 2rem 1.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.front-page h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--button) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    will-change: transform;
    padding-bottom: 0.2rem;
}

.front-page .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    will-change: opacity, color;
}

.cta-button {
    text-decoration: none;
    background-color: var(--button);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(83, 104, 118, 0.25);
    letter-spacing: 0.3px;
}

.cta-button:hover {
    background-color: #465965;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(83, 104, 118, 0.35);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .front-page h1 {
        font-size: 2.5rem;
    }

    .front-page .subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    .front-page {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .front-page h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .front-page .subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }

    .front-page {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .front-page h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .front-page .subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
}

.profiles-section {
    padding: 6rem 7rem;
    background: linear-gradient(180deg, var(--background) 0%, #f0f2f5 100%);
}

.profiles-section:nth-child(3) {
    background: white;
}

.profiles-section:nth-child(4) {
    background: #f9fafb;
}

.profile-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.profile-row-reverse {
    direction: rtl;
}

.profile-row-reverse > * {
    direction: ltr;
}

.profile-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e8eaef 0%, #d8dce6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #999;
    font-weight: 600;
    border: 2px dashed #b0b8c4;
    position: relative;
}

.profile-image-placeholder::after {
    content: 'Imagen';
    position: absolute;
}

.profile-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 12px;
    --tilt: 0deg;
    --zoom: 1;
    transform: rotate(var(--tilt)) scale(var(--zoom));
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
}

.profile-image:hover {
    --zoom: 1.05;
}

.student-fan-gallery {
    position: relative;
    display: block;
    min-height: 420px;
}

.student-fan-caption {
    margin: 1.5rem auto 0;
    min-height: 1.6em;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(231, 80, 30, 0.16);
    background: linear-gradient(
        135deg,
        rgba(231, 80, 30, 0.12),
        rgba(83, 104, 118, 0.1)
    );
    box-shadow: 0 10px 24px rgba(43, 47, 56, 0.08);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.student-fan-item {
    --offset-x: 0px;
    --offset-y: 0px;
    --layer: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(280px, 24vw);
    transform: translate(
        calc(-50% + var(--offset-x)),
        calc(-50% + var(--offset-y))
    );
    z-index: var(--layer);
}

.student-fan-item .profile-image {
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.student-fan-item:hover {
    z-index: 10;
}

.student-fan-item:focus {
    outline: none;
    z-index: 10;
}

.student-fan-gallery .student-fan-item:nth-child(1) {
    --offset-x: -330px;
    --offset-y: 28px;
    --layer: 1;
}

.student-fan-gallery .student-fan-item:nth-child(1) .profile-image {
    --tilt: -28deg;
}

.student-fan-gallery .student-fan-item:nth-child(2) {
    --offset-x: -170px;
    --offset-y: 10px;
    --layer: 2;
}

.student-fan-gallery .student-fan-item:nth-child(2) .profile-image {
    --tilt: -14deg;
}

.student-fan-gallery .student-fan-item:nth-child(3) {
    --offset-x: 0px;
    --offset-y: 0px;
    --layer: 3;
}

.student-fan-gallery .student-fan-item:nth-child(3) .profile-image {
    --tilt: 0deg;
}

.student-fan-gallery .student-fan-item:nth-child(4) {
    --offset-x: 170px;
    --offset-y: 10px;
    --layer: 2;
}

.student-fan-gallery .student-fan-item:nth-child(4) .profile-image {
    --tilt: 14deg;
}

.student-fan-gallery .student-fan-item:nth-child(5) {
    --offset-x: 330px;
    --offset-y: 28px;
    --layer: 1;
}

.student-fan-gallery .student-fan-item:nth-child(5) .profile-image {
    --tilt: 28deg;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 20, 26, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
    z-index: 1000;
    padding: 2rem;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: min(900px, 90vw);
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    background: white;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-image.is-portrait {
    max-width: min(420px, 90vw);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1b1f26;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover {
    background: white;
}

@media (max-width: 480px) {
    .lightbox {
        padding: 1rem;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.profiles-section .profile-content {
    position: relative;
    padding: 1.6rem;
    border-radius: 18px;
    border: 1px solid transparent;
    background:
        linear-gradient(
                160deg,
                rgba(255, 248, 242, 0.95),
                rgba(241, 250, 255, 0.94) 55%,
                rgba(245, 246, 255, 0.95)
            )
            padding-box,
        linear-gradient(
                135deg,
                rgba(231, 80, 30, 0.75),
                rgba(255, 159, 67, 0.72),
                rgba(31, 126, 171, 0.7),
                rgba(83, 104, 118, 0.72)
            )
            border-box;
    box-shadow:
        0 14px 32px rgba(47, 62, 72, 0.17),
        0 0 0 1px rgba(255, 255, 255, 0.75) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    overflow: visible;
}

.profiles-section .profile-content::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(231, 80, 30, 0.34),
            transparent 58%
        ),
        radial-gradient(
            circle at 82% 75%,
            rgba(31, 126, 171, 0.3),
            transparent 54%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(255, 159, 67, 0.22),
            transparent 60%
        );
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

.profile-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--button));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-content .profile-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.profile-content .profile-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.profile-gallery {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    width: 100%;
}

.profile-gallery .profile-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
}

.student-gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.student-gallery-caption {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

@media (max-width: 768px) {
    .profiles-section {
        padding: 3rem 1rem;
    }

    .profile-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .profile-row-reverse {
        direction: ltr;
    }

    .profile-content h2 {
        font-size: 1.5rem;
    }

    .profile-content .profile-tagline {
        font-size: 1.1rem;
    }

    .profile-content .profile-description {
        font-size: 0.95rem;
    }

    .profile-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .student-fan-gallery {
        min-height: 320px;
    }

    .student-fan-caption {
        margin-top: 1.25rem;
        font-size: 0.95rem;
        padding: 0.5rem 0.9rem;
    }

    .student-fan-item {
        width: min(220px, 36vw);
    }

    .student-fan-gallery .student-fan-item:nth-child(1) {
        --offset-x: -195px;
        --offset-y: 20px;
    }

    .student-fan-gallery .student-fan-item:nth-child(2) {
        --offset-x: -102px;
        --offset-y: 8px;
    }

    .student-fan-gallery .student-fan-item:nth-child(4) {
        --offset-x: 102px;
        --offset-y: 8px;
    }

    .student-fan-gallery .student-fan-item:nth-child(5) {
        --offset-x: 195px;
        --offset-y: 20px;
    }
}

@media (max-width: 480px) {
    .profiles-section {
        padding: 2rem 1rem;
    }

    .profile-content h2 {
        font-size: 1.3rem;
    }

    .profile-content .profile-tagline {
        font-size: 1rem;
    }

    .profile-content .profile-description {
        font-size: 0.9rem;
    }

    .student-fan-gallery {
        min-height: 250px;
        margin-top: 2rem;
    }

    .student-fan-caption {
        margin-top: 1rem;
        font-size: 0.9rem;
        padding: 0.45rem 0.8rem;
    }

    .student-fan-item {
        width: min(170px, 42vw);
    }

    .student-fan-gallery .student-fan-item:nth-child(1) {
        --offset-x: -122px;
        --offset-y: 12px;
    }

    .student-fan-gallery .student-fan-item:nth-child(2) {
        --offset-x: -62px;
        --offset-y: 4px;
    }

    .student-fan-gallery .student-fan-item:nth-child(4) {
        --offset-x: 62px;
        --offset-y: 4px;
    }

    .student-fan-gallery .student-fan-item:nth-child(5) {
        --offset-x: 112px;
        --offset-y: 12px;
    }

    .profile-gallery {
        gap: 1rem;
        margin: 2rem auto 0;
    }
}

.ai-section {
    padding: 6rem 7rem;
    background: white;
    border-top: 4px solid var(--primary);
    margin: 0;
}

@media (max-width: 768px) {
    .ai-section {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .ai-section {
        padding: 2rem 1rem;
    }
}

.ai-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ai-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e8eaef 0%, #d8dce6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #999;
    font-weight: 600;
    border: 2px dashed #b0b8c4;
    position: relative;
}

.ai-image-placeholder::after {
    content: 'Imagen';
    position: absolute;
}

.ai-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ai-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .ai-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ai-content h2 {
        font-size: 1.6rem;
    }

    .ai-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ai-container {
        gap: 1.5rem;
    }

    .ai-content h2 {
        font-size: 1.3rem;
    }

    .ai-description {
        font-size: 0.9rem;
    }
}

.specs-section {
    padding: 6rem 7rem;
    background: #f9fafb;
}

.specs-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.specs-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.specs-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8eaef;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(20, 23, 33, 0.12);
    border-color: var(--primary);
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.spec-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .specs-section {
        padding: 3rem 1rem;
    }

    .specs-section h2 {
        font-size: 1.8rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spec-card {
        padding: 1.5rem;
    }

    .spec-card h3 {
        font-size: 1.1rem;
    }

    .spec-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .specs-section {
        padding: 2rem 1rem;
    }

    .specs-section h2 {
        font-size: 1.5rem;
    }

    .specs-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .specs-card {
        padding: 1.25rem;
    }

    .spec-card h3 {
        font-size: 1rem;
    }

    .spec-card p {
        font-size: 0.85rem;
    }
}

.contact-section {
    padding: 6rem 7rem;
    background: white;
    border-top: 4px solid var(--primary);
    margin: 0;
}

@media (max-width: 768px) {
    .contact-section {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
    }
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.85rem 1rem;
    border: 1px solid #d8dce6;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(231, 80, 30, 0.1);
}

.form-group textarea {
    resize: vertical;
    line-height: 1.5;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.form-consent input[type='checkbox'] {
    margin-top: 0.2rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-consent label {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text-light);
}

.form-consent a {
    color: var(--primary);
    font-weight: 600;
}

.form-consent a:hover {
    text-decoration: underline;
}

.form-button {
    background-color: var(--button);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(83, 104, 118, 0.25);
    letter-spacing: 0.3px;
    margin-top: 1rem;
}

.form-button:hover {
    background-color: #465965;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(83, 104, 118, 0.35);
}

.form-button:active {
    transform: translateY(-1px);
}

.form-button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 1.6rem;
    }

    .contact-header p {
        font-size: 0.95rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 1.3rem;
    }

    .contact-header p {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

footer {
    background: #f3f5f7;
    border-top: 1px solid #d8dce6;
    padding: 1.25rem 2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    footer {
        padding: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

.fan-container {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fan-image {
    position: absolute;
    width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.4s ease,
        z-index 0.4s ease;
    transform-origin: bottom center;
}

.fan-1 {
    transform: rotate(-30deg) translateX(-60px) translateY(20px);
    z-index: 1;
}

.fan-2 {
    transform: rotate(-15deg) translateX(-30px) translateY(10px);
    z-index: 2;
}

.fan-3 {
    transform: rotate(0deg) translateY(0);
    z-index: 3;
}

.fan-4 {
    transform: rotate(15deg) translateX(30px) translateY(10px);
    z-index: 2;
}

.fan-5 {
    transform: rotate(30deg) translateX(60px) translateY(20px);
    z-index: 1;
}

.fan-image:hover {
    transform: rotate(0deg) translateY(-20px) scale(1.1);
    z-index: 10;
}
