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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: white;
    color: #000;
    overflow-x: hidden;
}

/* Classes para animações ao scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-element {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-in-element {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-in-element.visible {
    opacity: 1;
    transform: translateX(0);
}

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

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: white;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: fadeIn 1s ease-out;
    will-change: transform;
}

.hero-bg-mobile {
    display: none;
}

.hero-bg-desktop {
    display: block;
}

.hero-info {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 2;
    width: 100%;
    max-width: 1566px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    animation: fadeInUp 0.8s ease-out backwards;
    transition: all 0.3s ease;
}

.info-item:nth-child(1) {
    animation-delay: 0.2s;
}

.info-item:nth-child(2) {
    animation-delay: 0.4s;
}

.info-item:nth-child(3) {
    animation-delay: 0.6s;
}

.info-item:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.info-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.info-item:hover img {
    transform: rotate(5deg) scale(1.1);
}

.info-item p {
    font-size: 18px;
    color: white;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* Main Content Section */
.main-content {
    background: #e2f95a;
    padding: 80px 40px 60px;
    text-align: center;
    transition: all 0.8s ease-out;
}

.main-content h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    max-width: 1200px;
    margin: 0 auto 32px;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

.main-content h1:hover {
    transform: scale(1.02);
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.main-content a,
.cta-final a {
    text-decoration: none;
    display: inline-block;
}

.cta-button {
    background: #000;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    padding: 18px 60px;
    border: none;
    border-radius: 500px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button:hover {
    background: #333;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: scale(0.98) translateY(0);
}

.progress-info {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    width: 30%;
    height: 100%;
    background: #000;
    border-radius: 12px;
    animation: slideInFromLeft 1.5s ease-out 0.8s backwards;
}

.progress-text {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Percurso Section */
.percurso {
    background: #000;
    padding: 60px 40px 80px;
    text-align: center;
    position: relative;
    transition: background-color 0.3s ease;
}

.percurso h2 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

.percurso h2:hover {
    transform: translateX(10px);
}

.percurso-image {
    width: 100%;
    max-width: 895px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    transition: transform 0.3s ease;
}

.percurso-image:hover {
    transform: scale(1.02);
}

.percurso-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.percurso-image:hover img {
    filter: brightness(1.1);
}

/* Categorias Section */
.categorias {
    background: #000;
    padding: 60px 40px 80px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.categorias h2 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

.categorias h2:hover {
    transform: translateX(10px);
}

.categorias-image {
    width: 100%;
    max-width: 1266px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    transition: transform 0.3s ease;
}

.categorias-image:hover {
    transform: scale(1.02);
}

.categorias-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.categorias-image:hover img {
    filter: brightness(1.1);
}

/* Premiação Section */
.premiacao {
    background: #000;
    padding: 60px 40px 80px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.premiacao h2 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

.premiacao h2:hover {
    transform: translateX(10px);
}

.premiacao-image {
    width: 100%;
    max-width: 1166px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    transition: transform 0.3s ease;
}

.premiacao-image:hover {
    transform: scale(1.02);
}

.premiacao-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.premiacao-image:hover img {
    filter: brightness(1.1);
}

/* Kit Section */
.kit {
    background: #fff;
    padding: 0;
    text-align: center;
    transition: background-color 0.3s ease;
    position: relative;
}

.kit-content {
    background: #fff;
    padding: 60px 40px 40px;
    position: relative;
    z-index: 2;
}

.kit-title {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out backwards;
    transition: transform 0.3s ease;
}

.kit-title:hover {
    transform: scale(1.05);
}

.kit-title img {
    width: 100%;
    height: auto;
    display: block;
}

.kit-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    transition: color 0.3s ease;
}

.kit-image-wrapper {
    margin-bottom: -40px;
    position: relative;
}

.kit-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 80px;
}

.kit-image:hover {
    transform: scale(1.02);
}

.kit-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.kit-image:hover img {
    filter: brightness(1.05);
}

/* CTA Final Section */
.cta-final {
    background: #e2f95a;
    padding: 60px 40px 80px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.cta-final h2 {
    font-size: 42px;
    font-weight: 400;
    color: #000;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cta-final h2:hover {
    transform: scale(1.02);
}

.cta-button-final {
    background: #000;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    padding: 18px 60px;
    border: none;
    border-radius: 500px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.cta-button-final:hover {
    background: #333;
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: none;
}

.cta-button-final:active {
    transform: scale(0.98) translateY(0);
}

/* Footer */
footer {
    background: #fff;
    padding: 40px 40px 32px;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1440px) {
    .main-content h1 {
        font-size: 38px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .percurso h2,
    .categorias h2,
    .premiacao h2,
    .kit h2,
    .cta-final h2 {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: 100vh;
        min-height: 700px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 16px;
        bottom: 60px;
        max-width: 85%;
    }
    
    .info-item {
        padding: 12px 20px;
        gap: 10px;
    }
    
    .info-item p {
        font-size: 16px;
    }
    
    .main-content {
        padding: 60px 32px;
    }
    
    .main-content h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 16px 48px;
    }
    
    .progress-text {
        font-size: 14px;
    }
    
    .percurso,
    .categorias,
    .premiacao,
    .kit,
    .cta-final {
        padding: 50px 32px;
    }
    
    .percurso h2,
    .categorias h2,
    .premiacao h2,
    .kit h2 {
        font-size: 28px;
    }
    
    .kit-description {
        font-size: 14px;
    }
    
    .cta-final h2 {
        font-size: 32px;
    }
    
    .cta-button-final {
        font-size: 20px;
        padding: 16px 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-bg-desktop {
        display: none;
    }
    
    .hero-bg-mobile {
        display: block;
    }
    
    .hero-info {
        bottom: 56%;
        transform: translate(-50%, 50%);
        gap: 12px;
        max-width: 90%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .info-item {
        gap: 6px;
        padding: 8px 14px;
        flex: 0 1 auto;
    }
    
    .info-item:nth-child(1),
    .info-item:nth-child(2) {
        flex: 0 1 calc(42% - 6px);
        padding: 6px 0px;
    }
    
    .info-item:nth-child(3) {
        flex: 0 1 auto;
        padding: 8px 16px;
    }
    
    .info-item img {
        width: 24px;
        height: 24px;
    }
    
    .info-item p {
        font-size: 14px;
    }
    
    .main-content {
        padding: 40px 20px;
    }
    
    .main-content h1 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 14px 40px;
    }
    
    .progress-text {
        font-size: 12px;
    }
    
    .percurso,
    .categorias,
    .premiacao,
    .kit,
    .cta-final {
        padding: 40px 20px;
    }
    
    .percurso h2,
    .categorias h2,
    .premiacao h2,
    .kit h2 {
        font-size: 24px;
    }
    
    .kit-description {
        font-size: 14px;
    }
    
    .cta-final h2 {
        font-size: 28px;
    }
    
    .cta-button-final {
        font-size: 18px;
        padding: 14px 40px;
    }
}
