/* =========================================================
   MOTIVACIÓN SALSERA
   Homepage
========================================================= */


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #fffaf5 0%,
            #fff7f0 48%,
            #f8e9df 100%
        );

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -220px;
    left: -180px;

    background: rgba(201, 28, 58, 0.035);

    border-radius: 50%;
}

.hero-content {
    position: relative;

    width: min(1180px, calc(100% - 40px));

    min-height: 550px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: stretch;
}


/* Hero text */

.hero-copy {
    position: relative;
    z-index: 3;

    padding: 76px 30px 70px 0;

    display: flex;
    flex-direction: column;

    justify-content: center;

    max-width: 600px;
}

.hero-copy .eyebrow {
    margin-bottom: 17px;
}

.hero-copy h1 {
    color: var(--black);

    font-size: clamp(3.1rem, 5vw, 5.1rem);

    line-height: 0.98;

    letter-spacing: -2.5px;

    margin-bottom: 25px;
}

.hero-copy h1 span {
    color: var(--orange);
}

.hero-description {
    max-width: 500px;

    color: var(--muted);

    font-size: 0.98rem;

    line-height: 1.75;

    margin-bottom: 27px;
}


/* Hero features */

.hero-features {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-bottom: 27px;
}

.hero-feature {
    display: grid;

    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;

    column-gap: 8px;

    min-width: 120px;
}

.feature-icon {
    grid-row: 1 / 3;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0e5;

    color: var(--orange);

    font-size: 1.15rem;
}

.hero-feature strong {
    align-self: end;

    color: var(--text);

    font-size: 0.68rem;

    line-height: 1.2;
}

.hero-feature small {
    color: var(--muted);

    font-size: 0.62rem;

    line-height: 1.3;
}


/* Hero buttons */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
}


/* Social proof */

.social-proof {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--muted);

    font-size: 0.68rem;
}

.social-proof span {
    color: var(--orange);

    font-size: 0.9rem;
}


/* Hero image */

.hero-image {
    position: relative;

    min-height: 550px;

    overflow: hidden;

    border-bottom-left-radius: 160px;
}

.hero-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}

.hero-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #fff8f1 0%,
            rgba(255, 248, 241, 0.65) 4%,
            rgba(255, 248, 241, 0) 25%
        );
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    position: relative;

    z-index: 10;

    width: min(1080px, calc(100% - 40px));

    margin: -38px auto 0;
}

.stats-card {
    min-height: 86px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    align-items: center;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(234, 222, 212, 0.8);

    border-radius: 45px;

    box-shadow: var(--shadow-md);

    overflow: hidden;
}

.stat {
    min-height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border-right: 1px solid #eee3db;
}

.stat:last-child {
    border-right: 0;
}

.stat-icon {
    color: var(--orange);

    font-size: 1.55rem;

    line-height: 1;
}

.stat strong {
    display: block;

    color: var(--black);

    font-size: 0.92rem;

    line-height: 1.1;
}

.stat small {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 0.62rem;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-preview {
    width: min(1080px, calc(100% - 40px));

    margin: 75px auto 90px;

    display: grid;
    grid-template-columns: 46% 54%;

    align-items: center;

    gap: 65px;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image {
    position: relative;

    min-height: 410px;

    border-radius: 22px;
    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.about-image img {
    display: block;

    width: 100%;
    height: 410px;

    object-fit: cover;
    object-position: center;
}

.about-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 55%,
        rgba(0, 0, 0, 0.12) 100%
    );

    pointer-events: none;
}


/* =========================================================
   ABOUT BADGE
========================================================= */

.about-badge {
    position: absolute;

    z-index: 2;

    right: 18px;
    bottom: 20px;

    width: 92px;
    height: 92px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange);
    color: #fff;

    text-align: center;

    transform: rotate(-7deg);

    box-shadow: 0 8px 20px rgba(100, 50, 10, 0.2);
}

.about-badge span {
    display: block;

    color: #fff;

    font-family: Georgia, serif;

    font-size: 0.68rem;
    line-height: 1.1;
}

.about-badge strong {
    display: block;

    color: #fff;

    font-family: Georgia, serif;

    font-size: 0.85rem;
    line-height: 1.1;
}

.about-badge small {
    display: block;

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.52rem;

    line-height: 1.2;

    margin-top: 3px;
}


/* =========================================================
   ABOUT COPY
========================================================= */

.about-copy {
    min-width: 0;

    padding-right: 10px;
}


/* Small "ÜBER JAMILET" label */

.about-copy .eyebrow {
    display: block;

    margin: 0 0 14px;

    color: var(--orange);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.2;
}


/* =========================================================
   ABOUT HEADING
========================================================= */

.about-copy h2 {
    margin: 0 0 22px;

    color: var(--black);

    font-size: clamp(2.15rem, 3.6vw, 3.25rem);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.about-copy h2 span {
    color: var(--black);
}

.about-copy h2 .about-highlight {
    color: var(--red);
}



/* "Deine Tanzlehrerin" / "Tu profesora de baile" */

.about-copy h2 span:first-child {
    color: var(--black);
}


/* "mit Herz" / "con corazón" */

.about-copy h2 span:nth-of-type(2),
.about-copy h2 span:nth-of-type(3) {
    color: var(--red);
}


/* Heart */

.about-copy h2 i {
    display: inline-block;

    margin-left: 6px;

    color: var(--red);

    font-family: Arial, sans-serif;

    font-size: 1.45rem;
    font-style: normal;

    vertical-align: middle;

    transform: rotate(-12deg);
}


/* =========================================================
   ABOUT DESCRIPTION
========================================================= */

.about-text {
    max-width: 570px;

    margin: 0 0 23px;

    color: var(--muted);

    font-size: 0.91rem;

    line-height: 1.75;
}


/* =========================================================
   ABOUT LIST
========================================================= */

.about-list {
    display: flex;
    flex-direction: column;

    gap: 11px;

    margin: 0 0 26px;
    padding: 0;

    list-style: none;
}

.about-list li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 0;
    padding: 0;

    color: #514844;

    font-size: 0.75rem;
    line-height: 1.5;
}

.about-list li > span:first-child {
    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #fbe8df;

    color: var(--red);

    font-size: 0.65rem;
    font-weight: 800;

    line-height: 1;
}

.about-list li > span:last-child {
    flex: 1;

    min-width: 0;
}


/* =========================================================
   ABOUT LINK
========================================================= */

.about-copy .text-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    color: var(--red);

    font-size: 0.76rem;
    font-weight: 800;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.about-copy .text-button span {
    color: inherit;

    transition: transform 0.25s ease;
}

.about-copy .text-button:hover {
    color: var(--orange);

    transform: translateX(2px);
}

.about-copy .text-button:hover span {
    transform: translateX(4px);
}



/* =========================================================
   COURSES HEADING
========================================================= */

.courses-heading {
    position: relative;

    padding: 70px 20px 65px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.08),
            transparent 55%
        ),
        var(--red);

    color: white;

    overflow: hidden;
}

.courses-heading::before,
.courses-heading::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.courses-heading::before {
    left: -130px;
    top: -170px;
}

.courses-heading::after {
    right: -130px;
    bottom: -190px;
}

.courses-heading .eyebrow {
    position: relative;
    z-index: 2;

    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 12px;
}

.courses-heading h2 {
    position: relative;
    z-index: 2;

    font-size: clamp(2.4rem, 5vw, 4rem);

    line-height: 1;

    color: white;

    margin-bottom: 16px;
}

.courses-heading h2 span {
    color: var(--orange-light);
}

.courses-heading > p:not(.eyebrow) {
    position: relative;
    z-index: 2;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.82rem;

    line-height: 1.6;
}

.heading-decoration {
    position: relative;

    z-index: 2;

    width: 55px;
    height: 3px;

    margin: 23px auto 0;

    background: var(--orange-light);

    border-radius: 10px;
}


/* =========================================================
   COURSES
========================================================= */

.courses-section {
    background: var(--cream);

    padding: 75px 20px 100px;
}

.course-grid {
    width: min(1080px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.course-card {
    position: relative;

    min-height: 265px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.course-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            var(--orange)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-7px);

    border-color: #e2cfc4;

    box-shadow: var(--shadow-md);
}

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

.course-number {
    position: absolute;

    top: 19px;
    right: 23px;

    color: #eee3dc;

    font-family: Georgia, serif;

    font-size: 2.2rem;

    font-weight: 700;

    line-height: 1;
}

.course-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #fff0e6;

    color: var(--red);

    font-size: 1.3rem;

    transition: var(--transition);
}

.course-card:hover .course-icon {
    background: var(--red);

    color: white;

    transform: rotate(-8deg);
}

.course-card h3 {
    color: var(--black);

    font-size: 1.45rem;

    margin-bottom: 9px;
}

.course-card p {
    max-width: 260px;

    color: var(--muted);

    font-size: 0.75rem;

    line-height: 1.6;

    margin-bottom: auto;
}

.course-link {
    display: inline-flex;

    margin-top: 22px;

    color: var(--red);

    font-size: 0.72rem;

    font-weight: 800;

    transition: var(--transition);
}

.course-card:hover .course-link {
    transform: translateX(4px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    position: relative;

    padding: 95px 20px;

    background:
        linear-gradient(
            135deg,
            var(--red-dark),
            var(--red)
        );

    color: white;

    text-align: center;

    overflow: hidden;
}

.final-cta::before,
.final-cta::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta::before {
    width: 500px;
    height: 500px;

    left: -250px;
    top: -280px;
}

.final-cta::after {
    width: 420px;
    height: 420px;

    right: -210px;
    bottom: -270px;
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 680px;

    margin: 0 auto;
}

.cta-content .eyebrow {
    color: rgba(255, 255, 255, 0.72);

    margin-bottom: 13px;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);

    line-height: 1;

    color: white;

    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--orange-light);
}

.cta-content > p:not(.eyebrow) {
    max-width: 540px;

    margin: 0 auto 28px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.88rem;

    line-height: 1.7;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #241b1b;

    color: white;

    padding: 55px 20px 30px;
}

.footer-inner {
    width: min(1080px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 35px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    width: 145px;

    margin-bottom: 15px;

    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 240px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.75rem;

    line-height: 1.6;
}

.footer-links,
.footer-legal {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);

    font-size: 0.74rem;

    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--orange-light);

    transform: translateX(3px);
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.35);

    font-size: 0.65rem;

    margin-top: 7px;
}


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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy > * {
    animation: fadeUp 0.7s ease both;
}

.hero-copy .eyebrow {
    animation-delay: 0.05s;
}

.hero-copy h1 {
    animation-delay: 0.12s;
}

.hero-description {
    animation-delay: 0.2s;
}

.hero-features {
    animation-delay: 0.28s;
}

.hero-buttons {
    animation-delay: 0.35s;
}

.social-proof {
    animation-delay: 0.42s;
}
