/* Reset and Base Styles */
:root {
    --primary-color: #2D9B38;
    --primary-hover: #227c2c;
    --text-light: #ffffff;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --bg-dark: #0A2E16;
    --bg-light: #F8F9FA;
    --font-family: 'Inter Tight', sans-serif;
}

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

/* Lenis Smooth Scroll Styles */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 12px 0;
    background-color: #154A1C;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 36px;
}

.main-nav a {
    position: relative;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 6px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #8CE097; /* Verde claro vibrante para contraste */
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8CE097;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background-color: var(--text-light);
}

/* Mega Menu */
.main-nav > ul > li.has-mega-menu {
    /* Required to position mega-menu properly if not full width, but here we want full width relative to header */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #113c1c; /* Lighter dark green matching header/products area */
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-nav > ul > li.has-mega-menu {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.main-nav > ul > li.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.mega-menu .products-grid-container {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 0;
}

.mega-menu .products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.mega-menu .product-category-card {
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 16px;
}

.mega-menu .product-category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(140, 224, 151, 0.3); /* green highlight */
}

.mega-menu .product-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

.mega-menu .product-category-card:hover .product-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
}

.mega-menu .product-category-card span {
    font-size: 1rem;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%), url('../img/bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

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

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

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Categories Section */
.categories-section {
    position: relative;
    z-index: 10;
    padding: 40px 0 60px;
}

.categories-box {
    /* Removed large white box style */
}

.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #154A1C;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.category-card {
    display: block;
    text-align: center;
    background-color: #F4F5F7;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}

.category-img {
    width: 100%;
    padding-top: 90.9%; /* 1:1.1 aspect ratio */
    position: relative;
    overflow: hidden;
    background-color: #E5E7EB; /* Placeholder color just in case image takes time to load */
}

.category-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding: 14px 10px;
    width: 100%;
    background-color: #F4F5F7;
}

.slider-dots {
    display: none;
}

.divider {
    border: 0;
    height: 1px;
    background-color: #eaeaea;
    margin-bottom: 30px;
}

.benefits-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.benefit-item svg {
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-muted);
    font-weight: 500;
}

/* About Section (Quem Somos) */
.about-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header .badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(45, 155, 56, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-card h3 svg {
    color: var(--primary-color);
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.values-section {
    margin-bottom: 80px;
}

.section-subtitle-small {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-dark);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-item {
    background: transparent;
    border: none;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-item:hover .value-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 15px 35px rgba(45, 155, 56, 0.2);
}

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.team-section {
    background-color: var(--bg-light);
    border-radius: 24px;
    padding: 60px 40px;
    border: 1px solid rgba(0,0,0,0.03);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.team-member-img {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    margin: 0; 
    border-radius: 0; 
    border: none; 
    box-shadow: none;
    z-index: 1;
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-member:hover .team-member-img img {
    transform: scale(1.08);
}

.team-member::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(to top, rgba(10,46,22,0.95) 0%, rgba(10,46,22,0.5) 50%, rgba(10,46,22,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.team-member h4 {
    position: relative;
    z-index: 3;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    padding: 0 24px;
}

.team-member p {
    position: relative;
    z-index: 3;
    font-size: 0.95rem;
    color: #8CE097;
    font-weight: 500;
    margin: 0;
    padding: 0 24px 24px;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #8CE097 !important;
}

.text-white {
    color: var(--text-light) !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.products-grid-container {
    background-color: #113c1c; /* slightly lighter than bg-dark */
    border-radius: 30px;
    padding: 50px;
    box-shadow: inset 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product-category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #f8fff9;
}

.product-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f0f7f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.product-category-card:hover .product-icon-wrap {
    transform: scale(1.1);
    background: #e2f0e4;
    border-color: rgba(45, 155, 56, 0.2);
}

.product-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.product-category-card span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.products-info-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px 32px;
}

.products-info-banner .info-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(45, 155, 56, 0.3);
}

.products-info-banner p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.products-info-banner strong {
    color: #8CE097;
}

/* Inspirations Section */
.inspirations-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.inspiration-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.inspiration-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.inspiration-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.inspiration-gallery {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.3fr;
    grid-template-rows: 180px 180px;
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gallery-item.item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.inspiration-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.inspiration-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--bg-dark);
}

.inspiration-list li svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.btn-large {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 600;
    background-color: var(--bg-dark);
    border-color: var(--bg-dark);
    text-align: center;
}

.btn-large.btn:hover {
    background-color: #113c1c;
    border-color: #113c1c;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(45, 155, 56, 0.3);
}

.btn-outline:hover {
    background-color: rgba(45, 155, 56, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-secondary {
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.blog-featured {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.blog-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.blog-featured-img {
    height: 280px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-img img {
    transform: scale(1.05);
}

.blog-featured-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.blog-featured-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-featured-excerpt {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 5px 20px rgba(0,0,0,0.01);
}

.blog-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: rgba(45, 155, 56, 0.2);
}

.blog-item-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}

.blog-item-content {
    flex-grow: 1;
}

.blog-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-footer {
    text-align: center;
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary {
    list-style: none;
}

.faq-question {
    padding: 24px 30px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fff9;
    color: var(--primary-color);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item[open] {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(45, 155, 56, 0.08);
}

.faq-item[open] .faq-question {
    color: var(--primary-color);
    background-color: #f8fff9;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px 24px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    animation: fadeInDown 0.3s ease forwards;
}

.faq-answer p {
    margin: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-more {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section (Bento Box) */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.contact-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--bg-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

/* Info Card */
.info-card {
    grid-column: 1 / 3;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: var(--bg-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f0f7f1;
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    color: var(--bg-dark);
    font-size: 1.05rem;
}

.contact-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Form Card */
.form-card {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    background: var(--bg-dark);
    color: #ffffff;
}

.form-card h3 {
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.1);
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Hours Card */
.hours-card {
    grid-column: 1 / 2;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-list span {
    color: var(--text-muted);
}

.hours-list strong {
    color: var(--primary-color);
}

/* Map Card */
.map-card {
    grid-column: 2 / 3;
    padding: 0;
    overflow: hidden;
    min-height: 250px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.5) contrast(1.1);
}

/* Footer Section */
.site-footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 24px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    background-color: rgba(45, 155, 56, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 10px;
    border: 1px solid rgba(45, 155, 56, 0.3);
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.developed-by {
    display: flex;
    align-items: center;
    gap: 12px;
}

.developed-by span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.developed-by img {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.developed-by img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefits-row {
        flex-wrap: wrap;
    }
    .benefit-item {
        min-width: 45%;
        margin-bottom: 15px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .values-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid-container {
        padding: 30px;
    }
    
    .inspiration-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .contact-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .info-card, .form-card, .hours-card, .map-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .map-card {
        height: 300px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-nav { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 46, 22, 0.98); /* Fundo verde super escuro com opacidade */
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 99;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .main-nav a {
        font-size: 1.6rem;
        font-weight: 600;
    }

    .mobile-menu-btn { 
        display: flex; 
        z-index: 100;
    }
    
    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 2.2rem; }
    
    .hero-background {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0) 100%), url('../img/bg.png');
    }
    
    .hero-buttons { 
        flex-direction: column; 
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .categories-section { 
        margin-top: 0; 
        padding: 40px 0; 
    }
    
    .categories-box { 
        padding: 0; 
    }
    
    .section-title {
        text-align: center;
    }
    
    .categories-grid { 
        display: flex; 
        flex-wrap: nowrap; 
        overflow-x: auto; 
        gap: 12px;
        padding-bottom: 5px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .categories-grid::-webkit-scrollbar { display: none; }
    
    .category-card { 
        min-width: 120px;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
    
    .category-card h3 {
        font-size: 0.8rem;
        padding: 10px 4px;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    
    .slider-dots .dot {
        width: 6px;
        height: 6px;
        background-color: #C4C4C4;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .slider-dots .dot.active {
        background-color: #154A1C;
        width: 16px;
        border-radius: 4px;
    }
    
    .benefits-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .benefit-item { 
        width: 100%;
        background-color: #ffffff;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        border: 1px solid #E5E7EB;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .benefit-item span {
        font-size: 0.75rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .values-grid, .team-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .team-section {
        padding: 40px 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .products-grid-container {
        padding: 10px 0; /* Menos separação nas bordas no mobile */
        border-radius: 20px;
        margin: 0 -10px; /* Para as categorias ocuparem melhor a tela */
    }
    
    .inspiration-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item.item-tall {
        grid-column: span 2;
        height: 250px;
    }
    .gallery-item {
        height: 160px;
    }
    .inspiration-card {
        padding: 30px 20px;
    }
    
    .blog-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-item-img {
        width: 100%;
        height: 160px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
    }
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .products-info-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-bento {
        display: block; /* Garante que não estoure largura no mobile */
    }
    
    .contact-card {
        padding: 24px;
        margin-bottom: 20px;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-card.info-card {
        overflow: visible; /* Necessário para as margens negativas do scroll horizontal funcionarem aqui */
    }
    
    .contact-methods {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        margin: 0 -24px;
        padding: 0 24px 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        width: calc(100% + 48px); /* Força a largura para compensar as margens negativas sem estourar o pai flex */
    }
    
    .contact-methods::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }
    
    .contact-method {
        flex: 0 0 220px;
        scroll-snap-align: start;
        flex-direction: row; 
        background: #f9fafb;
        padding: 12px;
        border-radius: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .blog-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        margin: 0 -20px;
        padding: 0 20px 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        grid-template-columns: none; 
        width: calc(100% + 40px); /* Força a largura para compensar as margens negativas */
    }
    
    .blog-list::-webkit-scrollbar {
        display: none;
    }
    
    .blog-item {
        flex: 0 0 260px;
        scroll-snap-align: center;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    color: white;
}

/* Footer Bottom e Developer Credit */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    margin-top: 40px;
    font-size: 0.875rem;
    color: var(--text-light-muted);
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.developer-credit span {
    font-size: 0.875rem;
    color: var(--text-light-muted);
}

.dev-logo {
    max-height: 24px; /* Limita o tamanho da logo */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
