/* Fonts */
@font-face {
    font-family: 'Ambit';
    src: url('ambit/Ambit-Regular.woff2') format('woff2'),
         url('ambit/Ambit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ambit';
    src: url('ambit/Ambit-Light.woff2') format('woff2'),
         url('ambit/Ambit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Ambit';
    src: url('ambit/Ambit-SemiBold.woff2') format('woff2'),
         url('ambit/Ambit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Ambit';
    src: url('ambit/Ambit-Bold.woff2') format('woff2'),
         url('ambit/Ambit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

/* Variables */
:root {
    --ice: #F6F7F8;
    --light: #E7E9EA;
    --mid: #BFC3C6;
    --dark: #8D8F92;
    --black: #0F1112;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ambit', sans-serif;
    background-color: var(--ice);
    color: var(--black);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Ambit', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(246, 247, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.logo img {
    height: 105px;
}

/* Menu Hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.95rem;
    color: var(--dark);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.nav a:hover {
    color: var(--black);
    transform: translateY(-2px);
}

/* Responsive Menu */
/* Tablet */
@media (max-width: 1024px) {
    .logo img {
        height: 85px;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }

    .header .container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--ice);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--light);
    }

    .nav a:hover {
        transform: translateX(5px);
    }

    .hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
    animation: heroImageZoom 20s ease-in-out infinite alternate;
    transition: transform 0.3s ease-out;
}

@keyframes heroImageZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 17, 18, 0.7) 0%, rgba(15, 17, 18, 0.3) 50%, rgba(15, 17, 18, 0.7) 100%);
    z-index: 2;
}

.hero-decorative {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: lineSlide 8s ease-in-out infinite;
}

.hero-line-1 {
    width: 100%;
    height: 2px;
    top: 30%;
    animation-delay: 0s;
}

.hero-line-2 {
    width: 100%;
    height: 2px;
    bottom: 30%;
    animation-delay: 4s;
}

@keyframes lineSlide {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

.hero-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: circleFloat 15s ease-in-out infinite;
    transition: transform 0.3s ease-out;
}

.hero-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: badgeFadeIn 1s ease-out 0.5s both;
    align-self: center;
}

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
}

.hero-title-line {
    display: block;
    opacity: 0;
    animation: titleReveal 1s ease-out forwards;
}

.hero-title-line:first-child {
    animation-delay: 0.8s;
}

.hero-title-line:last-child {
    animation-delay: 1.1s;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 1px;
    opacity: 0;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    text-align: center;
    animation: subtitleFadeIn 1s ease-out 1.4s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    opacity: 0;
    animation: ctaFadeIn 1s ease-out 1.7s both;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--ice);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease-out 2s both;
    z-index: 5;
}

@keyframes scrollIndicatorFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 16px;
        opacity: 0.3;
    }
}

/* Intro */
.intro {
    padding: 4rem 0;
    background: var(--ice);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    font-style: italic;
}

.lead {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 300;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Philosophy */
.philosophy {
    padding: 5rem 0;
    background: var(--ice);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.phil-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.phil-item p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.7;
}

/* Stage Section */
.stage-section {
    padding: 5rem 0;
    background: var(--ice);
}

.stage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stage-quote {
    padding: 2rem;
}

.stage-quote blockquote {
    border-left: 4px solid var(--dark);
    padding-left: 2rem;
}

.stage-quote p {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.6;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.stage-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.stage-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.stage-image:hover img {
    transform: scale(1.05);
}

/* Projects */
.projects {
    padding: 5rem 0;
    background: var(--ice);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.section-title p {
    font-size: 1rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project {
    background: white;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.project-img {
    height: 300px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project:hover .project-img img {
    transform: scale(1.05);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.project-content p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.year {
    font-size: 0.9rem;
    color: var(--mid);
    font-weight: 500;
}

/* Cast */
.cast {
    padding: 4rem 0;
    background: var(--ice);
}

.cast-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.cast-image img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.cast-image:hover img {
    transform: rotate(5deg) scale(1.05);
}

.cast-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.cast-text p {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* History Section */
.history-section {
    padding: 4rem 0;
    background: var(--ice);
}

.history-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.history-text p {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.history-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.history-image:hover img {
    transform: scale(1.03);
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background: var(--light);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--mid);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-label {
    text-align: right;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-label {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark);
    font-family: 'Lora', serif;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-label {
    justify-content: flex-start;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.7;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background: var(--ice);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

.contact-content {
    max-width: 600px;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.contact-lead {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.contact-content p {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.8;
}

.contact-info {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--black);
    line-height: 1.6;
}

/* Contact Links */
.contact-link {
    display: block;
    text-decoration: none;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
    transition: left 0.5s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.contact-link h4 {
    color: var(--black);
    font-weight: 600;
}

.contact-link p {
    color: var(--dark);
    margin-bottom: 0;
}

.contact-arrow {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--mid);
    transition: all 0.3s ease;
}

.contact-link:hover .contact-arrow {
    color: var(--black);
    transform: translateY(-50%) translateX(5px);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--light);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: white;
}

.footer-col h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--mid);
}

.footer-col:last-child {
    text-align: right;
}

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

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--ice);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-separator {
    color: var(--mid);
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--mid);
}

/* Process */
.process {
    padding: 5rem 0;
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--mid);
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.step p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.7;
}

/* Behind the Scenes */
.behind-scenes {
    padding: 5rem 0;
    background: var(--ice);
}

.reverse {
    direction: ltr;
}

.reverse .behind-text {
    order: 2;
}

.reverse .behind-image {
    order: 1;
}

.behind-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.behind-image:hover img {
    transform: scale(1.03);
}

.behind-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.behind-text p {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Values */
.values {
    padding: 5rem 0;
    background: var(--light);
}

.values-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--mid);
    transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover {
    border-color: var(--dark);
    transform: translateX(5px);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.value-card p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.7;
}

/* Testimonial */
.testimonial {
    padding: 5rem 0;
    background: var(--ice);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

blockquote {
    border: none;
    padding: 0;
}

blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Lora', serif;
}

cite {
    font-size: 1rem;
    color: var(--dark);
    font-style: normal;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.intro-title,
.lead {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.intro-title {
    animation-delay: 0.2s;
}

.lead {
    animation-delay: 0.4s;
}

.about-image {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.about-text {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.about-image {
    animation-delay: 0.2s;
}

.about-text {
    animation-delay: 0.4s;
}

.phil-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.project {
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.cast-text {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.cast-image {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.behind-text {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.behind-image {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.step {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.value-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-content {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.contact-info {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.stage-quote {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.stage-image {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.contact-content {
    animation-delay: 0.1s;
}

.contact-content {
    animation-delay: 0.2s;
}

.contact-info {
    animation-delay: 0.4s;
}

.phil-item:nth-child(1) {
    animation-delay: 0.1s;
}

.phil-item:nth-child(2) {
    animation-delay: 0.2s;
}

.phil-item:nth-child(3) {
    animation-delay: 0.3s;
}

.project:nth-child(1) {
    animation-delay: 0.1s;
}

.project:nth-child(2) {
    animation-delay: 0.2s;
}

.project:nth-child(3) {
    animation-delay: 0.3s;
}

.project:nth-child(4) {
    animation-delay: 0.4s;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.3s;
}

.step:nth-child(4) {
    animation-delay: 0.4s;
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}

.cast-text {
    animation-delay: 0.2s;
}

.cast-image {
    animation-delay: 0.4s;
}

.history-text,
.history-image,
.timeline-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.history-text {
    animation-delay: 0.2s;
}

.history-image {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.behind-image {
    animation-delay: 0.2s;
}

.behind-text {
    animation-delay: 0.4s;
}

.stage-quote {
    animation-delay: 0.2s;
}

.stage-image {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .grid-2,
    .grid-3 {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.85rem;
    }
    
    .hero {
        height: 100vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-scroll-indicator {
        bottom: 2rem;
    }

    .hero-circle-1 {
        width: 200px;
        height: 200px;
    }

    .hero-circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .intro-title {
        font-size: 1.6rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }

    .contact-link {
        padding: 1.5rem;
    }

    .contact-arrow {
        right: 1.5rem;
        font-size: 1.3rem;
    }
    
    .intro,
    .projects,
    .cast,
    .contact,
    .about-section,
    .history-section,
    .timeline-section {
        padding: 3rem 0;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .history-image img {
        max-width: 280px;
    }
    
    .timeline::before {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 0;
        margin-bottom: 2.5rem;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-label {
        position: relative;
        left: auto;
        justify-content: flex-start;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-left: 0;
    }

    .timeline-item:nth-child(even) .timeline-label {
        justify-content: flex-start;
    }

    .timeline-item:nth-child(odd) .timeline-label {
        text-align: left;
    }

    .timeline-content {
        padding: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-2,
    .projects-grid,
    .footer-grid,
    .events-grid,
    .about-content,
    .cast-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img,
    .cast-image img {
        max-width: 250px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img,
    .cast-image img {
        max-width: 280px;
    }
    
    .project-img {
        height: 250px;
    }
    
    .stage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stage-quote p {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .cast-text h2 {
        font-size: 1.6rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col:last-child {
        text-align: left;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .footer-separator {
        display: none;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    /* Formulários */
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    /* Tabelas */
    table {
        font-size: 0.9rem;
    }

    /* Imagens */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Small Mobile - Global */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-link {
        padding: 1.25rem;
        border-radius: 8px;
    }

    .contact-link h4 {
        font-size: 0.8rem;
    }

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

    .contact-arrow {
        right: 1.25rem;
        font-size: 1.2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 1.5rem;
    }

    /* Timeline - Small Mobile */
    .timeline-label {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

    .timeline-section {
        padding: 2.5rem 0;
    }
}
