/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 60px;
}

.hero-content {
    text-align: right;
}

.hero-logo {
    margin-bottom: 60px;
}

.logo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-left: auto;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-tagline {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 3vw, 32px);
    color: #f7f76d;
    letter-spacing: 0.01em;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Section */
.main-section {
    min-height: 100vh;
    background-color: #ffffff;
    padding-top: 0;
}

/* Section Header */
.section-header {
    background-color: #f7f76d;
    padding: 20px 60px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo .logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-aplicar {
    display: flex;
    align-items: center;
}

.header-aplicar span {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    letter-spacing: 0.05em;
}


/* Section Content */
.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.section-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 54px);
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.section-title strong {
    font-weight: 700;
}

/* Pills Container */
.pills-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.pill {
    background-color: #000000;
    border-radius: 100px;
    padding: 50px 80px;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.pill p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    line-height: 1.5;
}

/* Apply Button */
.apply-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    cursor: pointer;
}

.apply-button span {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    letter-spacing: 0.05em;
}

.apply-arrow-circle {
    width: 60px;
    height: 60px;
    background-color: #f7f76d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-arrow-circle .arrow-icon {
    width: 30px;
    height: 30px;
}

/* Program Section */
.program-section {
    background-color: #000000;
    min-height: 100vh;
    padding: 80px 60px;
}

.program-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.program-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
}

.vertical-logo {
    width: 100%;
    max-width: 300px;
}

.program-right {
    width: 100%;
}

.program-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 36px);
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.3;
}

.program-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.program-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

.card-header {
    background-color: #f7f76d;
    padding: 15px 30px;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    color: #000000;
    text-align: center;
}

.card-body {
    padding: 30px;
    background-color: #ffffff;
}

.card-body p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 18px);
    color: #000000;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.investment-text {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 3vw, 32px);
    color: #ffffff;
    text-align: right;
    margin-top: 50px;
}

/* Benefits Section */
.benefits-section {
    background-color: #000000;
    padding: 100px 60px;
    text-align: center;
}

.benefits-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 80px);
    color: #ffffff;
    margin-bottom: 80px;
    line-height: 1.2;
}

.benefits-circles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-circle-container {
    width: 100%;
    aspect-ratio: 1;
    perspective: 1000px;
}

.benefit-circle-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.benefit-circle-container:hover .benefit-circle-inner {
    transform: rotateY(180deg);
}

.benefit-circle-front,
.benefit-circle-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.benefit-circle-front {
    background-color: #f7f76d;
}

.benefit-circle-back {
    background-color: #000000;
    transform: rotateY(180deg);
}

.benefit-circle-front p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 20px);
    color: #000000;
    text-align: center;
    line-height: 1.3;
}

.benefit-circle-back p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(11px, 1.1vw, 15px);
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

/* Batch Section */
.batch-section {
    background-color: #f7f76d;
    padding: 100px 60px;
    text-align: center;
}

.batch-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 80px);
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.2;
}

.batch-content {
    max-width: 1200px;
    margin: 0 auto;
}

.batch-content p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.5vw, 32px);
    color: #000000;
    line-height: 1.5;
    margin-bottom: 30px;
}

.batch-content p:last-child {
    margin-bottom: 0;
}

/* Deadline Section */
.deadline-section {
    background-color: #000000;
    padding: 80px 60px;
}

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

.deadline-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    color: #ffffff;
    margin-bottom: 50px;
}

.deadline-dates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.deadline-date-box {
    background-color: #f7f76d;
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.2s;
}

.deadline-date-box:hover {
    transform: translateY(-5px);
}

.deadline-label {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 18px);
    color: #000000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deadline-value {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 32px);
    color: #000000;
    margin: 0;
}

/* Should Apply Section */
.should-apply-section {
    background-color: #ffffff;
    padding: 100px 60px;
    text-align: center;
}

.should-apply-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 80px);
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.2;
}

.should-apply-intro {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.should-apply-intro p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.5vw, 32px);
    color: #000000;
    line-height: 1.4;
    margin-bottom: 20px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.criteria-box {
    background-color: #000000;
    border-radius: 40px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.criteria-box p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 28px);
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

.final-apply-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    margin-top: 40px;
}

.final-apply-button span {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    letter-spacing: 0.05em;
}

.final-arrow-circle {
    width: 60px;
    height: 60px;
    background-color: #f7f76d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-arrow-circle .arrow-icon {
    width: 30px;
    height: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 40px 30px;
    }

    .hero-logo {
        margin-bottom: 30px;
    }

    .logo-image {
        max-width: 300px;
    }

    .hero-tagline {
        margin-top: 40px;
        font-size: clamp(14px, 4vw, 24px);
    }

    .section-header {
        padding: 10px 20px;
    }

    .header-logo .logo-image {
        height: 25px;
        max-width: 120px;
    }

    .header-aplicar span {
        font-size: 12px;
    }


    .section-content {
        padding: 50px 30px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .pills-container {
        gap: 20px;
        margin-bottom: 40px;
    }

    .pill {
        padding: 30px 40px;
        border-radius: 60px;
    }

    .apply-button {
        justify-content: center;
    }

    .apply-arrow-circle {
        width: 50px;
        height: 50px;
    }

    .program-section {
        padding: 50px 30px;
    }

    .program-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-left {
        position: relative;
        top: 0;
        align-items: center;
    }

    .vertical-logo {
        max-width: 200px;
    }

    .program-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .program-cards {
        gap: 20px;
        margin-bottom: 40px;
    }

    .card-header {
        padding: 12px 20px;
    }

    .card-body {
        padding: 20px;
    }

    .investment-text {
        text-align: center;
        margin-top: 40px;
    }

    .benefits-section {
        padding: 60px 30px;
    }

    .benefits-title {
        margin-bottom: 50px;
    }

    .benefits-circles {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .benefit-circle-front,
    .benefit-circle-back {
        padding: 20px;
    }

    .benefit-circle-front p {
        font-size: clamp(12px, 3vw, 18px);
    }

    .benefit-circle-back p {
        font-size: clamp(10px, 2.2vw, 14px);
    }

    .batch-section {
        padding: 60px 30px;
    }

    .batch-title {
        margin-bottom: 40px;
    }

    .batch-content p {
        margin-bottom: 25px;
    }

    .deadline-section {
        padding: 60px 30px;
    }

    .deadline-title {
        margin-bottom: 40px;
    }

    .deadline-dates {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deadline-date-box {
        padding: 30px 25px;
    }

    .should-apply-section {
        padding: 60px 30px;
    }

    .should-apply-title {
        margin-bottom: 40px;
    }

    .should-apply-intro {
        margin-bottom: 40px;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .criteria-box {
        padding: 35px 30px;
        border-radius: 30px;
    }

    .final-apply-button span {
        font-size: 20px;
    }

    .final-arrow-circle {
        width: 50px;
        height: 50px;
    }

    .final-arrow-circle .arrow-icon {
        width: 25px;
        height: 25px;
    }
}
