@charset "UTF-8";
/*
Theme Name: FTM - Fábrica de Tabaco Micaelense
Theme URI: https://ftm.pt
Author: Your Name
Author URI: https://yoursite.com
Description: Custom WordPress theme for Fábrica de Tabaco Micaelense with Bootstrap 5, Slick Slider, and ACF integration
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ftm-theme
*/
/* ===================================
   VARIABLES
   =================================== */
/* ===================================
   GLOBAL STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

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

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

.container {
  max-width: 1200px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #2B1F1A;
  padding: 0;
  transition: all 0.3s ease;
}
.site-header .navbar {
  padding: 15px 0;
  background-color: transparent;
}
.site-header .navbar .navbar-brand img {
  max-height: 60px;
  width: auto;
}
.site-header .navbar .navbar-toggler {
  border: none;
  color: #ffffff;
  font-size: 24px;
}
.site-header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
.site-header .navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-header .navbar .navbar-nav .nav-link {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.site-header .navbar .navbar-nav .nav-link:hover {
  color: #D4A157;
}
.site-header .navbar .navbar-nav .nav-link.active {
  color: #D4A157;
}
.site-header .navbar .search-icon {
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  margin-left: 20px;
}
.site-header .navbar .search-icon:hover {
  color: #D4A157;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 60%;
  height: 100vh;
  background-color: #2B1F1A;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu-overlay.active {
  transform: translateX(0);
}
.mobile-menu-overlay .close-menu {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-menu-overlay .close-menu:hover {
  color: #D4A157;
}
.mobile-menu-overlay .mobile-nav {
  padding: 80px 30px;
}
.mobile-menu-overlay .mobile-nav .nav-link {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-overlay .mobile-nav .nav-link:hover {
  color: #D4A157;
}

/* ===================================
   AGE VERIFICATION MODAL
   =================================== */
.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-verification-modal .modal-content {
  background-color: rgba(43, 31, 26, 0.95);
  padding: 60px 40px;
  border-radius: 0;
  text-align: center;
  max-width: 600px;
  width: 90%;
}
.age-verification-modal .modal-content .logo {
  margin-bottom: 40px;
}
.age-verification-modal .modal-content .logo img {
  max-width: 150px;
}
.age-verification-modal .modal-content h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}
.age-verification-modal .modal-content p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.9;
}
.age-verification-modal .modal-content .buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.age-verification-modal .modal-content .buttons .btn {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #6AADAF;
  transition: all 0.3s ease;
}
.age-verification-modal .modal-content .buttons .btn.btn-confirm {
  background-color: #6AADAF;
  color: #ffffff;
}
.age-verification-modal .modal-content .buttons .btn.btn-confirm:hover {
  background-color: transparent;
  color: #6AADAF;
}
.age-verification-modal .modal-content .buttons .btn.btn-decline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.age-verification-modal .modal-content .buttons .btn.btn-decline:hover {
  background-color: #ffffff;
  color: #2B1F1A;
}

/* ===================================
   HERO SLIDER
   =================================== */
.hero-slider {
  margin-top: 80px;
  position: relative;
}
.hero-slider .slick-slide {
  position: relative;
  height: 600px;
}
.hero-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .slick-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hero-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #D4A157;
  background-color: rgba(255, 255, 255, 0.1);
  color: #D4A157;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider .slick-arrow:hover {
  background-color: #D4A157;
  color: #ffffff;
}
.hero-slider .slick-arrow.slick-prev {
  left: 40px;
}
.hero-slider .slick-arrow.slick-next {
  right: 40px;
}
.hero-slider .close-slider {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #D4A157;
  background-color: rgba(255, 255, 255, 0.1);
  color: #D4A157;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider .close-slider:hover {
  background-color: #D4A157;
  color: #ffffff;
}

/* ===================================
   HOMEPAGE HERO
   =================================== */
.homepage-hero {
  position: relative;
  height: 600px;
  margin-top: 80px;
  overflow: hidden;
}
.homepage-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
}
.homepage-hero .hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

/* ===================================
   SECTION: SOBRE NÓS (ABOUT US)
   =================================== */
.sobre-nos-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.sobre-nos-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.sobre-nos-section .section-title h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.sobre-nos-section .section-title h2 span {
  color: #D4A157;
}
.sobre-nos-section .section-title p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.sobre-nos-section .stats-row {
  margin-top: 60px;
}
.sobre-nos-section .stats-row .stat-box {
  background-color: #D4A157;
  padding: 40px 30px;
  text-align: center;
  color: #ffffff;
  height: 100%;
}
.sobre-nos-section .stats-row .stat-box .stat-number {
  font-size: 64px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.sobre-nos-section .stats-row .stat-box .stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.sobre-nos-section .stats-row .stat-box .stat-description {
  font-size: 13px;
  opacity: 0.9;
}
.sobre-nos-section .stats-row .stat-box .stat-date {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.8;
}
.sobre-nos-section .cta-button {
  text-align: center;
  margin-top: 50px;
}
.sobre-nos-section .cta-button .btn {
  background-color: #6AADAF;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}
.sobre-nos-section .cta-button .btn:hover {
  background-color: rgb(80.3493449782, 147.6419213974, 149.6506550218);
  transform: translateY(-2px);
}

/* ===================================
   SECTION: CASAS AMARELAS (YELLOW HOUSES)
   =================================== */
.casas-amarelas-section {
  padding: 0;
  background-color: #F5F1E8;
}
.casas-amarelas-section .content-wrapper {
  display: flex;
  align-items: stretch;
}
.casas-amarelas-section .content-wrapper .text-content {
  flex: 1;
  padding: 80px 60px;
  background-color: #F5F1E8;
}
.casas-amarelas-section .content-wrapper .text-content h2 {
  font-size: 42px;
  margin-bottom: 30px;
}
.casas-amarelas-section .content-wrapper .text-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.casas-amarelas-section .content-wrapper .text-content .btn {
  margin-top: 30px;
  background-color: #6AADAF;
  color: #ffffff;
  padding: 12px 35px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}
.casas-amarelas-section .content-wrapper .text-content .btn:hover {
  background-color: rgb(80.3493449782, 147.6419213974, 149.6506550218);
}
.casas-amarelas-section .content-wrapper .image-carousel {
  flex: 1;
  background-color: #6AADAF;
  position: relative;
}
.casas-amarelas-section .content-wrapper .image-carousel .slick-slider {
  height: 100%;
}
.casas-amarelas-section .content-wrapper .image-carousel .slick-slider .slick-slide {
  height: 100%;
}
.casas-amarelas-section .content-wrapper .image-carousel .slick-slider .slick-slide .carousel-item {
  height: 100%;
  position: relative;
  cursor: pointer;
}
.casas-amarelas-section .content-wrapper .image-carousel .slick-slider .slick-slide .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.casas-amarelas-section .content-wrapper .image-carousel .slick-slider .slick-slide .carousel-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: #ffffff;
}
.casas-amarelas-section .content-wrapper .image-carousel .slick-slider .slick-slide .carousel-item .overlay h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.casas-amarelas-section .content-wrapper .image-carousel .slick-slider .slick-slide .carousel-item .arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.casas-amarelas-section .content-wrapper .image-carousel .slick-slider .slick-slide .carousel-item:hover .arrow {
  background-color: #D4A157;
  border-color: #D4A157;
}

/* ===================================
   SECTION: QUEM SOMOS (WHO WE ARE)
   =================================== */
.quem-somos-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
}
.quem-somos-section .section-header {
  margin-bottom: 60px;
}
.quem-somos-section .section-header h2 {
  font-size: 52px;
  margin-bottom: 20px;
}
.quem-somos-section .section-header h2 span {
  color: #D4A157;
}
.quem-somos-section .section-header p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
}
.quem-somos-section .content-grid .image-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.quem-somos-section .timeline-highlight {
  background-color: #8B3A3A;
  color: #ffffff;
  padding: 60px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}
.quem-somos-section .timeline-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="120" fill="rgba(255,255,255,0.05)" font-weight="bold">1866</text></svg>');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.quem-somos-section .timeline-highlight .date {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
.quem-somos-section .timeline-highlight h3 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 700;
}
.quem-somos-section .timeline-highlight .founders {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.quem-somos-section .timeline-highlight .founders strong {
  display: block;
  margin-bottom: 10px;
}
.quem-somos-section .timeline-highlight .scroll-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quem-somos-section .timeline-highlight .scroll-icon:hover {
  background-color: #ffffff;
  color: #8B3A3A;
}
.quem-somos-section .policies-section {
  margin-top: 80px;
}
.quem-somos-section .policies-section h3 {
  font-size: 32px;
  margin-bottom: 50px;
}
.quem-somos-section .policies-section .policy-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.quem-somos-section .policies-section .policy-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.quem-somos-section .policies-section .policy-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.quem-somos-section .policies-section .policy-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.quem-somos-section .policies-section .policy-card .btn {
  background-color: transparent;
  color: #6AADAF;
  border: 2px solid #6AADAF;
  padding: 10px 30px;
  font-weight: 600;
  text-transform: uppercase;
}
.quem-somos-section .policies-section .policy-card .btn:hover {
  background-color: #6AADAF;
  color: #ffffff;
}

/* ===================================
   SECTION: O TABACO (TOBACCO)
   =================================== */
.o-tabaco-section {
  padding: 80px 0;
  background-color: #F5F1E8;
}
.o-tabaco-section .hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 60px;
}
.o-tabaco-section .content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.o-tabaco-section .content-wrapper h2 {
  font-size: 48px;
  margin-bottom: 30px;
}
.o-tabaco-section .content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.o-tabaco-section .content-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}
.o-tabaco-section .content-wrapper ul li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
}
.o-tabaco-section .content-wrapper ul li::before {
  content: "→";
  color: #D4A157;
  font-weight: bold;
  margin-right: 10px;
}
.o-tabaco-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 60px;
}
.o-tabaco-section .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.o-tabaco-section .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.o-tabaco-section .gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}
.o-tabaco-section .info-box {
  background-color: #D4A157;
  color: #ffffff;
  padding: 60px;
  margin-top: 60px;
  text-align: center;
}
.o-tabaco-section .info-box h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.o-tabaco-section .info-box p {
  font-size: 16px;
  margin-bottom: 0;
}

/* ===================================
   SECTION: SUSTENTABILIDADE (SUSTAINABILITY)
   =================================== */
.sustentabilidade-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.sustentabilidade-section .hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 60px;
}
.sustentabilidade-section .content-area {
  max-width: 1000px;
  margin: 0 auto;
}
.sustentabilidade-section .content-area h2 {
  font-size: 48px;
  margin-bottom: 30px;
}
.sustentabilidade-section .content-area p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.sustentabilidade-section .content-area h3 {
  font-size: 32px;
  margin: 50px 0 30px;
}
.sustentabilidade-section .image-slider {
  margin: 60px 0;
}
.sustentabilidade-section .image-slider .slick-slide {
  padding: 0 10px;
}
.sustentabilidade-section .image-slider .slick-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.sustentabilidade-section .image-slider .slick-dots {
  bottom: -40px;
}
.sustentabilidade-section .image-slider .slick-dots li button:before {
  color: #6AADAF;
}
.sustentabilidade-section .image-slider .slick-dots li.slick-active button:before {
  color: #D4A157;
}
.sustentabilidade-section .cta-banner {
  background-color: #D4A157;
  color: #ffffff;
  padding: 50px;
  text-align: center;
  margin-top: 80px;
}
.sustentabilidade-section .cta-banner h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.sustentabilidade-section .cta-banner p {
  font-size: 16px;
  margin-bottom: 0;
}
.sustentabilidade-section .reports-section {
  margin-top: 80px;
}
.sustentabilidade-section .reports-section h3 {
  font-size: 32px;
  margin-bottom: 40px;
}
.sustentabilidade-section .reports-section .reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.sustentabilidade-section .reports-section .reports-grid .report-card {
  background-color: #F5F1E8;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sustentabilidade-section .reports-section .reports-grid .report-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.sustentabilidade-section .reports-section .reports-grid .report-card .icon {
  width: 60px;
  height: 60px;
  background-color: #D4A157;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sustentabilidade-section .reports-section .reports-grid .report-card .icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
.sustentabilidade-section .reports-section .reports-grid .report-card .info {
  flex: 1;
}
.sustentabilidade-section .reports-section .reports-grid .report-card .info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.sustentabilidade-section .reports-section .reports-grid .report-card .info p {
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
}

/* ===================================
   SECTION: PRODUTOS (PRODUCTS)
   =================================== */
.produtos-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.produtos-section .hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 60px;
}
.produtos-section .intro-content {
  max-width: 1000px;
  margin: 0 auto 80px;
}
.produtos-section .intro-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
}
.produtos-section .intro-content p {
  font-size: 16px;
  line-height: 1.8;
}
.produtos-section .products-slider {
  position: relative;
}
.produtos-section .products-slider .slick-slide {
  padding: 0 15px;
}
.produtos-section .products-slider .slick-slide .product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.produtos-section .products-slider .slick-slide .product-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.produtos-section .products-slider .slick-slide .product-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 40px 30px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.produtos-section .products-slider .slick-slide .product-card .overlay h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.produtos-section .products-slider .slick-slide .product-card .overlay p {
  font-size: 14px;
  margin-bottom: 20px;
}
.produtos-section .products-slider .slick-slide .product-card .overlay .btn {
  background-color: #6AADAF;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.produtos-section .products-slider .slick-slide .product-card:hover img {
  transform: scale(1.1);
}
.produtos-section .products-slider .slick-slide .product-card:hover .overlay .btn {
  opacity: 1;
  transform: translateY(0);
}
.produtos-section .products-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #D4A157;
  background-color: #ffffff;
  color: #D4A157;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.produtos-section .products-slider .slick-arrow:hover {
  background-color: #D4A157;
  color: #ffffff;
}
.produtos-section .products-slider .slick-arrow.slick-prev {
  left: -25px;
}
.produtos-section .products-slider .slick-arrow.slick-next {
  right: -25px;
}

/* ===================================
   SECTION: GALERIA (GALLERY)
   =================================== */
.galeria-section {
  padding: 80px 0;
  background-color: #F5F1E8;
}
.galeria-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.galeria-section .section-header h1 {
  font-size: 52px;
  margin-bottom: 20px;
}
.galeria-section .section-header h1 span {
  color: #D4A157;
}
.galeria-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.galeria-section .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border-radius: 8px;
}
.galeria-section .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.galeria-section .gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}
.galeria-section .gallery-grid .gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galeria-section .gallery-grid .gallery-item:hover::after {
  opacity: 1;
}
.galeria-section .load-more {
  text-align: center;
}
.galeria-section .load-more .btn {
  background-color: #6AADAF;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}
.galeria-section .load-more .btn:hover {
  background-color: rgb(80.3493449782, 147.6419213974, 149.6506550218);
}
.galeria-section .back-button {
  margin-bottom: 40px;
}
.galeria-section .back-button .btn {
  background-color: #6AADAF;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.galeria-section .back-button .btn:hover {
  background-color: rgb(80.3493449782, 147.6419213974, 149.6506550218);
}

/* ===================================
   SECTION: CONTATOS (CONTACTS)
   =================================== */
.contatos-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.contatos-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.contatos-section .section-header h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.contatos-section .section-header p {
  font-size: 18px;
  color: #666;
}
.contatos-section .contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contatos-section .contact-wrapper .map-container {
  flex: 1;
}
.contatos-section .contact-wrapper .map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}
.contatos-section .contact-wrapper .contact-form-container {
  flex: 1;
  background-color: #F5F1E8;
  padding: 50px;
  border-radius: 8px;
}
.contatos-section .contact-wrapper .contact-form-container h3 {
  font-size: 32px;
  margin-bottom: 30px;
}
.contatos-section .contact-wrapper .contact-form-container .form-group {
  margin-bottom: 20px;
}
.contatos-section .contact-wrapper .contact-form-container .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}
.contatos-section .contact-wrapper .contact-form-container .form-group input,
.contatos-section .contact-wrapper .contact-form-container .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}
.contatos-section .contact-wrapper .contact-form-container .form-group input:focus,
.contatos-section .contact-wrapper .contact-form-container .form-group textarea:focus {
  outline: none;
  border-color: #6AADAF;
}
.contatos-section .contact-wrapper .contact-form-container .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contatos-section .contact-wrapper .contact-form-container .file-upload {
  margin: 30px 0;
  padding: 40px;
  border: 2px dashed #ddd;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contatos-section .contact-wrapper .contact-form-container .file-upload:hover {
  border-color: #6AADAF;
  background-color: rgba(106, 173, 175, 0.05);
}
.contatos-section .contact-wrapper .contact-form-container .file-upload .upload-icon {
  font-size: 48px;
  color: #6AADAF;
  margin-bottom: 15px;
}
.contatos-section .contact-wrapper .contact-form-container .file-upload p {
  margin-bottom: 5px;
  font-weight: 600;
}
.contatos-section .contact-wrapper .contact-form-container .file-upload small {
  color: #999;
}
.contatos-section .contact-wrapper .contact-form-container .btn-submit {
  background-color: #6AADAF;
  color: #ffffff;
  padding: 15px 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contatos-section .contact-wrapper .contact-form-container .btn-submit:hover {
  background-color: rgb(80.3493449782, 147.6419213974, 149.6506550218);
}
.contatos-section .helpdesk-banner {
  background-color: #8B3A3A;
  color: #ffffff;
  padding: 60px;
  margin-top: 80px;
  text-align: center;
  border-radius: 8px;
}
.contatos-section .helpdesk-banner h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
.contatos-section .helpdesk-banner p {
  font-size: 16px;
  margin-bottom: 30px;
}
.contatos-section .helpdesk-banner .btn {
  background-color: #6AADAF;
  color: #ffffff;
  padding: 15px 40px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}
.contatos-section .helpdesk-banner .btn:hover {
  background-color: rgb(80.3493449782, 147.6419213974, 149.6506550218);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background-color: #2B1F1A;
  color: #ffffff;
  padding: 60px 0 30px;
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .footer-content .footer-about .logo {
  margin-bottom: 30px;
}
.site-footer .footer-content .footer-about .logo img {
  max-width: 150px;
}
.site-footer .footer-content .footer-about p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}
.site-footer .footer-content .footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #D4A157;
}
.site-footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-content .footer-links ul li {
  margin-bottom: 12px;
}
.site-footer .footer-content .footer-links ul li a {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.site-footer .footer-content .footer-links ul li a:hover {
  color: #D4A157;
  padding-left: 5px;
}
.site-footer .footer-content .footer-contact h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #D4A157;
}
.site-footer .footer-content .footer-contact .contact-info {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}
.site-footer .footer-content .footer-contact .contact-info p {
  margin-bottom: 10px;
}
.site-footer .footer-content .footer-contact .contact-info p strong {
  display: block;
  margin-bottom: 5px;
}
.site-footer .footer-content .footer-contact .contact-info p a {
  color: #ffffff;
  text-decoration: none;
}
.site-footer .footer-content .footer-contact .contact-info p a:hover {
  color: #D4A157;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .copyright {
  font-size: 13px;
  opacity: 0.8;
}
.site-footer .footer-bottom .social-links {
  display: flex;
  gap: 15px;
}
.site-footer .footer-bottom .social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}
.site-footer .footer-bottom .social-links a:hover {
  background-color: #D4A157;
  border-color: #D4A157;
}

/* ===================================
   TIMELINE HORIZONTAL
   =================================== */
.timeline-horizontal {
  padding: 80px 0;
  background-color: #8B3A3A;
  overflow-x: auto;
  overflow-y: hidden;
}
.timeline-horizontal .timeline-container {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding: 0 50px;
}
.timeline-horizontal .timeline-container .timeline-item {
  width: 400px;
  padding: 40px;
  color: #ffffff;
  position: relative;
}
.timeline-horizontal .timeline-container .timeline-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.2);
}
.timeline-horizontal .timeline-container .timeline-item:last-child::after {
  display: none;
}
.timeline-horizontal .timeline-container .timeline-item .year {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.9;
}
.timeline-horizontal .timeline-container .timeline-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timeline-horizontal .timeline-container .timeline-item p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}
.timeline-horizontal .timeline-container .timeline-item .founders-info {
  margin-top: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timeline-horizontal .timeline-container .timeline-item .founders-info strong {
  display: block;
  margin-bottom: 5px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1199px) {
  .casas-amarelas-section .content-wrapper {
    flex-direction: column;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 991px) {
  .homepage-hero h1 {
    font-size: 48px;
  }
  .section-title h2 {
    font-size: 36px;
  }
  .contatos-section .contact-wrapper {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  }
}
@media (max-width: 767px) {
  .site-header .navbar-brand img {
    max-height: 50px;
  }
  .homepage-hero {
    height: 400px;
  }
  .homepage-hero h1 {
    font-size: 36px;
  }
  .sobre-nos-section .stats-row .stat-box {
    margin-bottom: 20px;
  }
  .quem-somos-section .timeline-highlight {
    padding: 40px 30px;
  }
  .quem-somos-section .timeline-highlight h3 {
    font-size: 32px;
  }
  .footer-content {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .timeline-horizontal .timeline-container .timeline-item {
    width: 300px;
    padding: 30px;
  }
  .timeline-horizontal .timeline-container .timeline-item .year {
    font-size: 52px;
  }
  .products-slider .slick-arrow {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .age-verification-modal .modal-content {
    padding: 40px 20px;
  }
  .age-verification-modal .modal-content h2 {
    font-size: 24px;
  }
  .age-verification-modal .modal-content .buttons {
    flex-direction: column;
  }
  .age-verification-modal .modal-content .buttons .btn {
    width: 100%;
  }
  .casas-amarelas-section .content-wrapper .text-content {
    padding: 40px 30px;
  }
  .contatos-section .contact-form-container {
    padding: 30px 20px;
  }
}
/* ===================================
   UTILITIES
   =================================== */
.btn-primary-custom {
  background-color: #D4A157;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: rgb(197.4597156398, 137.5165876777, 50.5402843602);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background-color: #6AADAF;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-secondary-custom:hover {
  background-color: rgb(80.3493449782, 147.6419213974, 149.6506550218);
  transform: translateY(-2px);
}

.section-padding {
  padding: 80px 0;
}

.text-primary-color {
  color: #D4A157;
}

.text-secondary-color {
  color: #6AADAF;
}

.bg-primary-color {
  background-color: #D4A157;
}

.bg-secondary-color {
  background-color: #6AADAF;
}

.bg-dark-brown {
  background-color: #2B1F1A;
}

.bg-light-beige {
  background-color: #F5F1E8;
}

/*# sourceMappingURL=style.css.map */
