* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: VWText, sans-serif;
}

html {
    font-size: 16px;
}

body {
    background-color: #fff;
    min-width: 414px;
    pointer-events: auto !important;
    overflow-x: hidden;
}

.highlight-section {
    background-color: #f5f7fa;
    padding-top: 40px;
    padding-bottom: 40px;
}

.main-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container {
    width: 60%;
    max-width: 1440px;
    padding: 0 20px;
}

.main-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
}

.info {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #001f4d;
    gap: 2.8rem;
}

.info #title {
    margin-bottom: 0;
    font-size: 3rem;
    color: #001f4d;
    font-weight: 600;
}

.info #subtitle {
    margin-top: -50px;
    margin-bottom: 0;
    font-weight: lighter;
}

.offer-text {
    margin-bottom: 0;
}

.offer-text p {
    font-size: 1.1rem;
    color: #001f4d;
    margin: unset !important;
    font-weight: 100 !important;
}

.offer-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #001f4d;
    margin: unset !important;
}

.offer-text h2 + p {
    display: block;
    font-size: 0.9rem;
    font-weight: 600 !important;
    color: #001f4d;
    margin-top: 0.2rem;
}
  

.buttons {
    margin-top: 1rem;
    font-weight: 100;
}

.buttons button {
    padding: 9px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background-color: #001f4d;
    color: white;
}

.btn-secondary {
    background-color: white;
    border: 2px solid #001f4d;
    color: #001f4d;
}

.carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.carousel img {
    max-height: 350px;
    max-width: 500;
    object-fit: contain;
    height: 250px;
    /* width: 400px; */
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.thumbs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.thumbs {
    display: flex;
    gap: 10px;
    overflow: hidden;
    max-width: 360px;
}

.thumbs img {
    width: 80px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    flex-shrink: 0;
}

.thumbs img:hover {
    border-color: #001f4d;
}

.thumbs-nav button {
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #001f4d;
    cursor: pointer;
    transition: color 0.3s;
}

.thumbs-nav button:hover {
    color: #003366;
}

.features {
    width: 60%;
    margin: -30px auto;
    /* centraliza horizontalmente */
    background: #e0e6ec;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 50px;
}

.features ul.horizontal-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    list-style: none;
    width: 100%;
    position: relative;
}

.features ul.horizontal-list li {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #001f4d;
    font-weight: 100;
}

.features ul.horizontal-list li::before {
    content: '•';
    left: 0;
    top: 0;
    color: #001f4d;
    margin-right: 5px;
}

.menu-icon {
    font-size: 32px;
    cursor: pointer;
    color: #001f4d;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #001f4d;
    font-weight: 100;
}

@media (max-width: 768px) {
    .features {
        width: 95% !important;
        flex-direction: column;
        text-align: left;
        padding: 15px;
    }

    .features ul.horizontal-list {
        flex-direction: column;
        justify-content: unset !important;
        align-items: unset !important;
    }
    
    .features ul.horizontal-list li {
        flex: 1;
        text-align: left;
        align-items: unset !important;
        justify-content: unset !important;
        font-weight: normal !important;
    }

    .menu {
        order: 1;
    }

    .logo {
        order: 2;
        height: 15px;
        width: auto;
    }

    .main-section {
        flex-direction: column;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        flex-direction: column;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #menu-toggle:checked+.menu-icon+.menu-items {
        display: flex;
    }

    .buttons button,
    .buttons a {
        font-weight: normal !important;
    }
}

.top-header {
    background: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    left: 0 !important;
    right: 0 !important;
}

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

.logo {
    height: 30px;
    width: auto;
}

.menu {
    position: relative;
    height: 43px !important;
}

.menu-items {
    list-style: none;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    gap: 10px;
}

#menu-toggle:checked+.menu-icon+.menu-items {
    display: flex;
}

.menu-items li a {
    text-decoration: none;
    color: #001f4d;
    font-size: 0.9rem;
    font-weight: 100;
    white-space: nowrap;
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
}

/*Inicio do estilo que controla as abas de destaques*/
.destaques-section {
    margin: 40px auto;
    width: 100%;
    font-family: VWText, sans-serif;
}

.destaques-section .container {
    width: 60%;
    max-width: 1440px;
    margin: 0 auto;
}

.tab-header {
    display: flex;
    justify-content: start;
    border-bottom: 2px solid #ccc;
    margin-bottom: 1rem;
    gap: 2rem;
}

.tab-header strong,
.tab-header span {
    padding-bottom: 6px;
    font-size: 1.2rem;
    cursor: pointer;
}

.active-tab {
    border-bottom: 3px solid #001f4d;
    color: #001f4d;
}

.tab-content details {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.tab-content summary {
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    color: #001f4d;
}

.sub-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

details ul li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #001f4d;
    font-size: 0.95rem;
    border-bottom: 1px solid #cccccc7a !important;
}

details ul li:last-child {
    border-bottom: none !important;
}

details ul {
    padding-left: unset !important;
}

.check-icon {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.horizontal-list {
    margin-bottom: unset !important;
}

.tab-content ul li {
    list-style: none;
    position: relative;
    padding-left: 24px;
}

.tab-content ul li::before {
    content: '';
    position: absolute;
    margin-top: 10px;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M8.787 22.392C8.634 22.392 8.485 22.339 8.365 22.241L0.875 16.099L1.719 15.071L8.652 20.756L21.752 1.89502L22.844 2.65402L9.333 22.106C9.227 22.258 9.062 22.359 8.878 22.385C8.848 22.39 8.817 22.392 8.787 22.392Z" fill="%23001E50"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

.itens-serie ul li:last-child {
    border-bottom: none !important;
}

.itens-serie ul {
    padding-left: unset !important;
}

.itens-serie ul li {
    padding: 6px 0;
    padding-left: 22px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #001f4d;
    font-size: 0.95rem;
    border-bottom: 1px solid #cccccc7a !important;
}

.itens-serie ul li::before {
    content: '';
    position: absolute;
    margin-top: 8px;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M8.787 22.392C8.634 22.392 8.485 22.339 8.365 22.241L0.875 16.099L1.719 15.071L8.652 20.756L21.752 1.89502L22.844 2.65402L9.333 22.106C9.227 22.258 9.062 22.359 8.878 22.385C8.848 22.39 8.817 22.392 8.787 22.392Z" fill="%23001E50"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}


@media (max-width: 768px) {
    .container {
        width: 95% !important;
        padding: 0 15px;
    }

    .main-section {
        flex-direction: column;
        align-items: center;
    }

    .info {
        width: 100%;
        align-items: flex-start;
    }

    .carousel img {
        width: 100%;
        height: auto;
    }

    .buttons {
        flex-direction: column !important;
        width: 100%;
    }

    .buttons button,
    .buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .features {
        width: 95% !important;
        flex-direction: column;
        text-align: left;
        padding: 15px;
    }

    .feature-item {
        justify-content: flex-start;
    }

    .destaques-section .container {
        width: 95% !important;
    }

    .tab-header {
        flex-direction: column;
        gap: 8px;
    }

    .form-lateral {
        width: 100vw;
        max-width: 100%;
        right: 0;
    }

    .form-close {
        top: 10px;
        right: 10px;
    }
}



/* Corrige visibilidade inicial */
#form-lateral {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 9999;
}

#form-lateral.aberto {
    display: block;
    right: 0;
}

#form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9998;
}

#form-overlay.ativo {
    display: block;
}



@media (max-width: 768px) {
    .thumbs img {
        display: none !important;
    }

    .carousel img {
        max-width: 100%;
        height: auto;
    }
}



.carousel img {
    transition: opacity 0.4s ease-in-out, transform 0.3s ease;
}

#mainImage {
    display: block;
    margin: 0 auto;
}

.thumbs img {
    display: none;
}

@media (min-width: 769px) {
    .thumbs img {
        display: inline-block !important;
    }
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp-page {
    background-color: #25D366;
    border: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 100;
}