/*
Theme Name: JULIANA
Theme URI: http://www.exitoquestoes.com.br/
Description: Tema moderno para site EXITO QUESTÕES - Portal de Questões para Concursos (Baseado no tema Marília com Bootstrap 5 e Font Awesome 6)
Author: W3 Designer - Jorge Calçado
Author URI: http://www.exitoquestoes.com.br/
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: juliana
*/

/* ====================================
   RESET E CONFIGURAÇÕES GERAIS
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cabin', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ====================================
   HEADER E NAVEGAÇÃO
   ==================================== */

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: #e30613;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.top-bar .widget-social,
.top-bar .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.top-bar .widget-social a,
.top-bar .social-links a {
    color: #fff;
    font-size: 18px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-bar .widget-social a:hover,
.top-bar .social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.logo-container {
    padding: 15px 0;
}

.logo-container img {
    max-height: 104px;
}


.main-navigation {
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.navbar {
    padding: 0;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #e30613;
    background-color: #f8f9fa;
}

.navbar-nav .nav-item.active .nav-link {
    color: #e30613;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0;
}

.dropdown-item:hover {
    background-color: #e30613;
    color: #fff;
}

/* Mega Menu - Desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block !important;
        margin-top: 0;
    }

    .navbar-nav .dropdown-menu.mega-menu-dropdown {
        min-width: 900px;
        max-width: 1000px;
        padding: 0;
        left: 50%;
        transform: translateX(-50%);
        background: transparent;
        border: none;
        box-shadow: none;
        max-height: 70vh;
        overflow-y: auto;
    }

    .mega-menu-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        background: #e30613;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .mega-menu-column {
        padding: 0 8px;
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    .mega-menu-column:last-child {
        border-right: none;
    }

    .mega-menu-group {
        margin-bottom: 12px;
    }

    .mega-menu-letter {
        font-size: 15px;
        font-weight: 700;
        color: #ffd800;
        margin-bottom: 5px;
        padding-bottom: 3px;
        border-bottom: 1px solid #ffd800;
        text-transform: uppercase;
    }

    .mega-menu-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-menu-items li {
        margin-bottom: 0;
        border-bottom: 1px solid #efefef;
    }

    .mega-menu-items li:last-child {
        border-bottom: none;
    }

    .mega-menu-items a {
        display: block;
        padding: 5px 8px;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        border-radius: 0;
        transition: all 0.3s ease;
        line-height: 1.3;
    }

    .mega-menu-items a:hover {
        background-color: rgba(0,0,0,0.1);
        color: #ffd800;
        transform: translateX(3px);
        padding-left: 12px;
    }

    /* Scrollbar customizada para o mega menu */
    .mega-menu-dropdown::-webkit-scrollbar {
        width: 8px;
    }

    .mega-menu-dropdown::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .mega-menu-dropdown::-webkit-scrollbar-thumb {
        background: #e30613;
        border-radius: 10px;
    }

    .mega-menu-dropdown::-webkit-scrollbar-thumb:hover {
        background: #b3050f;
    }
}

/* Mega Menu - Mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: 70vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid #efefef;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
        color: #333;
        font-weight: 500;
    }

    .navbar-nav .dropdown-menu {
        border: none;
        padding: 0;
        margin: 0;
        background-color: transparent;
        box-shadow: none;
        display: none !important;
        position: static !important;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    .navbar-nav .dropdown-menu.show {
        display: block !important;
        max-height: 2000px !important;
    }

    .navbar-nav .nav-item.dropdown .nav-link {
        position: relative;
        padding-right: 35px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Remove o ::after padrão do Bootstrap */
    .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
        display: none !important;
        content: none !important;
    }

    /* Nossa setinha customizada */
    .navbar-nav .nav-item.dropdown .nav-link::before {
        content: '\f0d7' !important;
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900 !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        transition: transform 0.3s ease !important;
        font-size: 16px !important;
        color: #666 !important;
        display: inline-block !important;
    }

    .navbar-nav .nav-item.dropdown.show .nav-link::before {
        transform: translateY(-50%) rotate(180deg) !important;
        color: #e30613 !important;
    }

    .mega-menu-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 10px;
        max-height: 50vh;
        overflow-y: auto;
        background: #e30613;
        padding: 15px;
        border-radius: 8px;
    }

    .mega-menu-column {
        padding: 0 8px;
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    .mega-menu-column:last-child {
        border-right: none;
    }

    .mega-menu-group {
        margin-bottom: 12px;
    }

    .mega-menu-letter {
        font-size: 14px;
        font-weight: 700;
        color: #ffd800;
        margin-bottom: 5px;
        padding-bottom: 3px;
        border-bottom: 1px solid #ffd800;
        text-transform: uppercase;
    }

    .mega-menu-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-menu-items li {
        margin-bottom: 0;
        border-bottom: 1px solid #efefef;
    }

    .mega-menu-items li:last-child {
        border-bottom: none;
    }

    .mega-menu-items a {
        display: block;
        padding: 5px 8px;
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        border-radius: 0;
        transition: all 0.3s ease;
        line-height: 1.3;
    }

    .mega-menu-items a:hover {
        background-color: rgba(0,0,0,0.1);
        color: #ffd800;
        transform: translateX(3px);
        padding-left: 12px;
    }

    /* Scrollbar mobile */
    .mega-menu-content::-webkit-scrollbar {
        width: 6px;
    }

    .mega-menu-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .mega-menu-content::-webkit-scrollbar-thumb {
        background: #e30613;
        border-radius: 10px;
    }

    .nav-item.dropdown > .nav-link::after {
        display: none;
    }
}

/* Search Form */
.search-form {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 100%;
}

.search-form .input-group {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.search-form input[type="search"] {
    border: 1px solid #e30613;
    border-radius: 8px 0 0 8px;
    padding: 12px 20px;
    flex: 1;
    border-right: 0;
    font-size: 15px;
    height: auto;
    line-height: 1.5;
    background-color: #fff;
    color: #999;
    margin: 0;
}

.search-form input[type="search"]:focus {
    outline: none;
    box-shadow: none;
    border-color: #e30613;
    color: #333;
    border-right: 0;
}

.search-form input[type="search"]::placeholder {
    color: #999;
    opacity: 1;
}

.search-form button.btn,
.search-form button {
    background-color: #e30613;
    border: 1px solid #e30613;
    color: #fff;
    border-radius: 0 8px 8px 0;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 60px;
    border-left: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 18px;
    margin: 0;
    margin-left: -1px;
}

.search-form button:hover,
.search-form button.btn:hover {
    background-color: #c00512;
    border-color: #c00512;
}

.search-form button:focus,
.search-form button.btn:focus {
    outline: none;
    box-shadow: none;
}

.search-form button i {
    margin: 0;
}

/* Botão Aprovados */
.btn-aprovados {
    background-color: #000 !important;
    /* font-family: 'Cabin', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    color: #fff !important;
    border: none !important;
    font-weight: 300 !important;
    font-size: 15px !important;
    padding: 12px 20px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    border-radius: 8px 0px 8px 0px !important;
    border: solid 1px green;
}

.btn-aprovados span{ 
font-weight: 900 !important;
}

.btn-aprovados:hover {
    background-color: #8a1520 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 25, 36, 0.3);
    color: #fff !important;
}

/* ====================================
   HERO SECTION / BANNER
   ==================================== */

/* ====================================
   HERO SECTION / SLIDER
   Z-INDEX Hierarchy:
   - carousel controls: 5 (mais baixo)
   - hero-content: 50
   - btn-primary-custom: 999 !important (SEMPRE por cima)
   ==================================== */

.hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 0;
    position: relative;
    overflow: visible !important;
}

.hero-section .carousel {
    overflow: visible !important;
}

.hero-section .carousel-inner {
    overflow: visible !important;
}

.hero-content {
    position: relative;
    z-index: 50;
    pointer-events: none;
}

.hero-content > * {
    pointer-events: auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-primary-custom {
    background-color: #ffd800;
    color: #333;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    text-align: center;
}

.btn-primary-custom:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 216, 0, 0.4);
    color: #333;
    z-index: 999 !important;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

/* Carousel Controls - OCULTAR setas laterais */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    display: none !important;
}

/* Garantir que o botão fique acima de TUDO */
.hero-section .btn-primary-custom {
    z-index: 999 !important;
    pointer-events: auto !important;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -40px;
    z-index: 5;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: #e30613;
}

/* ====================================
   SEÇÃO DE PRODUTOS
   ==================================== */

.products-section {
    padding: 60px 0;
    background-color: #fff;
}

.products-section .row {
    display: flex;
    flex-wrap: wrap;
}

.products-section .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* Product Card */
.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #e30613;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e30613;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.product-badge.launch {
    background-color: #00a650;
    animation: pulse 2s infinite;
}

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

.product-image {
    position: relative;
    padding: 20px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info .btn-buy {
    margin-top: auto;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 0px;
    min-height: 40px;
    line-height: 1.0;
    text-align: center;
    text-transform: uppercase;
}

.product-title a {
    color: #000 !important;
    text-decoration: none;
}

.product-title a:hover {
    color: #e30613 !important;
}

.product-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.currency {
    font-size: 20px;
    font-weight: 700;
    padding: 25px 0 0 0;
    color: #000;
        border:solid 0px green
}

.amount {
    font-size: 55px;
    font-weight: 900;
    letter-spacing: -5px;
    color: #000;
    border:solid 0px red
}

.decimals {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0 0 0;
    margin: 0 0 0 0px;
    color: #000;
}

/* Preços Promocionais */
.product-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-bottom: 10px;
}

.product-price-old {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    opacity: 0.7;
    margin-bottom: -25px;
    position: relative;
}

.product-price-old::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    height: 2px;
    background-color: #e30613;
    transform: translateY(-50%);
}

.product-price-old .currency {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0 0 0;
    color: #e30613;
}

.product-price-old .amount {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -3px;
    color: #e30613;
}

.product-price-old .decimals {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0 0 0;
    margin: 0;
    color: #e30613;
}

.product-price-promo {
    animation: pulse 2s ease-in-out infinite;
}

.product-price-promo .currency {
    color: #000;
}

.product-price-promo .amount {
    color: #000;
}

.product-price-promo .decimals {
    color: #000;
}

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

.btn-buy {
    background-color: #e30613;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    width: 100%;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background-color: #b3050f;
    color: #ffd800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

/* ====================================
   SEÇÃO DE BANCAS
   ==================================== */

.bancas-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.banca-logo {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banca-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.banca-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* ====================================
   SEÇÃO DE DEPOIMENTOS
   ==================================== */

.testimonials-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.testimonials-section .carousel-inner {
    padding: 40px 0;
}

.testimonial-card {
    background-color: #e30613;
    color: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid #fff;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: #ffc107!important;
    font-size: 16px;
    margin:-15px 0px 0px 0px;
            border:solid 0px green;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-position {
    font-size: 14px;
    font-weight: 700;
    margin:-5px 0px 0px 0px;
    /* margin-bottom: 5px; */
    border:solid 0px green;
}

.testimonial-concurso {
    font-size: 20px;
    font-weight: 700;
    margin: -5px 0px 0px 0px;
    line-height: 1.3;
        border:solid 0px green;
}

.testimonial-position-label {
    font-size: 16px;
    margin:-8px 0px 15px 0px ;
    font-weight: 400;
            border:solid 0px yellow;
}

.testimonial-name {
    font-size: 26px;
    font-weight: 900;
    margin:-5px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-section .carousel-control-prev {
    left: -60px;
}

.testimonials-section .carousel-control-next {
    right: -60px;
}

.testimonials-section .carousel-indicators {
    bottom: -50px;
}

.testimonials-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.5;
    margin: 0 5px;
}

.testimonials-section .carousel-indicators button.active {
    background-color: #e30613;
    opacity: 1;
}

/* ====================================
   SEÇÃO DE GARANTIA
   ==================================== */

.guarantee-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.guarantee-top-image {
    position: relative;
    z-index: 777;
    float: left;
    width: 100%;
    height: 125px;
    margin: 0;
    padding: 0;
    line-height: 0;
	background: url(./assets/imagens/garantia.png) no-repeat top center;
    border:solid 0px yellow
}

.guarantee-top-image img {
    width: 100%;
    height: auto;
    /* display: block;
    border-radius: 20px 20px 0 0; */
}


.guarantee-box {
    float: left;
    width: 100%;
    margin: -65px 0px 0px 0px;
    background-color: #e30613;
    color: #fff;
    padding: 0px 40px 0px 40px;
    border-radius: 35px 0px 35px 0px;
    /* position: relative; */
    overflow: hidden;
}

	@media (max-width: 801px) {
        .guarantee-box {
            padding: 0px 0px 0px 0px;
        }
    }
.guarantee-box .guarantee-title,
.guarantee-box .guarantee-highlight,
.guarantee-box .guarantee-text,
.guarantee-box .guarantee-footer {
    padding: 0 40px;
}

.guarantee-box .guarantee-title {
    padding-top: 60px;
}

.guarantee-box .guarantee-footer {
    padding-bottom: 40px;
}

.guarantee-title {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 20px;
    margin-top: 30px;
    line-height: 1.0;
}

.guarantee-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #fedb00;
    margin-bottom: 20px;
    line-height: 1.5;
}

.guarantee-text {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 20px;
}

.guarantee-footer {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 0;
    margin-top: 10px;
}

.guarantee-banner {
    text-align: right;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    border:solid 0px green;
}

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

/* ====================================
   BANCAS SEPARADAS PAGE
   ==================================== */

.bancas-separadas-page {
    min-height: 60vh;
}

.bancas-separadas-page .page-header {
    margin-bottom: 40px;
}

.bancas-separadas-page .page-title {
    font-size: 36px;
    font-weight: 900;
    color: #e30613;
    margin-bottom: 15px;
}

.bancas-separadas-page .page-description {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.bancas-separadas-page .alert {
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
}

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

.pagination-wrapper .page-numbers {
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
}

.pagination-wrapper .page-numbers li {
    display: inline-block;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: inline-block;
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #e30613;
    color: #e30613;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-wrapper .page-numbers a:hover,
.pagination-wrapper .page-numbers .current {
    background-color: #e30613;
    color: #fff;
}

/* ====================================
   SINGLE PRODUCT PAGE
   ==================================== */

.product-sidebar {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #e30613;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    padding: 8px 0;
    z-index: 1000;
}

.mobile-price .product-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    gap: 3px;
    white-space: nowrap;
    border: solid 0px green;
}

.mobile-price .currency {
    font-size: 14px;
    font-weight: 600;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0;
    color: #ffd800;
}

.mobile-price .amount {
    font-size: 24px;
    letter-spacing: -2px;
    line-height: 1;
    font-weight: 900;
    color: #ffd800;
}

.mobile-price .decimals {
    font-size: 16px;
    font-weight: 700;
    color: #ffd800;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 5px 0;
}

.mobile-bottom-bar .btn-buy {
    font-size: 14px;
    padding: 8px 16px;
    font-weight: 700;
    color: #ffd800;
    white-space: nowrap;
    background-color: transparent;
    border: 1px solid #ffd800;
    transition: all 0.3s ease;
}

.mobile-bottom-bar .btn-buy:hover {
    background-color: #ffd800;
    color: #e30613;
    border-color: #ffd800;
}

/* Adicionar padding ao body para não cobrir conteúdo */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 60px;
    }
}

/* ====================================
   RODAPÉ / FOOTER
   ==================================== */

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section a {
    color: #fff;
}

.footer-section a:hover {
    color: #ffd800;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffd800;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #ffd800;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #25D366;
    font-size: 18px;
}

.footer-section p i.fa-envelope {
    color: #ffd800;
}

.footer-section p i.fa-clock {
    color: #ffd800;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e30613;
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.payment-methods i {
    font-size: 32px;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #ffd800;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.footer-bottom a{ 
    color: #ffd800;
}

/* ====================================
   WHATSAPP FLUTUANTE
   ==================================== */

.whatsapp-float {
    position: fixed;
    bottom: 65px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #25d366;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}


@media (max-width: 801px) {
    .whatsapp-float {
        position: fixed;
        bottom: 65px;
        right: 5px;
        z-index: 1000;
    }

    .whatsapp-float a {
        width: 30px;
        height: 30px;
        font-size: 20px;
        transition: all 0.5s ease;
    }

    .whatsapp-float a:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
}



/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    display: none;
    width: 45px;
    height: 45px;
    background-color: #e30613;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 42px;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: #b3050f;
    transform: translateY(-3px);
}

    @media (max-width: 801px) {
        .scroll-to-top {
            bottom: 100px;
            right: 5px;
            width: 30px;
            height: 30px;
            line-height: 30px;
            font-size: 16px;
            transition: all 0.5s ease;
        }

        .scroll-to-top:hover {
            background-color: #b3050f;
            transform: translateY(-3px);
        }
    }

/* ====================================
   PAGINAÇÃO
   ==================================== */

.pagination {
    margin-top: 40px;
    justify-content: center;
}

.page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background-color: #e30613;
    color: #fff;
    border-color: #e30613;
}

/* ====================================
   MODAL DE AMOSTRA GRÁTIS
   ==================================== */

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background-color: #e30613;
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: none;
    padding: 20px 30px;
}

/* ====================================
   RESPONSIVIDADE
   ==================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

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

    .btn-primary-custom {
        font-size: 14px;
        padding: 12px 30px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .section-subtitle {
        margin-bottom: 0;
        line-height: 1.2;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .search-form {
        width: 100%;
    }

    .search-form .input-group {
        width: 100%;
        display: flex;
    }

    .search-form input[type="search"] {
        font-size: 13px;
        flex: 1;
        border: 1px solid #e30613;
        border-right: 0;
        margin: 0;
    }

    .search-form button.btn,
    .search-form button {
        padding: 10px 15px;
        min-width: 50px;
        border: 1px solid #e30613;
        border-left: 0;
        margin: 0;
        margin-left: -1px;
        flex-shrink: 0;
    }

    .logo-container {
        padding-left: 10px;
    }

    .logo-container img {
        max-height: 72px;
    }

    .top-bar .widget-social,
    .top-bar .social-links {
        gap: 10px;
    }

    .top-bar .widget-social a,
    .top-bar .social-links a {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .cta-title {
        font-size: 24px;
    }

    .guarantee-title {
        font-size: 22px;
    }

    .testimonials-section .carousel-control-prev {
        left: 10px;
    }

    .testimonials-section .carousel-control-next {
        right: 10px;
    }

    /* Mobile: ajustes de espaçamento */
    .testimonials-section .section-title {
        margin-bottom: 0;
    }

    .testimonials-section .section-subtitle {
        margin-bottom: 0;
        line-height: 1.2;
    }

    .testimonials-section .carousel-inner {
        padding: 0;
    }

    /* Mobile: esconder 2º e 3º testemunhos */
    .testimonials-section .col-lg-4:nth-child(2),
    .testimonials-section .col-lg-4:nth-child(3) {
        display: none;
    }

    /* Mobile: card ocupa largura total */
    .testimonials-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .search-form input[type="search"] {
        padding: 8px 15px;
        font-size: 12px;
        flex: 1;
        border: 1px solid #e30613;
        border-right: 0;
        margin: 0;
    }

    .search-form button.btn,
    .search-form button {
        padding: 8px 12px;
        min-width: 45px;
        border: 1px solid #e30613;
        border-left: 0;
        margin: 0;
        margin-left: -1px;
        flex-shrink: 0;
    }
}

/* ====================================
   AJUSTES ADICIONAIS
   ==================================== */

/* Garantir que os widgets do topo apareçam corretamente */
#redes-topo,
.widget-area {
    display: block;
}

/* Estilos para ícones do Font Awesome */
.fab, .fas, .far {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Fix para input-group do Bootstrap 5 */
.input-group > .form-control,
.input-group > input {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group > .btn {
    position: relative;
    z-index: 2;
}

/* Melhorias na logo */
.logo-container a {
    display: inline-block;
}

.logo-container img {
    display: block;
    width: auto;
}

/* Ajustes finos para a busca no mobile */
@media (max-width: 991px) {
    .search-form {
        width: 100%;
    }

    .search-form .input-group {
        width: 100%;
        display: flex;
    }

    .search-form input[type="search"] {
        padding: 9px 15px;
        flex: 1;
        border: 1px solid #e30613;
        border-right: 0;
        margin: 0;
    }

    .search-form button.btn,
    .search-form button {
        padding: 9px 15px;
        border: 1px solid #e30613;
        border-left: 0;
        margin: 0;
        margin-left: -1px;
        flex-shrink: 0;
    }
}

/**INTERNAS*/
    /*sigle*/
    .entry-content {
        font-family: arial, serif;
    }

    .entry-header h1 {
        font-size: 36px;
        letter-spacing: -1px;
        line-height: 36px;
    }

    @media (max-width: 801px) {
        .entry-header h1 {
            font-size: 24px;
            letter-spacing: -1px;
            line-height: 24px;
        }

    }

    .related-products {
        margin: 70px 0px 0px 0px;
        padding: 60px 0px 50px 0px;
        border-top: solid 1px #d4d4d4;
    }

/*condicoes gerais para as imagens*/
		img.alignleft, div.alignleft {
			float:left;
			margin:0 10px 0 0;
		}

		img.alignright, div.alignright {
			float:right;
			margin:0 0 0 10px;
		}

		img.aligncentered, img.aligncenter {
			text-align:center;
			margin:0 auto 10px auto;
		}