/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    min-height: 90px;
    width: 100%;
    background-color: #AF0E6E;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 900px;
    width: 100%;
    align-items: center;
    padding: 254px 80px 81px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-logo {
    width: 536px;
    max-width: 100%;
    aspect-ratio: 0.95;
    object-fit: contain;
}

/* Countdown Section */
.countdown-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #AF0E6E;
    padding: 51px 80px;
}

.countdown-container {
    display: flex;
    width: 836px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 70px;
    border-radius: 33px;
    border: 2px solid #F9E1AB;
}

.countdown-wrapper {
    display: flex;
    gap: 20px;
    width: 496px;
    max-width: 100%;
    margin-bottom: 20px; /* ou 0 */
    z-index: 10;
}

.countdown-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.countdown-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
}

.countdown-number {
    background-color: #F9E1AC;
    color: #AF0E6E;
    font-size: 80px;
    font-weight: normal;
    text-align: center;
    padding: 13px 26px;
    border-radius: 33px;
    border: 2px solid #F9E1AC;
    margin-bottom: -5px;
}

.countdown-label {
    color: #F9E1AB;
    font-size: 36px;
    margin-top: 22px;
}

.countdown-title {
    color: #F9E1AB;
    font-size: 54px;
    font-weight: normal;
    text-align: center;
}

.countdown-hours-minutes {
    background-color: #F9E1AC;
    color: #AF0E6E;
    font-size: 80px;
    font-weight: normal;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 7px 30px;
    border-radius: 33px;
    margin-top: 12px;
    margin-left: 23px;
}

.countdown-time-labels {
    display: flex;
    justify-content: space-between;
    width: 255px;
    max-width: 100%;
    color: #F9E1AB;
    font-size: 36px;
    margin-top: 22px;
}

/* Orange Section */
.orange-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: #FF7800;
    padding: 14px 80px 29px;
}

.orange-image {
    width: 813px;
    max-width: 100%;
    aspect-ratio: 6.29;
    object-fit: contain;
}

/* Routes Section */
.routes-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: #0D0D0D;
    padding: 40px 80px 78px;
}

.routes-decoration {
    width: 1335px;
    max-width: 100%;
    aspect-ratio: 20;
    object-fit: contain;
    margin-left: 15px;
}

.routes-title {
    color: white;
    font-size: 120px;
    font-weight: normal;
    text-align: center;
    margin-top: 29px;
}

.routes-info {
    width: 535px;
    max-width: 100%;
    aspect-ratio: 3.3;
    object-fit: contain;
}

.routes-description {
    color: white;
    font-size: 32px;
    font-weight: normal;
    text-align: center;
    margin-top: 27px;
}

.routes-content {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1642px;
    margin-top: 26px;
}

.routes-map {
    flex: 1;
    width: 84%;
}

.map-image {
    width: 100%;
    aspect-ratio: 2.53;
    object-fit: contain;
    border-radius: 0;
}

.routes-details {
    width: 16%;
    margin-left: 20px;
}

.details-image {
    width: 262px;
    aspect-ratio: 0.49;
    object-fit: contain;
}

/* Tips Section */
.tips-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0D0D0D;
    /* margin-top: -242px; */
    padding-bottom: 50px;
}

.tips-decoration {
    position: relative;
    width: 100%;
    aspect-ratio: 3.19;
    object-fit: contain;
    z-index: 10;
    /* margin-top: 242px; */
}

.tips-title {
    color: #FF7800;
    font-size: 120px;
    font-weight: normal;
    text-align: center;
}

.tips-subtitle {
    color: #FFFBF2;
    font-size: 54px;
    font-weight: normal;
    text-align: center;
    z-index: 10;
    margin-top: -8px;
}

.tips-grid {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1024px;
    margin-top: 100px;
}

.tip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.tip-title {
    color: #FF7800;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tip-description {
    color: #FFFBF2;
    font-size: 34px;
    font-weight: normal;
    line-height: 1.4;
}

.tip-description .highlight {
    color: #FFFBF2;
}

/* Footer */
.footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F9E1AB;
    margin-bottom: -38px;
    padding: 34px 80px;
    z-index: 10;
}

.footer-image {
    width: 1121px;
    max-width: 100%;
    aspect-ratio: 10.64;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px;
    }
    
    .hero-logo {
        width: 100%;
        max-width: 400px;
    }
    
    .countdown-section {
        padding: 51px 20px;
    }
    
    .countdown-container {
        padding: 20px 20px;
    }
    
    .countdown-wrapper {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .countdown-days,
    .countdown-time {
        width: 100%;
    }
    
    .countdown-number,
    .countdown-hours-minutes {
        font-size: 40px;
        padding: 13px 20px;
    }
    
    .countdown-title {
        font-size: 40px;
    }
    
    .countdown-hours-minutes {
        margin-left: 0;
    }
    
    .orange-section {
        padding: 14px 20px 29px;
    }
    
    .routes-section {
        padding: 40px 20px 78px;
    }
    
    .routes-title {
        font-size: 40px;
    }
    
    .routes-description {
        font-size: 24px;
    }
    
    .routes-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .routes-map,
    .routes-details {
        width: 100%;
        margin-left: 0;
    }
    
    .tips-section {
        /* margin-top: -200px; */
        /* padding-top: 100px; */
    }
    
    .tips-title {
        font-size: 40px;
    }
    
    .tips-subtitle {
        font-size: 24px;
    }
    
    .tips-grid {
        flex-direction: column;
        margin-top: 40px;
        margin-left: 0;
        max-width: 100% !important;
    }
    
    .tip-title {
        font-size: 24px;
    }
    
    .tip-description {
        font-size: 18px;
    }
    
    .footer {
        padding: 34px 20px;
    }
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    width: 100%;
    background-color: #AF0E6E;
}

.header-logo {
    max-height: 60px;
    object-fit: contain;
}

.routes-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
}

.routes-carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 200%; /* dois slides lado a lado */
}

.carousel-item {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-nav.left {
    left: 10px;
}

.carousel-nav.right {
    right: 10px;
}

.routes-carousel-container {
    width: 100%;
    max-width: 900px; /* ou o valor que desejar */
    margin: 0 auto;
    padding: 20px 0;
}

.routes-content .item {
    display: flex;
    justify-content: center;
}

.routes-content .item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.carousel-img {
    border-radius: 50px !important;
}

.tip-icon {
    width: 30%;
    height: 30%;
    object-fit: contain;
    margin-bottom: 16px;
}

.routes-btn-wrapper{
    z-index: 1;
}

.btn-standard {
    display: inline-block;
    background-color: #ff7900;   /* laranja vibrante padrão */
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.btn-standard:hover {
    background-color: #e66800;
}
