body {
    font-family: 'Chakra Petch', sans-serif;
    background: black;
}

/* Estilo da Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('img/capa-landing-page-hertz2.jpg') no-repeat center center/cover;
    animation: zoom-in 1s ease-in-out forwards; /* Animação */
  }
  
  @keyframes zoom-in {
    from {
      transform: scale(1.2);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.glass-box {
    background: rgba(56, 215, 0, 0.05);
    backdrop-filter: blur(8px);
    padding: 50px 40px;
    border-radius: none;
    width: 400px;
    height: 600px;
    border: 1px solid rgba(56, 215, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: polygon(
        60px 0,
        100% 0,
        100% calc(100% - 60px),
        calc(100% - 60px) 100%,
        0 100%,
        0 60px
    );
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.glass-box.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo {
    width: 160px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-logo.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-text {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-text.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-desc {
    font-size: 1rem;
    max-width: 450px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-desc.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-btn {
    font-size: 1rem;
    padding: 14px 40px;
    background: linear-gradient(90deg, #38D700 0%, #C4FFAF 100%);
    border-radius: none;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(1, 255, 1, 0.3);
    border: none;
    align-self: flex-start;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-btn.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
    color: #000;
}

.hero-btn:hover {
    transform: scale(1.05); 
    transition: transform 0.3s ease-in-out;
}

.hero-mobile-image,
.hero-mobile-image-2 {
    display: none;
}

@media (max-width: 992px) {
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 50px 20px;
        background: none;
    }

    .glass-box {
        max-width: 90%;
        padding: 40px;
        margin-top: 300px !important;
        margin-bottom: 400px !important;
        height: auto;
        align-items: flex-start;
        text-align: left;
        clip-path: polygon(
            40px 0,
            100% 0,
            100% calc(100% - 40px),
            calc(100% - 40px) 100%,
            0 100%,
            0 40px
        );
    }

    .hero-logo {
        width: 100px !important;
        margin-bottom: 15px;
        margin: auto;
    }

    .hero-text {
        font-size: 22px !important;
        margin-bottom: 15px;
    }

    .hero-desc {
        font-size: 14px !important;
        margin-bottom: 20px;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px !important;
        margin: 0;
        font-size: 12px !important;
        white-space: nowrap;
    }

    .hero::before {
        background: rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 768px) {
    .glass-box {
        max-width: 90%;
        padding: 20px;
        margin-top: 2px !important;
        margin: 20px auto;
        clip-path: polygon(
            30px 0,
            100% 0,
            100% calc(100% - 30px),
            calc(100% - 30px) 100%,
            0 100%,
            0 30px
        );
        height: auto;
    }

    .hero-mobile-image-2 {
        display: block;
        text-align: center;
        margin-top: 30px;
    }

    .hero-mobile-image-2 img {
        width: 100%;
        max-width: 400px;
        height: auto;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-mobile-image {
        display: none;
    }

    .hero {
        background: none;
    }

    .hero::before {
        background: rgba(0, 0, 0, 0.2);
    }
}

@media (min-width: 993px) {
    .hero {
        background: url('img/capa-landing-page-hertz2.jpg') no-repeat center center/cover;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .hero {
        background: url('img/Hertz-768-a-992(2).jpg') no-repeat center center/cover;
    }
}

@media (max-width: 768px) {
    .hero {
        background: url('img/Hertz-mobile-att1.jpg') no-repeat center center/cover;
    }
}



/* Sessão Delay Esportivo */
.delay-esportivo {
    padding: 50px 20px;
    text-align: left;
    background: black;
    color: white;
    overflow: hidden;
}

.delay-esportivo .container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.delay-esportivo.ativo .container {
    opacity: 1;
    transform: translateY(0);
}

.delay-esportivo h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.delay-esportivo h2 span {
    color: #28a745;
}

.delay-esportivo p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.delay-esportivo .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.delay-esportivo .video-column {
    flex: 0 0 50%;
    padding-right: 20px;
}

.delay-esportivo .text-column {
    flex: 0 0 50%;
}

.delay-esportivo .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.delay-esportivo .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


@media (min-width: 769px) {
    .delay-esportivo .video-container {
        padding-bottom: 133.33%;
    }
}


@media (max-width: 768px) {
    .delay-esportivo .video-container {
        padding-bottom: 56.25%;
    }

    .delay-esportivo .video-column,
    .delay-esportivo .text-column {
        flex: 0 0 100%;
        padding-right: 0;
    }

    .delay-esportivo .video-column {
        margin-bottom: 20px;
    }

    .delay-esportivo .video-container video {
        object-fit: contain;
    }
}


/* Benefícios Section */

.acesso-cards-section {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
}

.acesso-cards-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.acesso-cards-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.acesso-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.acesso-card {
    background: rgba(56, 215, 0, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(56, 215, 0, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin: 15px;
    width: 48%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    clip-path: polygon(
        40px 0,
        100% 0,
        100% calc(100% - 40px),
        calc(100% - 40px) 100%,
        0 100%,
        0 40px
    );
}

.acesso-card.left {
    text-align: left;
    align-items: flex-start;
}

.acesso-card.right {
    text-align: left;
    align-items: flex-start;
}

.card-content {
    text-align: left;
    width: 100%;
}

.card-icon-container {
    width: 60px;
    height: 60px;
    background-color: #38D700;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%, 0% 20%);
    margin-bottom: 20px;
}

.card-icon {
    width: 40px;
    height: auto;
    display: block;
}

.card-content h3 {
    margin-bottom: 15px;
}

.card-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.acesso-card.animated {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .acesso-card {
        width: 90%;
        margin: 15px auto;
        text-align: left;
        padding: 25px;
    }

    .acesso-card.left,
    .acesso-card.right {
        text-align: left;
        margin: 15px auto;
    }

    .mobile-left {
        align-items: flex-start;
    }

    .mobile-right {
        align-items: flex-end;
    }
}

/* Depoimentos SECTION */

#testimonials {
    background-color: #000;
    color: white;
    padding: 50px 0;
    text-align: center;
}

#testimonials h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 60%;
    max-width: 600px;
    height: 700px;
    margin: 0 auto;
}

.carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-inner img.active {
    opacity: 1;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

@media (max-width: 768px) {
    .carousel {
        width: 90%;
        max-width: none;
        height: 600px;
    }
}

@media (max-width: 480px) { 
    .carousel {
        height: 700px;
    }
}


/* Topics SECTION */

.topics {
    padding: 50px 0;
    background: black;
    color: #ffffff;
    position: relative;
}

.topics-imagem {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
}

.topics h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: left;
}

.topics-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.topic-item {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: rgba(56, 215, 0, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(56, 215, 0, 0.15);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    padding: 15px 20px;
}

.topic-item.show {
    opacity: 1;
    transform: translateX(0);
}

.topic-title {
    font-size: 1.2rem;
    margin: 0;
}

@media (max-width: 768px) {
    .topics-imagem {
        max-width: 350px;
    }

    .topics h2 {
        font-size: 2rem;
    }
}

.topics-imagem-mobile {
    display: none;
}

.topics-imagem-desktop {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    margin-left: 30px;
}

@media (max-width: 991px) {
    .topics-imagem-desktop {
        display: none;
    }

    .topics-imagem-mobile {
        display: block;
    }
}

.btn-topics {
    background: rgba(56, 215, 0, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(56, 215, 0, 0.15);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    padding: 15px 20px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    margin-top: 15px;
    align-self: flex-start;
}

.btn-topics:hover {
    background: rgba(56, 215, 0, 0.1);
}

/* Topics SECTION */

.topics {
    padding: 50px 0;
    background: black;
    color: #ffffff;
    position: relative;
}

.topics-imagem {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
}

.topics h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: left;
}

.topics-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.topic-item {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: rgba(56, 215, 0, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(56, 215, 0, 0.15);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    padding: 15px 20px;
}

.topic-item.show {
    opacity: 1;
    transform: translateX(0);
}

.topic-title {
    font-size: 1.2rem;
    margin: 0;
}

@media (max-width: 768px) {
    .topics-imagem {
        max-width: 350px;
    }

    .topics h2 {
        font-size: 2rem;
    }
}

.topics-imagem-mobile {
    display: none;
}

.topics-imagem-desktop {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    margin-left: 30px;
}

@media (max-width: 991px) {
    .topics-imagem-desktop {
        display: none;
    }

    .topics-imagem-mobile {
        display: block;
    }
}

.btn-topics {
    background: rgba(56, 215, 0, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(56, 215, 0, 0.15);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    padding: 15px 20px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    margin-top: 15px;
    align-self: flex-start;
}

.btn-topics:hover {
    background: rgba(56, 215, 0, 0.1);
}

.btn-topics-hero {
    font-size: 1rem;
    padding: 14px 40px;
    background: linear-gradient(90deg, #38D700 0%, #C4FFAF 100%);
    border-radius: 12px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(1, 255, 1, 0.3);
    border: none;
    margin-top: 25px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    position: relative;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: table;
}

.btn-topics-hero:hover {
    box-shadow: 0px 6px 12px rgba(1, 255, 1, 0.4);
    color: #000;
    transform: scale(1.05);
}

/*Whatsapp Button*/

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    margin-bottom: 50px;
    margin-right: 50px;
    display: inline-block;
}

.whatsapp-button {
    width: 80px;
    height: 80px;
    background-color: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    display: block;
}

.whatsapp-card {
    position: absolute;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-container:hover .whatsapp-card {
    opacity: 1;
}

@media (max-width: 991px) {
    .whatsapp-container {
        margin-bottom: 25px !important;
        margin-right: 12px !important;
    }

    .whatsapp-button {
        position: fixed;
        bottom: 50px;
        right: 25px;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        transition: transform 0.3s ease;
        clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }

    .whatsapp-card {
        right: 70px;
    }
}