* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-cream: #F5F0E8;
            --color-light-beige: #E8D5B7;
            --color-gold: #D4A574;
            --color-orange: #C07B3A;
            --color-brown: #8B4513;
            --color-dark-brown: #5D2F0A;
            --color-white: #FFFFFF;
            --color-text: #2C1810;
            --color-text-light: #6B4E37;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--color-text);
            background-color: var(--color-cream);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(245, 240, 232, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--color-brown);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-text);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--color-orange);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--color-brown);
        }

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc0 50%, #d4c4a0 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    color: #654321;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.4);
    background: linear-gradient(45deg, #CD853F, #D2691E);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.about-image {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 
      0 15px 35px rgba(0, 0, 0, 0.1),
      0 5px 15px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.about-image::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #d4a574;
  border-radius: 12px;
  background: linear-gradient(45deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.05));
}
.about-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.15),
      0 10px 25px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Mobile */
@media (max-width: 480px) {
  .about-image {
      width: 200px;
      height: 200px;
      margin: 30px auto;
      padding: 12px;
      border-radius: 18px;
  }
  
  .about-image::before {
      top: 8px;
      left: 8px;
      right: 8px;
      bottom: 8px;
      border-radius: 10px;
  }
  
  .about-image img {
      object-fit: contain;
      border-radius: 8px;
      padding: 10px;
      background: rgba(255, 255, 255, 0.8);
  }
}



/* Responsivo para mobile */
@media (max-width: 768px) {
    .about-image {
        max-width: 200px; /* menor no mobile */
        margin: 0 auto; /* centraliza no mobile */
    }
}

@media (max-width: 480px) {
    .about-image {
        max-width: 150px; /* ainda menor em telas muito pequenas */
    }
}

.product-icon {
    width: 80px;
    height: 60px; /* proporção aproximada da sua imagem */
    border-radius: 40px/30px; /* cria um formato oval específico */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mantém a proporção da imagem */
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.05);
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .decoration-circle {
        opacity: 0.3;
    }
    
    .circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .circle-3 {
        width: 100px;
        height: 100px;
    }
}
        
        /* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    background: radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
}

.hero::after {
    display: none;
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) translateX(10px) rotate(2deg); 
    }
    50% { 
        transform: translateY(-25px) translateX(0px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-10px) translateX(-10px) rotate(-2deg); 
    }
}

@keyframes slowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--color-brown);
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-brown), transparent);
    border-radius: 2px;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: var(--color-text-light);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

.hero-decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(29, 23, 16, 0.1);
    border-radius: 50%;
    animation: floatElements 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: -5s;
    background: rgba(44, 29, 15, 0.08);
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 15%;
    animation-delay: -10s;
    background: rgba(139, 69, 19, 0.06);
}

@keyframes floatElements {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) scale(1.1); 
        opacity: 0.6;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .hero::after {
        width: 120px;
        height: 120px;
        top: 5%;
        right: 5%;
    }
    
    .floating-element {
        display: none; /* Oculta elementos decorativos em mobile para melhor performance */
    }
}

@media (max-width: 480px) {
    .hero-content {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
    }
}

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, var(--color-orange), var(--color-gold));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--color-brown);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, var(--color-orange), var(--color-gold));
            border-radius: 2px;
        }

        /* About Section */
        .about {
            background: var(--color-white);
            margin: 0;
            max-width: 100%;
            padding: 100px 2rem;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            color: var(--color-brown);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--color-text-light);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, var(--color-light-beige), var(--color-gold));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--color-brown);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Products Section */
        .products {
            background: var(--color-cream);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .product-card {
            background: var(--color-white);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(45deg, var(--color-orange), var(--color-gold));
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .product-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--color-light-beige), var(--color-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--color-brown);
        }

        .product-card h3 {
            color: var(--color-brown);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .product-card p {
            color: var(--color-text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .learn-more {
            background: linear-gradient(45deg, var(--color-orange), var(--color-gold));
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .learn-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
        }
.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.product-card.expanded {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 10;
}

.product-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
}

.product-details.show {
    max-height: 1000px;
    opacity: 1;
    margin-top: 2rem;
}

.product-info {
    text-align: left;
    margin-bottom: 2rem;
}

.product-info h4 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #D2691E;
    padding-bottom: 0.5rem;
}

.product-info p {
    color: #654321;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-info ul {
    list-style: none;
    padding: 0;
}

.product-info ul li {
    color: #654321;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.product-info ul li::before {
    content: '🍪';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.nutritional-info {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.nutritional-info h4 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.nutritional-info p {
    text-align: center;
    color: #654321;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.nutrition-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0d5c0;
    font-size: 0.95rem;
}

.nutrition-row:last-child {
    border-bottom: none;
}

.nutrition-row span:first-child {
    color: #654321;
    font-weight: 500;
}

.nutrition-row span:last-child {
    color: #8B4513;
    font-weight: 600;
}

.learn-more {
    background: linear-gradient(45deg, #D2691E, #CD853F);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.learn-more:hover {
    background: linear-gradient(45deg, #CD853F, #D2691E);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

.learn-more.active {
    background: linear-gradient(45deg, #8B4513, #654321);
}

.learn-more.active::after {
    content: ' ▲';
}

.learn-more:not(.active)::after {
    content: ' ▼';
}

/* Responsividade */
@media (max-width: 768px) {
    .product-card.expanded {
        transform: none;
    }
    
    .nutritional-info {
        padding: 1rem;
    }
    
    .nutrition-row {
        font-size: 0.9rem;
    }
    
    .product-info h4 {
        font-size: 1.1rem;
    }
}
        /* Quality Section */
        .quality {
            background: var(--color-white);
            margin: 0;
            max-width: 100%;
            padding: 100px 2rem;
        }

        .quality-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .quality-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .quality-feature {
            text-align: center;
            padding: 2rem;
        }

        .quality-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--color-light-beige), var(--color-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--color-brown);
        }

        .quality-feature h4 {
            color: var(--color-brown);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .quality-feature p {
            color: var(--color-text-light);
            font-size: 0.95rem;
        }

        /* Coverage Section */
        .coverage {
            background: var(--color-cream);
        }

        /* Código Novo - Cole em seu style.css substituindo o anterior */
.coverage-grid {
    display: grid;
    /* Define explicitamente 6 colunas, forçando os itens a ficarem em uma linha */
    grid-template-columns: repeat(6, 1fr);
    /* Opcional: Reduzir o espaçamento para caber melhor na tela */
    gap: 1.5rem;
    margin-top: 3rem;
}

        .coverage-item {
            background: var(--color-white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .coverage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .coverage-item i {
            font-size: 2rem;
            color: var(--color-orange);
            margin-bottom: 1rem;
        }

        .coverage-item h4 {
            color: var(--color-brown);
            margin-bottom: 0.5rem;
        }

        .coverage-item p {
            color: var(--color-text-light);
            font-size: 0.9rem;
        }

        /* Testimonials Section */
        .testimonials {
            background: var(--color-white);
            margin: 0;
            max-width: 100%;
            padding: 100px 2rem;
        }

        .testimonials-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: var(--color-cream);
            padding: 2rem;
            border-radius: 15px;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--color-gold);
            font-family: serif;
        }

        .testimonial p {
            color: var(--color-text-light);
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            color: var(--color-brown);
            font-weight: 600;
        }

        .how-we-work {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(139, 69, 19, 0.1);
}

.distribution-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.1);
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    border-color: #D2691E;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #D2691E, #CD853F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(210, 105, 30, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f6f0, #f0ede5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    border: 3px solid rgba(139, 69, 19, 0.1);
}

.step-icon i {
    font-size: 1.8rem;
    color: #8B4513;
}

.flow-step h4 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.flow-step p {
    color: #654321;
    line-height: 1.5;
    font-size: 0.95rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #D2691E;
    margin: 0 1rem;
}

.distribution-benefits {
    margin-top: 4rem;
}

.benefits-title {
    text-align: center;
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #fff 0%, #f8f6f0 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D2691E, #CD853F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 15px rgba(210, 105, 30, 0.3);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h4 {
    color: #8B4513;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #654321;
    line-height: 1.5;
    font-size: 0.95rem;
}

.distributor-cta {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.cta-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-secondary {
    display: inline-block;
    background: white;
    color: #8B4513;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .distribution-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .flow-step {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .distributor-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .benefits-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .flow-step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

        /* Contact Section */
.contact {
    background: var(--color-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--color-brown);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--color-orange), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.contact-item div h4 {
    color: var(--color-brown);
    margin-bottom: 0.2rem;
}

.contact-item div p {
    color: var(--color-text-light);
    margin: 0;
}

/* WhatsApp Section */
.whatsapp-section {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
}

.whatsapp-section h3 {
    color: var(--color-brown);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whatsapp-section .subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 1rem;
    text-align: left;
}

.features-list li i {
    color: var(--color-orange);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, var(--color-orange), var(--color-gold));
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(45deg, var(--color-gold), var(--color-orange));
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.business-hours {
    background: var(--color-cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--color-orange);
    text-align: left;
}

.business-hours h4 {
    color: var(--color-brown);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours h4 i {
    color: var(--color-orange);
}

.business-hours p {
    color: var(--color-text-light);
    margin: 0.3rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whatsapp-section {
        padding: 2rem 1.5rem;
    }
    
    .features-list li {
        justify-content: center;
        text-align: center;
    }
}

        /* Footer */
        /* Reset básico para garantir largura total */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

/* Footer ocupa toda a largura da tela */
footer {
    width: 100vw;
    background: #7b4a21; /* Marrom escuro, ajuste se quiser */
    color: #ffe3b0;      /* Bege claro para o texto */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    border-top: 2px solid #5a3317; /* Linha superior opcional */
}

/* Conteúdo centralizado e flexível */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
}

/* Cada coluna do footer */
.footer-section {
    flex: 1 1 180px;
    margin: 10px 20px;
    min-width: 180px;
}

.footer-section h3 {
    color: #ffe3b0;
    margin-bottom: 15px;
    font-size: 1.15em;
    font-weight: bold;
}

.footer-section p,
.footer-section a {
    color: #ffe3b0;
    text-decoration: none;
    margin: 6px 0;
    display: block;
    font-size: 1em;
}

.footer-section a:hover {
    color: #fff7e6;
    text-decoration: underline;
    transition: color 0.2s;
}

/* Ícones sociais */
.social-links {
    margin-top: 18px;
}

.social-links a {
    color: #ffe3b0;
    font-size: 1.5em;
    margin-right: 18px;
    display: inline-block;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #fff7e6;
}

/* Rodapé inferior */
.footer-bottom {
    border-top: 1px solid #a97c50;
    text-align: center;
    padding: 12px 0;
    font-size: 0.95em;
    color: #ffe3b0;
    background: #6b3f1d;
    letter-spacing: 0.02em;
}
/* quem somos*/


/* Estilos elegantes para a seção Quem Somos */
.about-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    font-size: 2.8rem;
    color: #8B4513;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #D2691E, #CD853F);
    margin: 1.5rem auto;
    border-radius: 1px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.story-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(139, 69, 19, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D2691E, #CD853F);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.card-number {
    font-size: 1.2rem;
    color: #D2691E;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: 40px;
    height: 40px;
    border: 2px solid #D2691E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.card-year {
    font-size: 1.4rem;
    color: #8B4513;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1));
    border-radius: 25px;
    display: inline-block;
}

.card-crown {
    font-size: 2rem;
    color: #CD853F;
    margin-bottom: 1.5rem;
    display: block;
}

.card-title {
    font-size: 1.3rem;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: justify;
    font-weight: 400;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.milestone-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.02), rgba(210, 105, 30, 0.02));
}

.milestone-card .card-title {
    color: #8B4513;
}

.final-card {
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.05), rgba(222, 184, 135, 0.05));
}

.final-card .card-title {
    color: #CD853F;
}

.story-card:hover .card-number {
    background: #D2691E;
    color: white;
    transform: scale(1.1);
}

.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f6f0 0%, #f5f3ed 100%);
    position: relative;
    overflow: hidden;
}

.about::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"><circle cx="50" cy="50" r="2" fill="%23D2691E" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #D2691E, #8B4513, #CD853F);
    border-radius: 2px;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #D2691E 0%, #8B4513 50%, #CD853F 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.6s; }
.timeline-item:nth-child(5) { animation-delay: 0.8s; }
.timeline-item:nth-child(6) { animation-delay: 1s; }

.timeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Controle específico da alternância */
.timeline-item.right-text .timeline-content {
    direction: rtl;
}

.timeline-item.right-text .timeline-text {
    direction: ltr;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #8B4513, #654321);
    border: 5px solid #f8f6f0;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(139, 69, 19, 0.4);
    z-index: 10;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B4513, #654321);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    z-index: 5;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.timeline-text {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #D2691E;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.timeline-text h3 {
    color: #8B4513;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    position: relative;
}

.timeline-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #D2691E;
    border-radius: 1px;
}

.timeline-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    font-family: 'Georgia', serif;
}
.timeline-image {
    position: relative; /* Manter se precisar de elementos posicionados dentro */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    /* height: 350px; <-- REMOVA ESTA LINHA */
    /* display: flex; /* Adicione se quiser centralizar imagens menores */
    /* align-items: center; */
    /* justify-content: center; */
}

.timeline-image:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Apply frame to all timeline images */
.timeline-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    filter: blur(0px); /* Ensure no blur */
    transition: filter 0.4s ease-in-out;
    border: 8px solid var(--color-white); /* White border as frame */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    padding: 5px; /* Inner spacing for the frame */
}

/* New styles for the 'Hoje' section images to create a grid */
.timeline-images-today {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns, equal width */
    gap: 20px; /* Space between images */
    padding: 10px; /* Add some padding around the grid if needed */
}

/* Ensure individual image containers within the grid behave correctly */
.timeline-images-today .timeline-image {
    width: 100%; /* Make each image container fill its grid cell */
    height: 180px; /* Set a fixed height for uniformity, adjust as needed */
    display: flex; /* Use flexbox to center the image vertically and horizontally */
    align-items: center;
    justify-content: center;
    /* Remove any conflicting styles that might break the frame */
    border-radius: 20px; /* Maintain rounded corners on the container */
    overflow: hidden; /* Hide any overflow if image doesn't fit */
    box-shadow: none; /* Remove redundant shadow from container if it exists */
    transition: none; /* Remove redundant transition from container if it exists */
}

/* Adjust image inside the specific 'Hoje' grid to fit */
.timeline-images-today .timeline-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure the image fits without cropping */
}

/* Responsive adjustments for the 'Hoje' grid */
@media (max-width: 768px) {
    .timeline-images-today {
        grid-template-columns: 1fr; /* Stack images in a single column on smaller screens */
        gap: 15px; /* Slightly less gap for mobile */
    }
    .timeline-images-today .timeline-image {
        height: 220px; /* Adjust height for better mobile viewing */
    }
}

.timeline-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    filter: blur(0px);
    transition: filter 0.4s ease-in-out;
    /* Updated border for brown, imperial look */
    border: 12px solid #8B4513; /* Saddle Brown - a classic brown */
    /* Enhanced shadow for depth */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    padding: 5px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0e6d2, #e8dcc0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #8B4513;
    font-weight: bold;
    font-size: 1.1rem;
    border: 3px dashed #D2691E;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-left: 80px;
    }
    
    .timeline-item.right-text .timeline-content {
        direction: ltr;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .timeline-text {
        padding: 30px;
    }
    
    .timeline-text h3 {
        font-size: 1.4rem;
    }
    
    .timeline-text p {
        font-size: 1rem;
    }
    
    .timeline-image {
        height: 250px;
    }
    
    .image-placeholder {
        font-size: 0.95rem;
    }
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 480px) {
    .about {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .timeline-content {
        margin-left: 60px;
    }
    
    .timeline-text {
        padding: 25px;
    }
    
    .timeline-text h3 {
        font-size: 1.2rem;
    }
    
    .timeline-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .timeline-image {
        height: 200px;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-text {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .story-card {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.95rem;
    }
}

/* Grid de Cidades - 3 linhas fixas */
.city-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

.city-item {
  text-align: center;
  padding: 1.2rem 1rem;
  background: var(--color-cream);
  border-radius: 10px;
  border-left: 4px solid var(--color-orange);
  transition: all 0.3s ease;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.15);
  border-left-width: 6px;
}

.city-item strong {
  color: var(--color-brown);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}


/* Reset e configuração do body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

/* Conteúdo principal deve ocupar o espaço restante */
.main-content {
    flex: 1;
}

/* Estilos do footer */
footer {
    background-color: #8B4513;
    color: white;
    padding: 40px 0 0 0;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px 30px 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #F4E4C1;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    color: #F4E4C1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    font-size: 1.5em;
    color: #F4E4C1;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px 20px 15px;
    }
    
    footer {
        padding: 30px 0 0 0;
    }
}


/* Responsividade */
@media (max-width: 768px) {
  .city-grid {
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
  }
  
  .city-item {
    padding: 1rem 0.8rem;
    min-height: 55px;
  }
  
  .city-item strong {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .city-grid {
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row;
    gap: 0.8rem;
    max-width: 400px;
  }
  
  .city-item {
    padding: 1rem;
    min-height: 50px;
  }
}


/* Responsividade para telas pequenas */
@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 10px 10px 10px;
    }
    .footer-section {
        margin: 10px 0;
        min-width: 100px;
    }
}

/* Correção para @media (max-width: 480px) */
@media (max-width: 480px) {
    /* ... outras regras ... */
    .timeline-image {
        height: auto; /* Permite que a imagem se ajuste proporcionalmente */
    }
    /* ... outras regras ... */
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section {
                padding: 60px 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .quality-features {
                grid-template-columns: 1fr;
            }

            .coverage-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .coverage-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animation for scroll reveal */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /*missao, visao e valores*/

.mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.mvv-card {
    background: #f5f1eb;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(139, 116, 102, 0.15);
    border: 1px solid #e6ddd4;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 116, 102, 0.25);
    border-color: #d4c4b0;
}
.mvv-icon {
    width: 65px; /* Aumenta a largura da imagem */
    height: 65px; /* Aumenta a altura da imagem */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* Remove o fundo marrom */
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon-img {
    width: 100%; /* Make image take full width of its container */
    height: 100%; /* Make image take full height of its container */
    object-fit: contain; /* IMPORTANT: Ensures the entire image is visible, scaling it down if necessary */
    /* REMOVE or comment out the line below if your images are colored and you want them to display in their original colors */
    /* filter: brightness(0) invert(1); */
}

/* Correção para @media (max-width: 768px) */
@media (max-width: 768px) {
    /* ... outras regras ... */
    .timeline-image {
        height: auto; /* Garante que a altura seja automática */
        margin-bottom: 20px; /* Adiciona um espaçamento se necessário */
    }
    /* ... outras regras ... */
}

.mvv-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    background: #f5f1eb;
    position: relative;
}

.mvv-header h3 {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 700;
    color: #5d4e37;
    margin: 0;
    letter-spacing: -0.025em;
}

.expand-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #8b7466;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

.expand-btn:hover {
    color: #5d4e37;
    background: rgba(139, 116, 102, 0.1);
}

.mvv-card.expanded .expand-btn {
    transform: rotate(180deg);
}

.mvv-content {
    background: #faf8f5;
    border-top: 1px solid #e6ddd4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mvv-card.expanded .mvv-content {
    max-height: 600px;
}

.mvv-content p {
    padding: 2rem;
    line-height: 1.7;
    color: #6b5b4f;
    margin: 0;
    font-size: 1rem;
}

.mvv-content ul {
    list-style: none;
    padding: 1.5rem 2rem 2rem;
    margin: 0;
}

.mvv-content li {
    padding: 1rem 0;
    border-bottom: 1px solid #e6ddd4;
    color: #6b5b4f;
    line-height: 1.6;
    font-size: 1rem;
}

.mvv-content li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mvv-content li strong {
    color: #5d4e37;
    font-weight: 600;
}

/* Animação suave para aparecer */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mvv-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .mvv-header {
        padding: 1.5rem;
    }
    
    .mvv-content p {
        padding: 1.5rem;
    }
    
    .mvv-content ul {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    /* CÓDIGO CORRIGIDO PARA COLOCAR DENTRO DO @media (max-width: 768px) */

.mvv-icon {
    width: 60px; /* Tamanho ajustado para mobile */
    height: 60px;
}
.icon-img {
    width: 100%; /* CORREÇÃO: Faz a imagem preencher o espaço acima */
    height: 100%;
}
    
    .mvv-header h3 {
        font-size: 1.25rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .mvv-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .mvv-card {
        padding: 2rem;
    }
    
    .mvv-icon {
        width: 70px;
        height: 70px;
    }
    
    .mvv-icon i {
        font-size: 1.8rem;
    }
    
    .mvv-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mvv-card {
        padding: 1.5rem;
    }
    
    .mvv-icon {
        width: 60px;
        height: 60px;
    }
    
    .mvv-icon i {
        font-size: 1.5rem;
    }
}


