/* ===== RESET E VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1B3A5C;
    --secondary-blue: #0B8BA3;
    --accent-orange: #FF9500;
    --light-gray: #F5F5F5;
    --secondary-color: #f5f5f5;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-dark2: #3a3636;
    --dark-gray: #333333;
    --border-gray: #E0E0E0;
    --gold: #FFD700;
    --color-primary3: #E9B847;
    --color-primary2: #c29c44;
    --green: #22C55E;
    --red: #EF4444;
    --yellow: #FBBF24;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --transition: all 0.3s ease;
    --radius: 0.5rem;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
button {
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

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

.top-message{
    z-index: 9999999999999;
    display: flex;
    background-color: #222222;
    top: 0;
    height: 80px;
    color: #E9B847;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.top-message .top-message-section{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.top-message .top-message-section span{
    font-weight: bold;
    text-align: center;
}

.countdown-page .info {
    display: flex;
    align-items: center;
}

.countdown-page .info h1{
    font-weight: bold;
    color: #383d37;
}

.uk-countdown-number {
    font-size: 3rem;
}

.countdown-page .info .mec {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-page .info button {
    background-color: var(--color-primary3);
    border: none;
    border-radius: 5px;
    padding: 7.7px;
    color: #fff;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: bold;
}

.countdown-page .info button:hover{
    color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    transition: 0.2s;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.logo img{
    width: 150px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    flex: 1;
    margin-left: var(--spacing-xl);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: var(--radius);
    padding: 0.5rem var(--spacing-sm);
    border: 1px solid var(--border-color);
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 0.9rem;
    width: 200px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.logo i {
    font-size: 28px;
    color: var(--accent-orange);
}

.cta-btn {
  background-color: var(--accent-orange);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.banner{
    background-image: url('../img/background.webp');
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 100px;
}

.banner > div{
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    align-items: center;
}

.banner_content{
    display: flex;
    flex-direction: column;
    width: 40%;
}

.banner .banner_logo img{
    width: 120px;
    margin-bottom: 50px;
}

.banner_content .banner_pos{
    display: flex;
    align-items: center;
    width: 50%;
    z-index: 1;
}

.banner_content .banner_pos h2{
    color: #fff;
    font-weight: bold;
    font-size: 55px;
    text-align: center;
}

.banner_content .banner_price{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 75%;
    position: relative;
}

.banner_price > img{
    width: 100%;
    margin-left: 200px;
    position: absolute;
}

.banner_content .banner_items{
    display: flex;
    gap: 20px;
    margin-top: 10px;
    z-index: 1;
}

.banner_content .banner_items span{
    color: #fff;
    font-size: 20px;
}

.banner_content .banner_pos h2 > span{
    background-color: #feb800;
    border-radius: 20px 0px 20px 0px;
    padding-left: 20px;
    padding-right: 20px;
}

.banner_prices{
    display: flex;
    flex-direction: column-reverse;
    z-index: 1;
}

.banner_price_item{
    display: flex;
    margin-top: 10px;
    border-radius: 7px;
    background-color: #fff;
}

.price_focus{
    background-color: #feb800;
}

.banner_price_item .price_qtd{
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    background-color: #0a8156;
    margin: 5px;
    border-radius: 7px;
    padding: 5px;
}

.banner_price_item .price_value{
    font-size: 40px;
    font-weight: bold;
    color: #353333;
    margin: 5px;
}

.banner_price_item .price_description{
    font-size: 0.8rem;
}

.banner_price_item > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner_price_item .price_value .value_text{
    font-size: 3rem;
}

.prices_info{
    margin-top: 10px;
    z-index: 1;
    border-radius: 5px;
}

.prices_info span {
  color: #c4acac;
  font-weight: bold;
  font-size: 1rem;
}

.form{
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 40%;
    z-index: 1;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
    border-top-color: rgb(206, 212, 218);
    border-right-color: rgb(206, 212, 218);
    border-bottom-color: rgb(206, 212, 218);
    border-left-color: rgb(206, 212, 218);
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control {
    border-color: var(--color-primary3);
}

.form .cta-btn{
    width: 100%;
}

.font-weight-bold {
  font-weight: 700 !important;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

.form-group {
  margin-bottom: 1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 3px dashed var(--red);
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.mec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.mec-badge i {
    font-size: 18px;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== SEARCH SECTION ===== */
.search-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 60px 0;
    color: white;
}

.search-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.search-input,
.search-select {
    width: 50%;
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.search-input::placeholder {
    color: #999;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.categories h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background-color: white;
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.category-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--light-gray);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    display: inline-block;
    background-color: var(--accent-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-category {
    background-color: #D8D8E8;
    color: var(--primary-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-category:hover {
    background-color: var(--secondary-blue);
    color: white;
}

.mec-info {
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.mec-info h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.mec-info p {
    color: var(--dark-gray);
    font-size: 16px;
}

.text-center {
    text-align: center;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 80px 0;
    color: white;
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-blue);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--white);
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact .section-subtitle {
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
}

.contact-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-contact {
    background-color: var(--secondary-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-contact:hover {
    background-color: var(--primary-blue);
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-left: 4px solid var(--yellow);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: white;
    border: 2px solid var(--yellow);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: rgba(11, 139, 163, 0.05);
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== FOOTER ===== */

#footer {
    background: var(--color-primary3);
    color: #fff;
}

#footer .area-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 3rem;
    max-width: 1140px;
}

#footer .item-footer {
    max-width: 100%;
}

#footer a {
    color: #fff;
    font-weight: normal;
}

.footer-title {
    font-size: 1em;
    font-weight: 700;
    color: #fff;
}

#footer p,
#footer label {
    color: #fff;
    font-size: 1rem;
}

.footer-img {
    flex-direction: column;
}

footer {
    background: #5d5d5d;
    margin-top: 20px;
}

footer div {
    justify-content: space-between;
}

.footer-end{
    padding: 20px;
    text-align: center;
}

.emec{
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

.emec .emec-image{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #1888bd;
    border-radius: 10px;
    padding: 10px;
}

.emec .emec-image img{
    width: 120px;
}

.emec .emec-image span{
    color: #1888bd;
    font-weight: bold;
    margin-top: 5px;
}

.emec span{
    color: #1888bd;
    font-weight: bold;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    z-index: 50;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
}

#cookieAcceptBar.cookieAcceptBar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgb(245, 242, 242);
    color: rgb(51, 49, 49);
    padding: 20px 0;
    z-index: 99999;
    text-align: justify;
    padding: 10px 20px;
    font-size: 13px;
}

#cookieAcceptBar.cookieAcceptBar a {
    text-decoration: underline;
}

#cookieAcceptBar button {
    cursor: pointer;
    border: none;
    background-color: rgb(80 121 89);
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 3px;
}

#cookieAcceptBar #cookieAcceptBarRecuse {
    background-color: #f4ac6d;
}

.btn-whatsapp {
    position: fixed;
    z-index: 999;
    left: 10px;
    bottom: 1em;
    padding: 0.5em;
    font-size: 1.8em;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.bg-success {
  background-color: #28a745 !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        margin-left: 0;
        margin-top: 20px;
        gap: var(--spacing-sm);
    }

    .header-content{
        flex-direction: column;
    }

    .header-right{
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }

    .search-box {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    body .top-message{
        padding: 10px;
        height: 100%;
    }

    body .top-message .top-message-section{
        flex-direction: column;
        width: 100%;
    }

    body .top-message .top-message-section button{
        margin-top: 5px;
    }

    .countdown-page{
        margin-top: 5px;
    }

    .top-message .countdown-page .info button {
       margin-top: 10px;
    }

    .countdown-page .info{
        flex-direction: column;
    }

    .countdown-page .uk-countdown-number{
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-image {
        max-width: 100%;
    }

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

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

   .footer-title {
        margin: 1em 0em;
    }

    footer div {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #footer .area-footer {
        flex-direction: column;
    }

    #footer .item-footer {
        margin-top: 20px;
    }

    .hero-text h1,
    .categories h2,
    .benefits h2,
    .contact h2,
    .faq h2,
    .search-section h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .banner {
        padding: 10px;
    }

    .banner > div{
        flex-direction: column;
    }

    .banner_content .banner_price{
        width: 100%;
    }

    .banner_content{
        width: 100%;
    }

    .banner_price > img{
        margin:0;
        bottom: -30px;
    }

    .form{
        width: 100%;
        margin-top: 20px;
    }

    .banner_content .banner_pos h2{
        font-size: 2rem;
    }

    .banner_price_item .price_qtd{
        font-size: 20px;
    }

    .prices_info span {
        color: #463535;
    }

    .search-input, .search-select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 16px;
    }

    .logo i {
        font-size: 22px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .categories,
    .benefits,
    .contact,
    .faq {
        padding: 50px 0;
    }

    .hero-text h1,
    .categories h2,
    .benefits h2,
    .contact h2,
    .faq h2,
    .search-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .categories-grid,
    .benefits-grid,
    .contact-grid {
        gap: 15px;
    }

    .category-card,
    .benefit-card,
    .contact-card {
        padding: 15px;
    }

    .category-image {
        width: 120px;
        height: 120px;
    }

    .benefit-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 15px;
        font-size: 13px;
    }
}
