/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'HighSchoolClub';
    src: url('fonts/Highschoolclub.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Estilos gerais do body */
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: #f7f7f7;
    color: #333;
    padding-top: 117px;
}

/* Título especial */
#titulo2 {
    font-family: 'HighSchoolClub', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e75e64;
    padding: 8px 0;
    font-size: 1.0rem;
    color: white;
    text-align: center;
    z-index: 1060;
    height: 32px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-weight: bold;
}

/* Header principal */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #fff8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 85px;
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 1050;
}

.logo img {
    max-height: 65px;
    transition: all 0.3s ease;
}

/* Busca centralizada */
.search-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    z-index: 100;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

/* Campo de busca */
.form-control {
    border-radius: 30px;
    padding: 15px 58px 15px 24px;
    border: 1px solid #e75e64;
    font-size: 18px;
    width: 100%;
    box-shadow: 0 3px 7px rgba(0,0,0,0.1);
    outline: none;
    transition: all 0.3s ease;
    height: 55px;
}

.form-control:focus {
    border-color: #e75e64;
    box-shadow: 0 0 8px rgba(231,94,100,0.4);
}

.icone-busca {
    position: absolute;
    right: 25px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #e75e64;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-control:focus + .icone-busca {
    color: #d3545a;
    transform: translateY(-50%) scale(1.15);
}

/* Área do usuário */
.user-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 20px;
}

.user-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #555;
}

.user-text .welcome {
    font-weight: 500;
    white-space: nowrap;
}

.user-text .auth-links {
    display: flex;
    gap: 5px;
    white-space: nowrap;
}

.user-text .auth-links a {
    color: #d76aa8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.user-text .auth-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #d76aa8;
    transition: width 0.3s ease;
}

.user-text .auth-links a:hover:after {
    width: 100%;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-actions i {
    color: #d76aa8;
    font-size: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-actions i:hover {
    color: #e75e64;
    transform: translateY(-2px);
}

.user-icon,
.cart-icon {
    font-size: 2rem;
    color: #d76aa8;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.user-icon:hover,
.cart-icon:hover {
    color: #e75e64;
    transform: translateY(-2px);
}

 /* Estilos adicionais para o menu */
       .menu-nav {
    background:  #ef74ab;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}
        
        .menu-desktop {
            display: none;
        }
        
        @media (min-width: 992px) {
            .menu-desktop {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
                padding: 0;
                margin: 0;
                list-style: none;
            }
            
          
        }
        
        .menu-item {
            position: relative;
        }
        
        .menu-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            color: #000000;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: background-color 0.2s;
        }
        
        .menu-link:hover {
            background-color:  #c05b9dd5;
            color: #000000;
        }
        
        .dropdown-menu-custom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #c05b9d;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border-radius: 0 0 8px 8px;
            min-width: 280px;
            padding: 8px 0;
            border-top: 2px solid #000000;
            z-index: 1001;
        }
        
        .menu-item:hover .dropdown-menu-custom {
            background-color:   #ef74ab;
            color: #000000;
            display: block;
        }
        
        .dropdown-item-custom {
            padding: 10px 16px;
            color: #000000;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: background-color 0.2s;
        }
        
        .dropdown-item-custom:hover {
            background-color: #c05b9d;
            color: #000000;
        }
        
        /* Menu Mobile */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background:  #ffffff;;
            box-shadow: 2px 0 8px rgba(0,0,0,0.2);
            z-index: 2000;
            transition: left 0.3s ease;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
        }
        
        .mobile-overlay.active {
            display: block;
        }
        
        .mobile-menu-header {
            padding: 16px;
            border-bottom: 1px solid #000000;
            background: linear-gradient(to right,  #ef74ab,  #c05b9d);
            color: rgb(0, 0, 0);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-menu-item {
            border-bottom: 1px solid #000000;
        }
        
        .mobile-menu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            color: #000000;
            text-decoration: none;
            font-weight: 500;
        }
        
        .mobile-submenu {
            display: none;
            background: rgba(239, 116, 171, 0.733);
            border-bottom: 1px solid #000000;
        }
        
        .mobile-submenu.active {
            display: block;
        }
        
        .mobile-submenu-item {
            padding: 10px 16px 10px 56px;
            color: #000000;
            text-decoration: none;
            display: block;
            font-size: 14px;
        }
        
        .mobile-submenu-item:hover {
            background: #c05b9dcf;
        }
        .chevron {
            transition: transform 0.2s;
        }
        
        .chevron.rotated {
            transform: rotate(90deg);
        }
        
        .menu-mobile-btn {
    color: black !important;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

br {
    margin-top: 20px;
    display: block;
    content: "";
}

/* Mobile Pequeno (até 576px) */
@media (max-width: 576px) {
    body {
        padding-top: 175px;
    }
    
    .top-bar {
        font-size: 0.80rem;
        height: 28px;
        padding: 6px 0;
        gap: 1px;
    }
    
    .main-header {
        top: 28px;
        padding: 5px 10px;
        height: auto;
        min-height: 143px;
        flex-wrap: wrap;
        display: flex;
        align-items: center;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .logo img {
        max-height: 45px;
        width: auto;
    }
    
    .user-area {
        order: 2;
        margin-left: auto;
        gap: 10px;
        padding-right: 0;
        flex: 0 0 auto;
    }
    
    .user-text {
        display: none;
    }
    
    .user-actions {
        gap: 10px;
        display: flex;
    }
    
    .user-icon, 
    .cart-icon {
        font-size: 1.5rem;
    }
    
    .search-box {
        order: 3;
        flex: 1 0 100%;
        margin-top: 55px;
        max-width: 100%;
        padding: 0;
        width: 100%;
    }
    
    .search-box .input-wrapper {
        width: 100%;
    }
    
    .form-control {
        padding: 10px 40px 10px 15px;
        font-size: 14px;
        height: 35px;
        width: 100%;
    }
    
    .icone-busca {
        right: 12px;
        font-size: 20px;
    }
}

/* Mobile (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    body {
        padding-top: 150px;
    }
    
    .top-bar {
        font-size: 0.75rem;
        height: 30px;
    }
    
    .main-header {
        top: 30px;
        padding: 10px 20px;
        height: auto;
        min-height: 120px;
        flex-wrap: wrap;
        display: flex;
        align-items: center;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .logo img {
        max-height: 50px;
        width: auto;
    }
    
    .user-area {
        order: 2;
        margin-left: auto;
        gap: 12px;
        flex: 0 0 auto;
    }
    
    .user-text {
        display: none;
    }
    
    .user-icon,
    .cart-icon {
        font-size: 1.8rem;
    }
    
    .search-box {
        order: 3;
        flex: 1 0 100%;
        margin-top: 15px;
        max-width: 100%;
        padding: 0;
        width: 100%;
    }
    
    .search-box .input-wrapper {
        width: 100%;
    }
    
    .form-control {
        padding: 10px 40px 10px 14px;
        font-size: 16px;
        height: 40px;
        width: 100%;
    }
    
    .icone-busca {
        right: 10px;
        font-size: 20px;
    }
}

/* Tablets (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    body {
        padding-top: 130px;
    }
    
    .main-header {
        top: 32px;
        height: 105px;
        padding: 10px 20px;
    }
    
    .logo img {
        max-height: 55px;
    }
    
    .user-area {
        gap: 15px;
    }
    
    .user-text {
        font-size: 0.8rem;
    }
    
    .user-icon,
    .cart-icon {
        font-size: 1.8rem;
    }
    
    .search-box {
        max-width: 400px;
    }
    
    .form-control {
        padding: 12px 40px 12px 10px;
        font-size: 16px;
        height: 48px;
    }
    
    .icone-busca {
        right: 20px;
        font-size: 20px;
    }
    
}

@media (min-width: 993px) {
    .menu-nav {
        position: sticky;
        top: 117px;
        z-index: 1100;
    }
}
/* Estados de acessibilidade */
.nav-link:focus,
.form-control:focus,
.user-icon:focus,
.cart-icon:focus {
    outline: 2px solid #e75e64;
    outline-offset: 2px;
}
/* ===== MENU RESPONSIVO FIXO ===== */

/* Menu fixo para tablets */
@media (max-width: 992px) {
    .menu-nav {
        position: fixed;
        top: 117px; /* Altura do header + top-bar */
        left: 0;
        width: 100%;
        z-index: 1040;
        background: #ef74ab;
    }
    
    /* Ajuste do body para compensar o menu fixo */
    body {
        padding-top: 162px; /* Header + top-bar + menu */
    }
}

/* Menu fixo para mobile */
@media (max-width: 768px) {
    .menu-nav {
        top: 115px; /* Altura do header + top-bar no mobile */
    }
    
    /* Ajustes específicos para mobile pequeno */
    @media (max-width: 576px) {
        .menu-nav {
            top: 170px; /* Header maior no mobile pequeno */
        }
        
        body {
            padding-top: 220px; /* Compensação para mobile pequeno */
        }
    }
}

/* Para tablets (769px - 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .menu-nav {
        top: 130px; /* Altura específica para tablets */
    }
    
    body {
        padding-top: 175px; /* Compensação para tablets */
    }
}

/* Para desktop, mantém o comportamento original */
@media (min-width: 993px) {
    .menu-nav {
        position: sticky;
        top: 117px;
        z-index: 1100;
    }
}

/*form*/
/* Estados de erro/sucesso para formulários */
.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.success {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}


/* Carrossel */
.banner-img {
    max-height: 550px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(61, 61, 61, 0.29);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.highlight-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.highlight-box img {
    max-height: 100px;
}

p.mb-0 a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

/* Categorias */
.category-item {
    position: relative;
}

.category-item img {
    height: 240px;
    width: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-bottom: -2px;
}

.category-item img:hover {
    transform: scale(1.05);
}

.category-item h5 {
    margin-top: 0;
    color: #d76aa8;
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 700;
}

.category-name a {
    color: #d76aa8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    display: inline-block;
}

.category-name a:hover {
    color: #e75e64;
}

br {
    margin-top: 20px;
    display: block;
    content: "";
}

/*3 card*/
.highlight-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.highlight-box img {
    max-height: 100px;
}

p.mb-0 a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

/* Categorias */
.category-item {
    position: relative;
}

.category-item img {
    height: 240px;
    width: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-bottom: -2px;
}

.category-item img:hover {
    transform: scale(1.05);
}

.category-item h5 {
    margin-top: 0;
    color: #d76aa8;
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 700;
}

.category-name a {
    color: #d76aa8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    display: inline-block;
}

.category-name a:hover {
    color: #e75e64;
}
/* Marcas */
.brands-products {
    padding: 0.9rem 0 0.3rem 0 !important; 
    margin-bottom: 0 !important;
}

.brands-products h2 {
    margin-bottom: 0.3rem !important; 
}

.brand-logo {
    max-height: 80px;
    transition: transform 0.3s ease;
    margin-bottom: 0.2rem;
}

.brand-logo:hover {
    transform: scale(1.1);
}

/*promoção*/
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2px;
}

.discount-badge i {
    font-size: 12px;
}
       /*produto*/       
       
 .btn-link {
            width: 100%;
            text-decoration: none;
        }

        .spacing-info {
            background-color: #f0f7ff;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #4a90e2;
        }

        .produto-parcela {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* Estilos adicionais para melhorar a aparência */
        .filter-section {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .filter-title {
            color: #333;
            border-bottom: 2px solid #6e8fcb;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-group h6 {
            color: #555;
            margin-bottom: 15px;
        }

         /* Estilos dos produtos similares */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 280px));
    gap: 35px;
    justify-content: center; /* Centraliza as colunas */
    max-width: 1200px;
    margin: 30px auto;
}

        .product-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .product-image {
            height: 250px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9f9f9;
        }

        .product-image img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
            padding-bottom: 60px;
        }

        .product-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 8px;
            height: 40px;
            overflow: hidden;
            text-align: center;
            width: 100%;
        }

        .product-price {
            font-weight: 600;
            color: #e75e64;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .product-actions {
            display: flex;
            justify-content: center;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 0 15px 15px 15px;
            box-sizing: border-box;
        }

        .btn-add-car {
            background-color: #6e8fcb;
            color: #ffffff;
            font-weight: 600;
            text-decoration: none;
            width: 100%;
            border: none;
            padding: 12px;
            border-radius: 10px;
            transition: background 0.3s;
            cursor: pointer;
            display: block;
            text-align: center;
        }

        .btn-add-car:hover {
            background-color: #5a7bb8;
            color: #ffffff;
        }

        .produto-parcela {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

  /*newsletter*/      
        /* === NEWSLETTER SECTION === */

.newsletter {
  overflow: hidden;
  position: relative;
}

.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.newsletter .container {
  position: relative;
  z-index: 2;
}

.newsletter h2 {
  color: rgb(0, 0, 0);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  font-weight: 600;
}

/* === INPUT === */

.input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 500px;
}

.form-control {
  border-radius: 30px;
  padding: 12px 50px 12px 20px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #e75e64;
  box-shadow: 0 0 8px rgba(231, 94, 100, 0.4);
}

/* === SETA === */
/* Botão de envio da newsletter */
.seta {
  background: transparent;
  border: none;
  outline: none;
  color: #ed5d67;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-60%); 
  /* Ou use: top: 40%; para ajustar diretamente */
}

/* Remove outline quando clicado */
.seta:focus {
  outline: none;
  box-shadow: none;
}

/* Remove outline quando ativo */
.seta:active {
  outline: none;
}

/* Efeito hover */
.seta:hover {
  color: #d62635;
}

/* Estado desabilitado */
.seta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Wrapper do input com posição relativa */
.input-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Input da newsletter */
.input-wrapper .form-control {
  padding-right: 50px;
  border: 2px solid #ed5d67;
  border-radius: 25px;
  padding: 12px 20px;
}

.input-wrapper .form-control:focus {
  border-color: #d94450;
  box-shadow: 0 0 0 0.2rem rgba(237, 93, 103, 0.25);
  outline: none;
}

/* Remove aparência de botão no Firefox */
.seta::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Para navegadores WebKit */
.seta:focus-visible {
  outline: none;
}


/* === MENSAGEM === */

.mensagem-sucesso {
  display: none;
  color: #ed5d67; 
  font-weight: 600;
  background-color: #ffaaaf;
  border: 1px solid #e54751; 
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 15px;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*instagram*/
        .instagram {
            padding: 4rem 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        
        .instagram-header {
            margin-bottom: 2.5rem;
        }
        
        .instagram-header h3 {
            font-weight: 600;
            color: #333;
            letter-spacing: 0.5px;
        }
        
        .instagram-header img {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }
        
        .instagram-posts {
            padding: 0 1rem;
        }
        
        .post-container {
            padding: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .instagram-post {
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.post-container:hover .instagram-post {
    transform: scale(1.05);
}
        
        .post-icons {
            color: white;
            font-size: 1.8rem;
        }
        
        .instagram-follow {
            text-align: center;
            margin-top: 2.5rem;
        }
        
        .btn-instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
            transition: all 0.3s ease;
        }
        
        .btn-instagram:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
            color: white;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: linear-gradient(to right, #833ab4, #fd1d1d);
            bottom: -10px;
            left: 20%;
            border-radius: 3px;
        }
        
        /* Destaques */
        .highlight-box {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .highlight-box:hover {
            transform: translateY(-5px);
        }

        .highlight-box img {
            max-height: 100px;
        }

        /* Categorias */
.category-item img {
            height: 200px;
            width: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .category-item img:hover {
            transform: scale(1.05);
        }

        .category-item h5 {
            margin-top: 10px;
            color: #d76aa8;
        }

        /* Marcas */
        .brand-logo {
            max-height: 400px;
            transition: transform 0.3s ease;
        }

        .brand-logo:hover {
            transform: scale(1.1);
        }

      /* Container dos produtos */
      .product {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 250px;
    margin: 0 auto;
}

/* Efeito hover */
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Imagens dos produtos */
.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 0;
}

/* Títulos */
.product h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    min-height: 40px;
    margin-bottom: 8px;
}

/* Preços */
.product .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #d30000;
    margin: 5px 0;
}

/* Botão */
.product {
    border-radius: 20px;
    font-weight: 600;
    padding: 8px 16px;
    transition: background 0.3s ease;
    margin-top: 8px;
}

.product:hover {
    background: #ffca2c;
}

/* Texto promocional (ex: Pix) */
.product p:not(.price) {
    font-size: 0.85rem;
    color: #a016a0;
    margin-bottom: 3px;
}

/* Reduzindo ainda mais o espaçamento entre os cards */
.row {
    --bs-gutter-x: 0.3rem; /* reduzido de 0.5rem para 0.3rem */
    --bs-gutter-y: 0.3rem; /* reduzido de 0.5rem para 0.3rem */
}
/*PRODUTO INDIVIDUAL*/
  /* Novos estilos para o seletor de cores */
        .cores {
            margin: 15px 0;
        }
        
        .cores-titulo {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .cores-opcoes {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .cor-opcao {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: transform 0.2s, border-color 0.2s;
            position: relative;
        }
        
        .cor-opcao.selecionada {
            border-color: #6c5ce7;
            transform: scale(1.1);
        }
        
        .cor-opcao:hover {
            transform: scale(1.05);
        }
        
        .cor-opcao::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 1px solid #ddd;
            pointer-events: none;
        }
        
        .cor-nome {
            font-size: 12px;
            margin-top: 5px;
            text-align: center;
            color: #666;
        }
        
        .cor-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-right: 15px;
        }
        
        /* Ajustes para o layout dos controles */
        .controles-superiores {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .quantidade-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .quantidade-label {
            font-weight: 600;
            color: #333;
        }
 /* Estilos da página de produto */
        .produto-container {
            max-width: 1200px;
            margin: 40px auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        
        .produto-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
      .galeria {
    flex: 1;
    display: flex;
    gap: 10px;
    min-width: 300px;
    align-items: flex-start;
}

/* MINIATURAS */
.miniaturas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.miniatura {
    width: 80px;
    height: 80px;
    object-fit: cover; /* mantém proporção, mas corta o excesso */
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: #f5f5f5; /* evita buracos se a imagem for menor */
}

.miniatura:hover,
.miniatura.ativa {
    border-color: #6e8fcb;
}

/* IMAGEM PRINCIPAL */
.imagem-principal {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5; /* fundo padrão pra harmonizar */
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    height: 500px; /* tamanho fixo pra todas ficarem padronizadas */
}

.imagem-principal img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mostra a imagem inteira sem cortar */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.imagem-principal img:hover {
    transform: scale(1.02);
}

        .info-produto {
            flex: 1;
            min-width: 300px;
        }
     .titulo-indiv {
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

        .titulo {
            font-size: 28px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .estrelas {
            color: #FFD700;
            margin-bottom: 10px;
        }
        
        .precos {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .valor-antigo {
            text-decoration: line-through;
            color: #999;
            font-size: 18px;
        }
        
        .valor-atual {
            font-size: 24px;
            font-weight: bold;
            color: #e74c3c;
        }
        
        .desconto {
            background-color: #e74c3c;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .controles {
            margin: 25px 0;
        }
        
        .quantidade {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .quantidade button {
            width: 36px;
            height: 36px;
            background-color: #f1f1f1;
            border: 1px solid #ddd;
            font-size: 18px;
            cursor: pointer;
            border-radius: 4px;
        }
        
        .quantidade input {
            width: 60px;
            height: 36px;
            text-align: center;
            border: 1px solid #ddd;
            margin: 0 5px;
            border-radius: 4px;
        }
        
        .btn-carrinho {
            background-color:  #6e8fcb;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 18px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
        }
        
        .btn-carrinho:hover {
            background-color:  #6e8fcbe1;
        }
        
        .entrega {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
            color: #28a745;
        }
        
        .descricao {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        
        .descricao h4 {
            margin-bottom: 15px;
            color: #000000;
        }
        
        .descricao p {
            font-size: 18px;
            color: #000000;
        }
li {
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
}
/*instagram*/
         .instagram {
            padding: 4rem 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        
        .instagram-header {
            margin-bottom: 2.5rem;
        }
        
        .instagram-header h3 {
            font-weight: 600;
            color: #333;
            letter-spacing: 0.5px;
        }
        
        .instagram-header img {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }
        
        .instagram-posts {
            padding: 0 1rem;
        }
        
        .instagram-post {
            transition: transform 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            width: 100%;
            height: 480px;
            object-fit: cover;
        }
        
        .post-icons {
            color: white;
            font-size: 1.8rem;
        }
        
        .instagram-follow {
            text-align: center;
            margin-top: 2.5rem;
        }
        
        .btn-instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
            transition: all 0.3s ease;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: linear-gradient(to right, #833ab4, #fd1d1d);
            bottom: -10px;
            left: 20%;
            border-radius: 3px;
        }
        
        /* Rodapé */
      .tituloroda {
    color: #ffffff; 
    text-decoration: underline;
}
#Institucional{
color: #ffffff;
}
        .footer {
            background-color: #d76aa8;
            color: white;
        }

        .footer h4 {
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: #f4c44e;
        }

        .social-icons a {
            display: inline-block;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            color: #f4c44e;
        }
         .final-footer {
            background-color: #ffffff;
            padding: 1.5rem 0;
            text-align: center;
        }
        
        .rodape-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo-rodape {
            width: 70px;
            height: auto;
            margin-bottom: 0.5rem;
        }
        
        .texto-rodape {
            color: rgb(0, 0, 0);
            font-size: 1rem;
            margin: 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }
.titulo-seguranca {
    margin-top: 5px !important;
    margin-bottom: 0px !important;
    padding: 0 !important;
}

.site-seguro {
    margin-top: 0px !important;
    padding: 0 !important;
}

.site-seguro-img {
    display: block;
    max-width: 240px; 
    width: 100%;
    margin: 0 auto;
    margin-top: 2px !important;
    opacity: 0.9;
    transition: 0.3s ease;
}
/* cards atendimento */
.category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  border: none;
  color: white;
}
.category-card .card-body {
  padding: 30px 20px;
}
.category-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.category-card-title {
  font-weight: 500;
  font-size: 1.25rem;
}

/* Efeito hover comum */
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.atend{
    color: #333;
        text-decoration: none;
}
/* Cores individuais para cada card */
.card-c1 {
      background-color: #fbcf78;  color: #333;
}
.card-c2 {
      background-color: #c05b9d;   color: #333;

}
.card-c3 {
      background-color: #6e8fcb;   color: #333;
}

.card-c4 {
      background-color: #ed5d67;   color: #333;
}
.card-c5 {
      background-color:  #6e8fcb;  color: #333;
}
.card-c6 {
      background-color: #ed5d67; color: #444;
}
.card-c7 {
      background-color: #fbcf78; color: #333;
}
.card-c8 {
      background-color: #ef74ab;   color: #333;
}

/* Estilo base do accordion */
.faq-section {
  width: 100%;
  max-width: 800px; 
}

.faq-section .accordion-item {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-section .accordion-button {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  background-color: inherit;
  transition: background-color 0.3s ease;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.faq-section .accordion-body {
  background-color: #fff;
  color: #444;
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Cores únicas por item */
.accordion-c1 .accordion-button { background-color: #fbcf78; color: #333;  }
.accordion-c2 .accordion-button { background-color: #c05b9d; color: #333;}
.accordion-c3 .accordion-button { background-color:  #ef74ab;  color: #333; }
.accordion-c4 .accordion-button { background-color:#ed5d67;   color: #333; }
.accordion-c5 .accordion-button { background-color:  #6e8fcb;color: #333;}
.accordion-c6 .accordion-button { background-color:  #ffd180; color: #333; }
.accordion-c7 .accordion-button { background-color:  #ed5d67; ; color: #333; }



/* Card de blog */
/* Estilo para o Banner com Vídeo */

.banner-containers{
    position: relative;
    width: 100%;
    height: 80vh; 
    overflow: hidden;
    margin: 0; 
    padding: 0; 
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo cobrir sem distorcer */
}
.product-date{
      font-style: italic;
}
     h1 {
    font-family: 'HighSchoolClub', sans-serif;
    font-size: 4.5rem;
    letter-spacing: 2px;
    text-align: center;
    color: #333;
    margin-bottom: 2px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
        .tagline {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .intro {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .intro p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

          .hero-section {
            padding: 3rem 0;
        }
 
        .botao {
            display: inline-block;
            background-color: white;
            color: #1c8ace;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .botao:hover {
            background-color: #e7f0ff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
/*blog materias*/
.materia-container {
    max-width: 900px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 40px 35px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.materia-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===========================
   IMAGEM PRINCIPAL
=========================== */
.materia-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s;
}

.materia-image img:hover {
    transform: scale(1.05);
}

/* ===========================
   TÍTULO E DATA
=========================== */
.materia-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #c05b9d;
    margin-top: 25px;
    margin-bottom: 8px;
    text-align: center;
}

.materia-date {
    font-size: 0.95rem;
    color: #aaa;
    text-align: center;
    margin-bottom: 30px;
}

/* ===========================
   CONTEÚDO
=========================== */
.materia-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

.materia-content p {
    margin-bottom: 20px;
}
 .btn-add-cart {
            background-color: #c05b9d;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 8px 25px;
            font-weight: 700;
            transition: background-color 0.2s;
        }
        
        .btn-add-cart:hover {
            background-color: #c14495;
            color: white;
        }
/* ===========================
   SUBTÍTULOS
=========================== */
.materia-content h2 {
    font-size: 1.6rem;
    color:  #c05b9d;
    margin: 25px 0 15px 0;
    border-left: 5px solid  #c05b9d;
    padding-left: 12px;
}

/* ===========================
   IMAGENS INTERNAS
=========================== */
.materia-content img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.materia-content img:hover {
    transform: scale(1.03);
}

/* ===========================
   DESTAQUES E CITAS
=========================== */
.materia-content blockquote {
    background-color: #f3e5f5;
    border-left: 5px solid  #c05b9d;
    padding: 15px 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
    border-radius: 10px;
}

/* ===========================
   BOTÃO VOLTAR
=========================== */
.btn-back-blog {
    display: block;
    width: max-content;
    margin: 35px auto 0 auto;
    padding: 14px 35px;
    border-radius: 30px;
    background-color:  #c05b9d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-back-blog:hover {
    background-color:  #c14495;
    transform: translateY(-2px);
}

       .blog-product-section {
    margin: 40px 0;
    padding: 50px 0; /* mais respiro */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.blog-product-image {
    text-align: center;
    margin-bottom: 40px; /* separa bem da parte de texto */
}

@media (min-width: 768px) {
    .blog-product-image {
        margin-bottom: 0; /* remove o espaço quando estiver lado a lado no desktop */
        padding-right: 30px; /* afasta um pouco da coluna de texto */
    }
}

.blog-product-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Card com conteúdo textual */
.blog-product-card {
    margin-top: 20px;
}

.blog-product-title {
    font-family: Montserrat, sans-serif;
    color: #c05b9d;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c05b9d;
    margin-bottom: 25px;
}

.blog-btn-buy {
    background-color: #c05b9d;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    width: 100%;
}

.blog-btn-buy:hover {
    background-color: #c14495;
    color: white;
    transform: translateY(-2px);
}

        /*cadastro*/
         .account-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 90vh;
            padding: 20px;
        }

        .account-box {
            background: #fff;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 350px;
            text-align: center;
        }

        .account-form h2 {
            color: #d76aa8;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .account-form input {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border-radius: 25px;
            border: 1px solid #ddd;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s;
        }

        .account-form input:focus {
            border-color: #d76aa8;
            box-shadow: 0 0 8px rgba(215,106,168,0.3);
        }

        .btn-account {
            width: 100%;
            padding: 12px;
            background: #d76aa8;
            border: none;
            border-radius: 25px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-account:hover {
            background: #e75e64;
            transform: translateY(-2px);
        }

        .account-form p {
            margin-top: 15px;
            font-size: 0.85rem;
        }

        .account-form p a {
            color: #d76aa8;
            font-weight: 600;
            text-decoration: none;
        }

        .account-form p a:hover {
            color: #e75e64;
            text-decoration: underline;
        }
        /* login */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background: #f7f7f7;
}

.login-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 350px;
    text-align: center;
}

.login-form h2 {
    color: #d76aa8;
    margin-bottom: 25px;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.login-form input:focus {
    border-color: #d76aa8;
    box-shadow: 0 0 8px rgba(215,106,168,0.3);
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: #d76aa8;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #e75e64;
}

.login-form p {
    margin-top: 15px;
    font-size: 0.85rem;
}

.login-form p a {
    color: #d76aa8;
    font-weight: 600;
    text-decoration: none;
}

.login-form p a:hover {
    color: #e75e64;
}
/* Container geral das páginas de boas-vindas */
.welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background: #f7f7f7;
    font-family: 'Montserrat', sans-serif;
}

/* Caixa central */
.welcome-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 500px;
}

/* Título principal */
.welcome-box h1 {
    color: #d76aa8;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Texto explicativo */
.welcome-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Botão de ação */
.btn-welcome {
    padding: 12px 30px;
    background: #d76aa8;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-welcome:hover {
    background: #e75e64;
}
/* Página de agradecimento após cadastro */

.thank-you-container {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 500px;
}

.thank-you-container h1 {
    color: #d76aa8;
    font-size: 2rem;
    margin-bottom: 20px;
}

.thank-you-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.btn-thank-you {
    padding: 12px 30px;
    background-color: #d76aa8;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-thank-you:hover {
    background-color: #e75e64;
}
/* Página de boas-vindas após login */
.welcome-back-container {
    background-color: #fff;
    padding: 100px 150px; 
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25); 
    text-align: center;
    max-width: 800px; 
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    overflow: hidden; 
}

.welcome-back-container h1 {
    color: #d76aa8;
    font-size: 3rem; 
    margin-bottom: 30px;
}

.welcome-back-container p {
    font-size: 1.2rem; 
    color: #555;
    margin-bottom: 40px;
}

.btn-welcome-back {
    padding: 15px 45px; 
    background-color: #d76aa8;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-welcome-back:hover {
    background-color: #e75e64;
}

/* CARRINHO */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.cart-table th, .cart-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.cart-table input[type="number"] {
  width: 60px;
  padding: 5px;
  text-align: center;
}

.cart-total-label {
  text-align: right;
  font-weight: bold;
}

.cart-total-value {
  font-weight: bold;
  font-size: 18px;
  color: #0077ff;
}

.btn-remove {
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-remove:hover {
  background: #cc2e2e;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.btn-nav {
    background-color: #ed5d67; 
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
    margin: 10px 5px;
}

.btn-nav:hover {
    background-color: #ed5d66d0; 
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn-nav:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/*politica de entrega*/
  .politica-icon {
            color: #e91e63;
            font-size: 3rem;
            margin-bottom: 15px;
        }
        .politica-title {
        text-align: center;
        color: #e91e63;
        font-weight: 900;
        }
        .card-policy {
            border: 1px solid #e91e63;
            border-radius: 10px;
            transition: box-shadow 0.3s ease;
            height: 100%;
        }
        .card-policy:hover {
            box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
        }
        a.nav-link:hover {
            color: #e91e63 !important;
        }

/*politica de pagamentos*/
        .politica-title {
            color: #e91e63;
            font-weight: 600;
        }
        .card-payment {
            border: 1px solid #e91e63;
            border-radius: 10px;
            transition: box-shadow 0.3s ease;
            height: 100%;
        }
        .card-payment:hover {
            box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
        }
             a.nav-link:hover {
            color: #e91e63 !important;
        }
/*ajuda*/ 
#precisoajuda{
            font-family: 'Montserrat', sans-serif;
            text-align: center;
            color: #000000;
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 3.5rem;
}
        .horario-atendimento {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
            font-size: 18px;
        }
        
        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #25D366;
            color: white;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            margin: 10px 0;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }
        
        .whatsapp-button:active {
            transform: translateY(0);
        }
        
        .whatsapp-icon {
            margin-right: 12px;
            font-size: 24px;
        }
        
        .info {
            margin-top: 25px;
            color: #888;
            font-size: 14px;
        }
      /*politica de cupom*/
        .card-policy {
            border: 1px solid #e91e63;
            border-radius: 10px;
            transition: box-shadow 0.3s ease;
            height: 100%;
        }
        .card-policy:hover {
            box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
        }
         .back-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            margin-top: 20px;
        }
        
        .back-btn:hover {
            background-color: #d81b60;
        }  
    /*sobre nós*/
      .sobre-nos-section {
      padding: 60px 0;
    }

    .sobre-nos-title {
      color: #e91e63;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .sobre-nos-text {
        align-items: center;
      font-size: 1.1rem;
      color: #444;
      line-height: 1.7;
    }

    .sobre-nos-img {
      border-radius: 20px;
      max-width: 100%;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #f9a825;
      text-align: center;
      margin: 50px 0 30px;
    }
      :root {
      --primary-color: #e75e64;
      --secondary-color: #6a8db3;
      --accent-color: #ffd166;
      --light-color: #f8f9fa;
      --dark-color: #343a40;
    }

        .sobre-nos-section {
      margin: 40px auto;
      padding: 40px 20px;
    }

    .sobre-nos-img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-bottom: 30px; 
    }

    .sobre-nos-text {
      line-height: 1.7;
      font-size: 1.1rem;
      color: #555;
      text-align: justify;
      margin-top: 20px;
      padding-left: 20px;
    }

        /*coleções especiais*/
          /* Estilos para a página de produtos:categorias */
        .breadcrumb {
          background-color: transparent;
          padding: 15px 0;
        }
        
        .filter-section {
          background-color: white;
          border-radius: 8px;
          padding: 20px;
          margin-bottom: 20px;
          box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .filter-title {
          font-weight: 600;
          margin-bottom: 15px;
          color: #d76aa8;
        }
        
        .filter-group {
          margin-bottom: 20px;
        }
        
        .filter-group h6 {
          font-weight: 600;
          margin-bottom: 10px;
          color: #555;
        }
        
        .form-check {
          margin-bottom: 8px;
        }
        
        .form-check-input:checked {
          background-color: #d76aa8;
          border-color: #d76aa8;
        }
        
        .price-range {
          margin-top: 15px;
        }
        
        .product-actions {
          display: flex;
          justify-content: space-between;
        }
        
        .btn-add-cart {
          background-color: #f4c44e;
          border: none;
          border-radius: 4px;
          padding: 8px 15px;
          font-weight: 500;
          transition: background-color 0.2s;
        }
        
        .btn-add-cart:hover {
          background-color: #e0b33c;
        }
        
        .pagination {
          justify-content: center;
          margin-top: 40px;
        }
        
        .page-link {
          color: #d76aa8;
        }
        
        .page-item.active .page-link {
          background-color: #d76aa8;
          border-color: #d76aa8;
        }
                    
        .results-count {
          color: #777;
        }

/*contato*/
           :root {
            --primary-color: #557db9;
            --secondary-color: #ff9a8b;
            --accent-color: #ba6bb5;
            --light-color: #f8f5f2;
            --dark-color: #3a3a3a;
            --notebook-color: #fef9e7;
            --line-color: #846b39;
        }
        
        /* Efeito de linhas de caderno */
        body.contatobody {
            background-color: var(--notebook-color);
            color: var(--dark-color);
            position: relative;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        
        body.contatobody::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50px;
            width: calc(100% - 100px);
            height: 100%;
            background-image: repeating-linear-gradient(
                var(--notebook-color) 0px,
                var(--notebook-color) 23px,
                var(--line-color) 24px
            );
            z-index: -1;
            opacity: 0.7;
        }
        
        /* Margem esquerda como em um caderno */
        body.contatobody::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 220, 150, 0.66), transparent);
            z-index: -1;
        }
        
        /* Estilos específicos da página de contato */
        .contact-hero {
            color: #536b97 ;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-container {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
            border-left: 10px solid var(--primary-color);
        }
        
        .contact-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
            border-bottom: 2px dashed var(--accent-color);
            padding-bottom: 10px;
            font-size: 1.8rem;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .info-item:hover {
            border-left: 3px solid var(--secondary-color);
            padding-left: 15px;
        }
        
        .info-icon {
            background-color: var(--light-color);
            color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            border: 2px solid var(--primary-color);
        }
        
        .contact-form h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
            border-bottom: 2px dashed var(--accent-color);
            padding-bottom: 10px;
            font-size: 1.8rem;
        }
        
        .form-control {
            border-radius: 5px;
            border: 2px solid #e0e0e0;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: all 0.3s;
            background-color: rgba(248, 245, 242, 0.5);
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(74, 111, 165, 0.25);
            background-color: white;
        }
        
       /* ESTILO DO BOTÃO */
        .btn-mensagem {
            background-color: #5d88ed;
            color: #000000;
            border: none;
            border-radius: 8px;
            padding: 14px 35px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-mensagem:hover {
            background-color: #4a7ae3;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(93, 136, 237, 0.4);
        }
        
        .btn-mensagem:active {
            transform: translateY(-1px);
        }
        
.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

        .store-location {
            margin-top: 50px;
        }
        
        .store-location h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
            border-bottom: 2px dashed var(--accent-color);
            padding-bottom: 10px;
            font-size: 1.8rem;
        }
        
        .map-container {
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 300px;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            border: 1px solid #ddd;
        }
        
        .social-contact {
            margin-top: 30px;
            text-align: center;
        }
        
        .social-contact h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .social-icons-contact a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            transition: all 0.3s;
            border: 2px solid white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .social-icons-contact a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        /*página de pagamento*/
         .frete-gratis {
            background-color: #28a745;
            color: white;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: bold;
            text-align: center;
        }
        
            .dados {
            color: #ed5d67; 
            border-bottom: 3px dashed  #ed5d67; 
            padding-bottom: 10px;
            margin-bottom: 20px;
    }
        .payment-option {
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .payment-option:hover {
            border-color: #ed5d67; 
            background-color: #f8f9fa;
        }
        
        .payment-option.selected {
            border-color: #ed5d67;
            background-color: #e9f2ff;
        }
        
        .card-details {
            display: none;
        }
        
        .btn-pagamento {
            background-color:  #ed5d67;

            border-color:  #ed5d67;

        }
        
        .btn-pagamento:hover {
            background-color: #e94b55; 
            border-color: #ed5d67; 
        }
        #finalizar-compra {
    background: #e04a55;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
#finalizar-compra:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 94, 100, 0.3);
}
#gerar-boleto{
    background-color: #ed5d67;
    color: white;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    padding: 12px 25px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}
        /* Main Content */
main {
    max-width: 800px;
    margin: 220px auto 50px;
    padding: 0 20px;
}

.panel {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    display: block;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

/* Form Styles */
form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-color);
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 16px;
    transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(106, 141, 179, 0.2);
}

.row-flex {
    display: flex;
    gap: 15px;
}

.col {
    flex: 1;
}

/* Buttons */
.btn-pay {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 94, 100, 0.3);
}

.btn-ghost {
    background-color: transparent;
    color: var(--gray-medium);
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    padding: 12px 25px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-ghost:hover {
    background-color: var(--gray-light);
    color: var(--dark-color);
}

/* Error Message */
.error {
    background-color: #f8d7da;
    color: var(--danger-color);
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 4px solid var(--danger-color);
}

/* Processing Area */
.processing {
    text-align: center;
    padding: 20px;
}

.progress {
    height: 6px;
    background-color: var(--gray-light);
    border-radius: 3px;
    margin: 15px 0;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.5s ease;
}

/* Result Area */
.result {
    text-align: center;
    padding: 20px;
}

.result.success #result-status {
    color: var(--success-color);
}

.result.error #result-status {
    color: var(--danger-color);
}

.tx-id {
    background-color: var(--gray-light);
    padding: 8px 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-family: monospace;
    font-size: 14px;
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/*agradecimento de compra*/
 .thanks-container {
            background: #fff;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            max-width: 800px;
            margin: 2rem auto;
        }
        
        .thanks-icon {
            font-size: 4rem;
            color: #4CAF50;
            margin-bottom: 1.5rem;
        }
        
        .order-details {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: left;
        }
        
        .order-details h3 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .btn-grato {
            background-color: #ed5d67;
            border-color: #ed5d67;
            padding: 0.7rem 2rem;
            font-weight: 500;
            margin: 0.5rem;
        }
        
        .btn-grato:hover {
            background-color: #e04a55;
            border-color: #e04a55;
        }
        
        .btn-outline-grato {
            color: #ed5d67;
            border-color: #ed5d67;
            padding: 0.7rem 2rem;
            font-weight: 500;
            margin: 0.5rem;
        }
        
        .btn-outline-grato:hover {
            background-color: #ed5d67;
            border-color: #ed5d67;
            color: white;
        }
        
        .action-buttons {
            margin-top: 2rem;
        }
        
        .banner-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .whatsapp-support {
            background-color: #25d365cc;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            text-decoration: none;
            font-weight: 900;
            transition: all 0.3s;
        }
        
        .whatsapp-support:hover {
            background-color: #128C7E;
            color: white;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .thanks-container {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }
            
            .action-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 0.5rem;
            }
        }
   .email-notification {
            background: linear-gradient(135deg, #fce4e4 0%, #f8c1c1 100%);
            border-left: 4px solid  #ed5d67; 
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            text-align: left;
        }
        
        .email-notification i {
            color:  #ed5d67; 
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .confirmation-banner {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }
            
            .confirmation-text h1 {
                font-size: 1.8rem;
            }
            
            .thanks-container {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }
            
            .action-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 0.5rem;
            }
        }

        /*admin php estilo*/
          .admin-container {
            min-height: calc(100vh - 400px);
            padding: 40px 0;
        }
        .admin-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 30px;
            margin-bottom: 30px;
        }
        .admin-header {
            border-bottom: 3px solid #ed5d67;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        .admin-header h2 {
            color: #ed5d67;
            font-weight: 600;
            margin: 0;
        }
        .admin-header .badge {
            background: #ed5d67;
            font-size: 14px;
            padding: 8px 15px;
        }
        .table-responsive {
            margin-top: 20px;
        }
        .btn-action {
            padding: 5px 10px;
            font-size: 14px;
            margin: 0 2px;
        }
        .email-cell {
            font-weight: 500;
            color: #333;
        }
        .date-cell {
            color: #666;
            font-size: 14px;
        }
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        .empty-state i {
            font-size: 64px;
            margin-bottom: 20px;
            color: #ddd;
        }
        .stats-card {
            background: linear-gradient(135deg, #ed5d67 0%, #c05b9d 100%);
            color: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .stats-card h3 {
            font-size: 36px;
            font-weight: 600;
            margin: 0;
        }
        .stats-card p {
            margin: 0;
            opacity: 0.9;
        }
        .logout-btn {
            position: absolute;
            top: 20px;
            right: 20px;
        }
        .modal-content {
            border-radius: 15px;
        }
        .modal-header {
            background: #ed5d67;
            color: white;
            border-radius: 15px 15px 0 0;
        }

        /*acesso negado pagina de administração*/
          .adminerro {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .error-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            padding: 50px 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            animation: shake 0.5s ease;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }
        
        .error-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
            animation: pulse 2s infinite;
        }
        
        .error-icon i {
            font-size: 48px;
            color: white;
        }
        
        h1 {
            color: #333;
            font-weight: 600;
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .error-message {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .alert-custom {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .alert-custom i {
            color: #ffc107;
            margin-right: 10px;
        }
        
        .alert-custom p {
            margin: 0;
            font-size: 14px;
            color: #856404;
        }
        
        .btn-return {
            background: linear-gradient(135deg, #ed5d67 0%, #c05b9d 100%);
            border: none;
            border-radius: 12px;
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(237, 93, 103, 0.3);
        }
        
        .btn-return:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(237, 93, 103, 0.4);
            color: white;
        }
        
        .btn-return:active {
            transform: translateY(0);
        }
        
        .timer {
            margin-top: 20px;
            font-size: 14px;
            color: #999;
        }
        
        @media (max-width: 576px) {
            .error-card {
                padding: 40px 30px;
            }
            
            h1 {
                font-size: 26px;
            }
            
            .error-icon {
                width: 80px;
                height: 80px;
            }
            
            .error-icon i {
                font-size: 38px;
            }
        }

        /*administrador*/
         .admin-login-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }
        
        .login-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            padding: 40px;
            max-width: 450px;
            width: 100%;
            animation: slideUp 0.5s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 35px;
        }
        
        .login-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ed5d67 0%, #c05b9d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(237, 93, 103, 0.3);
        }
        
        .login-icon i {
            font-size: 36px;
            color: white;
        }
        
        .login-header h2 {
            color: #333;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 28px;
        }
        
        .login-header p {
            color: #666;
            margin: 0;
            font-size: 14px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 14px 20px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #ed5d67;
            box-shadow: 0 0 0 0.2rem rgba(237, 93, 103, 0.15);
        }
        
        .input-icon-wrapper {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 18px;
        }
        
        .toggle-password {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .toggle-password:hover {
            color: #ed5d67;
        }
        
        .form-control.with-icon {
            padding-right: 50px;
        }
        
        .btn-login {
            width: 100%;
            background: linear-gradient(135deg, #ed5d67 0%, #c05b9d 100%);
            border: none;
            border-radius: 12px;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(237, 93, 103, 0.3);
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(237, 93, 103, 0.4);
            background: linear-gradient(135deg, #d94450 0%, #a84a87 100%);
        }
        
        .btn-login:active {
            transform: translateY(0);
        }
        
        .back-link {
            text-align: center;
            margin-top: 25px;
        }
        
        .back-link a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .back-link a:hover {
            color: #ed5d67;
        }
        
        .back-link i {
            margin-right: 5px;
        }
        
        .security-note {
            background: #f8f9fa;
            border-left: 4px solid #ed5d67;
            padding: 15px;
            border-radius: 8px;
            margin-top: 25px;
        }
        
        .security-note i {
            color: #ed5d67;
            margin-right: 8px;
        }
        
        .security-note p {
            margin: 0;
            font-size: 13px;
            color: #666;
        }
        
        /* Responsivo */
        @media (max-width: 576px) {
            .login-card {
                padding: 30px 25px;
            }
            
            .login-header h2 {
                font-size: 24px;
            }
            
            .login-icon {
                width: 70px;
                height: 70px;
            }
            
            .login-icon i {
                font-size: 32px;
            }
        }
        /* ====================================================
   ESTILOS DE AUTENTICAÇÃO (LOGIN E CADASTRO)
   ==================================================== */

/* Container Geral */
.login-container,
.cadastro-container {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff5f6 0%, #fef0f5 100%);
}

/* Card Principal */
.login-card,
.cadastro-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(237, 93, 103, 0.15);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    animation: fadeInUp 0.5s ease;
}

.cadastro-card {
    max-width: 500px;
}

/* Animação de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header do Card */
.login-header,
.cadastro-header {
    text-align: center;
    margin-bottom: 35px;
}

/* Ícone do Card */
.login-icon,
.cadastro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ed5d67 0%, #c05b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(237, 93, 103, 0.3);
}

.login-icon i,
.cadastro-icon i {
    font-size: 36px;
    color: white;
}

/* Títulos */
.login-header h2,
.cadastro-header h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 28px;
}

.login-header p,
.cadastro-header p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Labels dos Formulários */
.login-card .form-label,
.cadastro-card .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Inputs */
.login-card .form-control,
.cadastro-card .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 50px 14px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.login-card .form-control:focus,
.cadastro-card .form-control:focus {
    border-color: #ed5d67;
    box-shadow: 0 0 0 0.2rem rgba(237, 93, 103, 0.15);
}

/* Wrapper dos Inputs com Ícone */
.login-card .input-icon-wrapper,
.cadastro-card .input-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

/* Ícones dos Inputs */
.login-card .input-icon,
.cadastro-card .input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

/* Toggle de Senha */
.login-card .toggle-password,
.cadastro-card .toggle-password {
    cursor: pointer;
    transition: color 0.3s ease;
}

.login-card .toggle-password:hover,
.cadastro-card .toggle-password:hover {
    color: #ed5d67;
}

/* Botões */
.btn-login,
.btn-cadastro {
    width: 100%;
    background: linear-gradient(135deg, #ed5d67 0%, #c05b9d 100%);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 93, 103, 0.3);
    margin-top: 10px;
}

.btn-login:hover,
.btn-cadastro:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 93, 103, 0.4);
    background: linear-gradient(135deg, #d94450 0%, #a84a87 100%);
    color: white;
}

.btn-login:active,
.btn-cadastro:active {
    transform: translateY(0);
}

/* Divisor */
.login-card .divider,
.cadastro-card .divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.login-card .divider::before,
.cadastro-card .divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.login-card .divider span,
.cadastro-card .divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 14px;
}

/* Links de Cadastro/Login */
.signup-link,
.login-link {
    text-align: center;
    margin-top: 20px;
}

.signup-link a,
.login-link a {
    color: #ed5d67;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover,
.login-link a:hover {
    color: #c05b9d;
}

/* Box de Informações (Cadastro) */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid #ed5d67;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-box i {
    color: #ed5d67;
    margin-right: 8px;
}

.info-box p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* Responsivo - Mobile */
@media (max-width: 576px) {
    .login-card,
    .cadastro-card {
        padding: 30px 25px;
    }
    
    .login-header h2,
    .cadastro-header h2 {
        font-size: 24px;
    }
    
    .login-icon,
    .cadastro-icon {
        width: 70px;
        height: 70px;
    }
    
    .login-icon i,
    .cadastro-icon i {
        font-size: 32px;
    }
    
    .login-container,
    .cadastro-container {
        padding: 40px 15px;
    }
}

/* Ajustes para Tablets */
@media (min-width: 577px) and (max-width: 768px) {
    .login-card,
    .cadastro-card {
        max-width: 90%;
    }
}

/*Lista*/
      .badge-admin {
            background-color: #dc3545;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
        }
        .badge-usuario {
            background-color: #6e8fcb; 
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
        }
        .data-cell {
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* ============================================
   MODAIS - FIX PARA SOBREPOR ELEMENTOS FIXOS
   ============================================ */
.modal {
    z-index: 999999 !important;
}

.modal-backdrop {
    z-index: 999998 !important;
}

/* Ajuste para conteúdo não ficar escondido */
.admin-container {
    padding-top: 150px;
}
        
        .admin-login-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }
        
        .login-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            padding: 40px;
            max-width: 450px;
            width: 100%;
            animation: slideUp 0.5s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 35px;
        }
        
        .login-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ed5d67 0%, #c05b9d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(237, 93, 103, 0.3);
        }
        
        .login-icon i {
            font-size: 36px;
            color: white;
        }
        
        .login-header h2 {
            color: #333;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 28px;
        }
        
        .login-header p {
            color: #666;
            margin: 0;
            font-size: 14px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 14px 20px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #ed5d67;
            box-shadow: 0 0 0 0.2rem rgba(237, 93, 103, 0.15);
        }
        
        .input-icon-wrapper {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 18px;
        }
        
        .toggle-password {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .toggle-password:hover {
            color: #ed5d67;
        }
        
        .form-control.with-icon {
            padding-right: 50px;
        }
        
        .btn-login {
            width: 100%;
            background: linear-gradient(135deg, #ed5d67 0%, #c05b9d 100%);
            border: none;
            border-radius: 12px;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(237, 93, 103, 0.3);
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(237, 93, 103, 0.4);
            background: linear-gradient(135deg, #d94450 0%, #a84a87 100%);
        }
        
        .btn-login:active {
            transform: translateY(0);
        }
        
        .back-link {
            text-align: center;
            margin-top: 25px;
        }
        
        .back-link a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .back-link a:hover {
            color: #ed5d67;
        }
        
        .back-link i {
            margin-right: 5px;
        }
        
        .security-note {
            background: #f8f9fa;
            border-left: 4px solid #ed5d67;
            padding: 15px;
            border-radius: 8px;
            margin-top: 25px;
        }
        
        .security-note i {
            color: #ed5d67;
            margin-right: 8px;
        }
        
        .security-note p {
            margin: 0;
            font-size: 13px;
            color: #666;
        }
        
        /* Footer Fixo */
        .mini-footer {
            background: rgba(255,255,255,0.95);
            padding: 20px 0;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        
        .mini-footer p {
            margin: 0;
            color: #666;
            font-size: 14px;
        }
        
        .mini-footer a {
            color: #ed5d67;
            text-decoration: none;
            font-weight: 500;
        }
        
        /* Responsivo */
        @media (max-width: 576px) {
            .login-card {
                padding: 30px 25px;
            }
            
            .login-header h2 {
                font-size: 24px;
            }
            
            .login-icon {
                width: 70px;
                height: 70px;
            }
            
            .login-icon i {
                font-size: 32px;
            }
        }
/*admin.php*/
         .admin-container {
            padding-top: 150px;
            min-height: 100vh;
            background: #f8f9fa;
        }
        .admin-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        .admin-header {
            border-bottom: 2px solid #ed5d67;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        .stats-card {
            background: linear-gradient(135deg, #ed5d67 0%, #ff8a9a 100%);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
        }
        .stats-card h3 {
            font-size: 2.5rem;
            margin: 0;
            font-weight: bold;
        }
        .subtitutulocard{
            color: white;
            font-size: 1.5rem; 
            font-weight: bold;
        }
        .badge-custom {
            background: #ed5d67;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .btn-action {
            padding: 5px 10px;
            margin: 0 2px;
        }
        .email-cell {
            color: #0066cc;
        }
        .date-cell {
            color: #666;
            font-size: 0.9rem;
        }
        .empty-state {
            text-align: center;
            padding: 50px;
            color: #999;
        }
        .empty-state i {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        .modal { z-index: 999999 !important; }
        .modal-backdrop { z-index: 999998 !important; }