/* Variáveis CSS */
:root {
    --primary-color: #f47119;
    --secondary-color: #e6d3c6;
    --neutral-color: #F7FAFC;
    --text-color: #2D3748;
    --accent-color: #ED8936;
    --white: #ffffff;
    --light-gray: #E2E8F0;
}

/* Tipografia */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.new-home{display:none}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 700;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 700;
}

.logo img{max-width:350px}

.product{padding:0 20px}
.product-search{padding:0 20px !important; }
.page-loja{ padding-top:20px}

/*estilos busca e loja*/

h1.titulo-pages{margin-top:20px}
.button.alt,
.btn-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
    border-radius: 8px; /* 👈 cantos arredondados */
    padding: 10px 15px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    border: none;
}

.button.alt:hover,
.btn-whatsapp:hover {
    background: #1ebe5d !important;
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*fim estilos busca e loja*/

/*home*/

/* GRID RESPONSIVO */
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 820px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* IMAGEM QUADRADA */
.card-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px;
    display: block;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #1ebe5d !important;
}

/* fim home*/

.navbar-toggler {
 
 position:absolute;
 top:25px;
 right:15px;
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: #f47119 !important;
  background-color: transparent;
  border: solid 1px #e4e4e4;
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
   
}

.search-form {
    display: flex;
    max-width: 400px;
	padding-top:20px;
}

.search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.search-button {
    padding: 10px 15px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.search-button i {
    color: #f47119;
    font-size: 16px;
}

.search-button:hover i {
    opacity: 0.8;
}

.cart-icon {
    font-size: 25px;
    color: #f47119;
    text-decoration: none;
	padding-right:15px
}

.cart-icon:hover {
    opacity: 0.8;
}

.main-menu ul {
    list-style: none;       /* remove os bullets */
    margin: 0;
    padding: 15px 0 0 25px  ;
    display: flex;          /* deixa lado a lado */
    gap: 20px;              /* espaçamento entre itens */
}

.main-menu li {
    margin: 0;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.main-menu a:hover {
    color: #f47119;
}

/* Cores personalizadas do Bootstrap */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Menu hambúrguer responsivo */
@media (max-width: 820px) {
	 
	h1.titulo-pages{font-size:1.2em}
	
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Hero Section */
.hero-section {
    margin-top: 76px;
}

.carousel-item {
    height: 70vh;
    min-height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    /*filter: brightness(0.7);*/
}

.carousel-caption {
    background: rgba(177, 76, 112, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.carousel-caption h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Seções */
section {
    scroll-margin-top: 100px;
}

.py-5 {
    padding: 4rem 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Seção Sobre */
#sobre img {
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

#sobre img:hover {
    transform: scale(1.02);
}

/* Depoimentos */
#depoimentos .card {
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-color) 100%);
}

.fa-quote-left {
    opacity: 0.3;
}

/* Formulário */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid var(--light-gray);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 82, 130, 0.25);
}

/* Footer */
footer {
    background: #f47119;
}

.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
}

/* Botão Voltar ao Topo */
#backToTop {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.4);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
 
/* Responsividade adicional */
@media (max-width: 768px) {
    .main-menu ul {
        flex-direction: column;
        gap: 10px;
		padding-top:0;
    }	
	.display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .carousel-item {
        height: 50vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .py-5 {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .logo img{max-width:250px}
	
	.carousel-caption {
        display: block !important;
        padding: 0.5rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Efeitos de hover para melhor UX */
.navbar-brand:hover {
    color: var(--secondary-color) !important;
}

.card-title {
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: var(--secondary-color) !important;
}

