/* Base Styles */
:root {
    /* Paleta vintage artesanal */
    --primary-color: #E6B8A2;   /* Rosa queimado */
    --secondary-color: #D7C2A8; /* Dourado desbotado */
    --accent-color: #C8B49A;    /* Dourado suave */
    --light-color: #F3EAE1;     /* Bege claro suave */
    --dark-color: #7B5E57;      /* Marrom suave p/ textos */
    --text-color: #7B5E57;      /* Texto padrão */
    --white: #FFFFFF;
    --paper-bg: #F9F5EF;        /* Fundo principal */
    --transition: all 0.3s ease;
    /* Tipografia */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --accent-font: 'Dancing Script', cursive;
}

/* Typography */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.75;
    background-color: var(--paper-bg);
    background-image: url('../images/knit-pattern.png');
    background-size: 500px; /* textura mais sutil */
    background-blend-mode: soft-light; /* baixa opacidade perceptiva */
    margin-bottom: 1.5rem;
    /* Borda decorativa sutil ao redor da página */
    box-shadow: inset 0 0 0 10px #F1E8DD, inset 0 0 60px rgba(123, 94, 87, 0.08);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    letter-spacing: 0.2px;
}

h2.section-title:after {
    content: '';
    position: absolute;
    width: 90px;
    height: 3px;
    background: var(--secondary-color); /* traço dourado suave */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

/* Container centralizado com largura máxima confortável */
.container {
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Utilitário de fonte cursiva para detalhes */
.accent-script {
    font-family: var(--accent-font);
    letter-spacing: 0.3px;
}

/* Cartão/vitrine vintage: bordas suaves e sombra difusa */
.card-vintage {
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(123, 94, 87, 0.08);
    box-shadow: 0 6px 22px rgba(123, 94, 87, 0.08);
}

/* Imagens estilo catálogo vintage */
img.vintage,
.products-swiper .swiper-slide img,
.summer-collection .summer-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #fff; /* moldura branca fina */
    filter: sepia(0.1) saturate(0.9);
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.products-swiper .swiper-slide img:hover,
.summer-collection .summer-swiper .swiper-slide img:hover {
    filter: sepia(0.08) saturate(1) brightness(1.04);
}

/* Background de papel no carrossel */
.products-swiper,
.summer-collection .summer-swiper {
    background: #FDFCF9;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(123, 94, 87, 0.06);
    padding: 14px;
}

.products-swiper .swiper-slide,
.summer-collection .summer-swiper .swiper-slide {
    background: transparent;
}

/* Footer vintage */
.site-footer {
    background: #EBDDCB; /* bege escuro suave */
    color: var(--dark-color);
}
.site-footer a { color: #6E524B; }
.site-footer .footer-logo { filter: sepia(0.08) saturate(0.95); }

/* Divisores delicados */
.divider-thin {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123,94,87,0.25), transparent);
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 12px; /* bordas arredondadas suaves */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0 6px 20px rgba(123, 94, 87, 0.08); /* sombra difusa */
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color); /* rosa queimado */
    color: var(--dark-color); /* marrom escuro */
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(123, 94, 87, 0.12);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    padding: 0;
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar .container {
    padding: 0 2rem;
    max-width: 1400px;
}

/* Navbar Brand & Logo */
.navbar-brand {
    padding: 0.5rem 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar .logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Navbar Nav */
.navbar-nav {
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.6rem 1rem !important;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.nav-link.active {
    font-weight: 600;
}

/* Underline Animation */
.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 1rem;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: calc(100% - 2rem);
}

/* Primary Button */
.navbar .btn-primary {
    margin-left: 0.5rem;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(248, 187, 208, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 187, 208, 0.6);
}

/* Scrolled State */
.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .logo {
    height: 50px;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar .container {
        padding: 0 1.5rem;
    }
    
    .navbar-collapse {
        background: white;
        border-radius: 8px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar .btn-primary {
        margin: 0.75rem 0 0 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar .logo {
        height: 50px;
    }
}

/* Products Section */
.products-section {
    background-color: #fff;
    position: relative;
    padding: 5rem 0;
}

/* Footer (Nó Encantado) */
.site-footer {
  background: radial-gradient(1200px 600px at 50% 0%, #FADCD9 0%, #F8F5F2 60%);
  color: #5C4633;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  position: relative;
  border-top: 1px solid rgba(92,70,51,0.08);
}

/* Minimal single-line footer row */
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .75rem;
}
.footer-left { justify-self: start; }
.footer-right { justify-self: end; display: inline-flex; align-items: center; gap: .5rem; }

.site-footer .footer-logo {
  height: 52px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.04));
}

.footer-col-center, .footer-copy { text-align: center; }
.footer-copy {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.footer-made { font-size: .95rem; opacity: .9; }

.site-footer .social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(243, 225, 221, 0.7); /* rosé translúcido */
  color: #5C4633;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-footer .social-link i { color: #D3AFA3; font-size: 18px; }
.site-footer .social-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(211,175,163,0.35);
  background: #F9EDEA;
}

.site-footer .footer-quote {
  font-family: 'Playfair Display', serif;
  color: #5C4633;
  font-size: 1.05rem;
  margin: 0.5rem 0 0;
}

.site-footer .made-with {
  color: #5C4633;
  opacity: 0.9;
}

.site-footer .footer-cta {
  background: #F9EDEA;
  color: #5C4633;
  border: 1px solid rgba(211,175,163,0.6);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.site-footer .footer-cta:hover { filter: brightness(1.02); }

/* Responsivo: centralizar copy e empilhar visualmente mínimos */
@media (max-width: 767.98px) {
  .footer-row { grid-template-columns: 1fr; }
  .footer-left { justify-self: center; margin-bottom: .25rem; }
  .footer-right { display: none; }
  .footer-copy { text-align: center; }
  .site-footer .footer-cta { display: none; }
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    padding-top: 125%; /* Proporção 4:5 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.product-overlay p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.product-variants {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 1.1rem;
}

/* Swiper Customization */
.products-swiper {
    padding: 1rem 0 3rem;
    width: 100%;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .product-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .product-info {
        background: #fff;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.hero-subtitle {
    font-family: var(--body-font);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 auto 2.5rem;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
}
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F8BBD0, #B2DFDB, #FFE0B2);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--dark-color);
    text-align: center;
    padding: 120px 0 80px;
}

/* Prefer dynamic viewport units when available */
@supports (min-height: 100dvh) {
  .hero-section { min-height: 100dvh; }
}

/* iOS Safari fallback */
html, body { height: auto; }
@supports (-webkit-touch-callout: none) {
  html, body { height: -webkit-fill-available; }
  .hero-section { min-height: -webkit-fill-available; }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
    opacity: 0.9;
}

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .scroll-down {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    animation: bounce 2s infinite;
  }
  
  .scroll-down a {
    color: var(--dark-color);
    font-size: 2rem;
    transition: var(--transition);
  }

  .scroll-down a:hover {
    color: var(--primary-color);
    transform: translateY(5px);
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
  }
  .magic-emoji {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
  }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

p {
    margin-bottom: 1rem;
}

/* Sobre a Criadora e Nó Encantado */
#sobre {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

#sobre .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 600;
}

#sobre .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

#sobre .lead {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 8px solid var(--light-color);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-image-container:hover img {
    transform: scale(1.05);
}

#sobre h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    font-size: 2rem;
}

#sobre h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

#sobre .text-muted {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin-bottom: 2rem;
    display: block;
    font-size: 1.35rem;
    font-family: var(--heading-font);
}

#sobre .fa-check-circle,
#sobre .fa-heart,
#sobre .fa-lightbulb,
#sobre .fa-hands-helping {
    font-size: 1.75rem;
    margin-top: 0.25rem;
    color: var(--primary-color);
}

#sobre .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
}

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

#sobre .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

#sobre .btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Estilos para a seção Sobre o Nó Encantado */
#sobre .card .fa-check-circle {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

#sobre .card h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

#sobre .card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 1199.98px) {
    #sobre .card {
        padding: 2.5rem !important;
    }
}

@media (max-width: 991.98px) {
    #sobre {
        padding: 5rem 0;
    }
    
    #sobre .section-title {
        font-size: 2.2rem;
    }
    
    #sobre .lead {
        font-size: 1.15rem;
    }
    
    #sobre .card {
        margin-top: 3rem;
    }
    
    #sobre .about-image-container {
        max-width: 500px;
        margin: 0 auto 3rem;
    }
}

@media (max-width: 767.98px) {
    #sobre {
        padding: 4rem 0;
    }
    
    #sobre h3 {
        font-size: 1.8rem;
    }
    
    #sobre .lead {
        font-size: 1.1rem;
    }
    
    #sobre .card {
        padding: 2rem !important;
    }
    
    #sobre .btn-primary {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}
/* Estilos da seção Sobre Nós e a Criadora já estão definidos acima */

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 300px;
    margin-bottom: 2rem;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1.5rem;
    text-align: center;
    overflow-y: auto;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-overlay p {
    color: #f1f1f1;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Steps Section */
.steps-section {
    padding: 6rem 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.steps-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/knit-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.step-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(248, 187, 208, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Policy Section */
.policy-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.policy-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.policy-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.policy-item h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.policy-item h4 i {
    margin-right: 10px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--light-color);
    position: relative;
}

.about-img {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    top: 20px;
    left: 20px;
    z-index: 0;
}

.about-img img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--dark-color);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Sobre Nós */
#sobre {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

#sobre .about-image-container {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#sobre .about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#sobre .about-image-container:hover img {
    transform: scale(1.03);
}

#sobre .fa-check-circle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

#sobre h2 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

#sobre h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

#sobre .lead {
    color: var(--dark-color);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

#sobre .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

#sobre .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.social-links.footer-social {
    justify-content: flex-start;
    margin-top: 2rem;
}

.social-links.footer-social .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.social-links.footer-social .social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Floating WhatsApp (mobile) */
.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: none; /* default hidden, shown via media query */
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 1100;
}

.floating-whatsapp i {
  font-size: 24px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 96px 0 48px;
    }
    
    .gallery-item {
        height: 250px;
    }

    /* Mobile hero tweaks */
    .hero-section {
        background-size: cover; /* caso haja imagem de fundo */
        background-position: center top;
        min-height: 100svh; /* Safari address bar friendly */
        background-repeat: no-repeat;
    }
    .hero-overlay { opacity: 0.06; } /* reduz textura no mobile */
    /* Show floating WhatsApp on mobile/tablet */
    .floating-whatsapp { display: flex; }
}
@media (max-width: 767.98px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .hero-section .lead { font-size: 1.2rem; }
  .step-card { margin-bottom: 2rem; }
  .about-img { margin-bottom: 3rem; }
  .about-img:before { display: none; }
  /* Mobile gallery behavior: captions below image */
  .gallery-swiper .gallery-overlay { display: none !important; }
  .gallery-caption { padding: 0.75rem 0.25rem 0; text-align: center; }
  .gallery-caption h3 { font-size: 1.1rem; color: var(--dark-color); margin: 0; }
  .gallery-caption p { font-size: 0.95rem; color: #666; margin: 0.25rem 0 0; }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
/* Anchor offset for fixed navbar */
header#inicio, section[id] {
  scroll-margin-top: 130px;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section h1, 
.hero-section .lead {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

  .hero-section .btn {
    position: relative;
    z-index: 2;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
  }

  .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
  }

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

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 60%;
  }

/* Products Section */
.products-section {
    background-color: #fff;
    position: relative;
    padding: 5rem 0;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    padding-top: 125%; /* Proporção 4:5 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.product-overlay p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.product-variants {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 1.1rem;
}

/* Swiper Customization */
.products-swiper {
    padding: 1rem 0 3rem;
    width: 100%;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .product-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .product-info {
        background: #fff;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 8rem 0;
    margin-top: -76px; /* Compensate for fixed navbar */
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-section p.lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Sobre Nós Section */
#sobre-nos {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

#sobre-nos .divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

#sobre-nos .divider:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: var(--accent-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.feature-box {
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(230, 184, 162, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary-color);
    color: white;
}

.feature-box h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Icons */
.icon-box {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    text-align: center;
    margin-top: -76px;
    padding-top: 8rem;
    padding-bottom: 3rem;
}

/* Form Styles */
.form-control {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

textarea.form-control {
    min-height: 150px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section p.lead {
        font-size: 1.25rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 6rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: 56.25%;
    content: "";
}

.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 9:16 portrait helper */
.ratio-9x16::before {
    padding-top: 177.78%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        font-size: 12pt;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}

/* Mobile Carousel Styles */
.products-swiper, .gallery-swiper {
    width: 100%;
    padding: 1rem 0 3rem;
    overflow: visible;
}

/* Mobile gallery nav buttons */
.gallery-swiper .carousel-prev,
.gallery-swiper .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--dark-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 5;
}

.gallery-swiper .carousel-prev { left: 6px; }
.gallery-swiper .carousel-next { right: 6px; }

.gallery-swiper .carousel-prev:hover,
.gallery-swiper .carousel-next:hover { background: var(--primary-color); color: var(--dark-color); }

.products-swiper .swiper-wrapper,
.gallery-swiper .swiper-wrapper {
    padding: 1rem 0;
}

.products-swiper .swiper-slide,
.gallery-swiper .swiper-slide {
    width: 85%;
    transition: transform 0.3s ease;
    height: auto;
}

.products-swiper .swiper-slide-active,
.gallery-swiper .swiper-slide-active {
    transform: scale(1.02);
}

.products-swiper .swiper-pagination,
.gallery-swiper .swiper-pagination {
    position: relative;
    margin: 2rem 0 0;
    padding: 0.5rem 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.products-swiper .swiper-pagination-bullet,
.gallery-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    width: 8px;
    height: 8px;
    margin: 0;
    transition: all 0.3s ease;
}

.products-swiper .swiper-pagination-bullet-active,
.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 12px;
    height: 12px;
}

/* Estilos específicos para a galeria mobile */
.gallery-swiper .gallery-item {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-swiper .gallery-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px;
}

.gallery-swiper .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-swiper .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-swiper .gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-swiper .btn-outline-light {
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-swiper .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .products-swiper .swiper-slide {
        width: 85%;
        padding: 0.5rem;
    }
    
    .product-card {
        margin: 0 auto;
        max-width: 400px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
        padding: 1rem;
    }
    
    .product-info {
        background: #fff;
    }
}
/* Hero Section with Background */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Product Cards */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

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

.product-image {
    position: relative;
    padding-top: 125%; /* Proporção 4:5 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.product-overlay p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f0f0f0;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    text-align: center;
}

/* Mobile Carousel Adjustments */
@media (max-width: 991.98px) {
    .products-swiper {
        padding: 1rem 0 3rem;
    }
    
    .products-swiper .swiper-slide {
        width: 85%;
        padding: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .products-swiper .swiper-slide-active {
        transform: scale(1.02);
    }
    
    .product-card {
        margin: 0 auto;
        max-width: 400px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.7);
        padding: 1.5rem;
    }
    
    .product-overlay p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-outline-light, .btn-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Hero Section with Responsive Background */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0;
    background-color: #f8f9fa;
    overflow: hidden;
    /* Imagem padrão para mobile */
    background-image: url('../images/hero-bg-mobile.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Imagem para desktop (acima de 768px) */
@media (min-width: 768px) {
    .hero-section {
        background-image: url('../images/hero-bg-desktop.png');
    }
}

/* Imagem para telas muito grandes (opcional) */
@media (min-width: 1600px) {
    .hero-section {
        background-size: cover;
        background-position: center center;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .btn {
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 50px;
    margin: 0 10px 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Summer Collection Section */
.summer-collection {
  padding: 5rem 0;
  background: #fff;
}

.summer-collection .section-title {
  margin-bottom: 1rem;
}

.summer-collection .section-intro {
  max-width: 780px;
  margin: 0 auto 2rem;
  color: #666;
}

/* Revertido: removidos estilos específicos da seção summer-collection para voltar ao layout anterior */
/* Mantemos apenas regras globais existentes no tema */

.summer-collection .swiper-button-next,
.summer-collection .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.summer-collection .swiper-button-next:hover,
.summer-collection .swiper-button-prev:hover {
    background: var(--white);
    transform: scale(1.1);
}

.summer-collection .swiper-button-next:after,
.summer-collection .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Ajustes para telas menores */
@media (max-width: 767.98px) {
    .summer-collection .swiper {
        padding: 1rem 0.5rem;
        margin: 0 -0.5rem;
    }
    
    .summer-collection .swiper-slide {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

.summer-collection .media-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.summer-collection .video-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  background: #000;
}

.summer-collection .thumbs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.summer-collection .thumbs-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Products Swiper */
.products-swiper {
  width: 100%;
  padding: 20px 0 40px;
}

.products-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.products-swiper .swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.products-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Navigation buttons */
.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.products-swiper .swiper-button-prev:after,
.products-swiper .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}

.products-swiper .swiper-button-prev:hover,
.products-swiper .swiper-button-next:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* Pagination */
.products-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px !important;
  transition: all 0.3s ease;
}

.products-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .products-swiper .swiper-slide img {
    height: 250px;
  }
  
  .products-swiper .swiper-button-prev,
  .products-swiper .swiper-button-next {
    display: none;
  }
}

/* Summer collection layout */
.summer-collection .summer-swiper {
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
}

.summer-collection .summer-swiper .swiper-slide {
  height: auto;
  padding: 0.25rem;
}

/* Garante que as imagens tenham a mesma proporção do vídeo */
.summer-collection .ratio-9x16 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 0.75rem;
}

.summer-collection .ratio-9x16 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summer-collection video { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Ajustes de responsividade */
@media (min-width: 768px) {
  .summer-collection .summer-swiper {
    padding: 0 1rem;
  }
  
  .summer-collection .swiper-slide > .ratio-9x16:last-child {
    margin-bottom: 0;
  }
}

/* Pagination styling */
.summer-collection .swiper-pagination {
  position: relative;
  margin-top: 1rem;
}

.summer-collection .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.summer-collection .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .summer-collection { padding: 4rem 0; }
  .summer-collection .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .summer-collection .thumbs-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}
