

        :root {
            --verde: #28a745;
            --amarelo: #ffdd57;
            --vermelho: #e63946;
            --laranja: #ff7b00;
            --branco: #ffffff;
            --gradiente: linear-gradient(90deg, #e63946, #ff7b00, #28a745);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            /* texto base */
        }

        h1,
        h2,
        h3 {
            font-family: 'Montserrat', sans-serif;
            /* títulos */
            font-weight: 700;
        }

        p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 400;
        }

        nav ul li a {
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.5;
            color: #333;
            background: #fff;
        }

        header {
            width: 100%;
            background: var(--branco);
            display: grid;
            grid-template-columns: auto 1fr auto;
            /* logo | menu | idiomas */
            align-items: center;
            padding: 15px 50px;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }

        header .logo {
            max-height: 60px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 15px;
        }

        .nav {
            display: flex;
            justify-content: center;
            /* CENTRALIZA MENU */
        }

        nav ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            border-radius: 30px;
            color: #000000;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }


        nav ul li a:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
            background-color: white;
            background: linear-gradient(200deg, #f78707e5, #ff2121, #32be16);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border: black solid 1px;
            border-radius: 30px;

        }

        nav ul li a i {
            margin-right: 8px;
            color: #fff;
            /* cor do ícone */
        }

        /* ===== BOTÃO MENU (HAMBURGUER) ===== */
        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }

        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 768px) {
            header .nav {
                display: none;
                position: absolute;
                top: 70px;
                right: 20px;
                background: #fff;
                box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
                border-radius: 12px;
            }

            header .nav ul {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }

            .menu-toggle {
                display: block;
            }

            header.active .nav {
                display: block;
            }
        }


        /* HERO SECTION */
        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            padding-top: 140px;
            background:
                linear-gradient(120deg, rgba(230, 57, 70, 0.35), rgba(255, 123, 0, 0.3), rgba(40, 167, 69, 0.3)),
                url("fundo1.png") center center / cover no-repeat;

            box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.15);
        }


        /* Conteúdo dentro do hero */
        .hero-content {
            max-width: 900px;
            padding: 2rem 2.5rem;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 20px;
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }




        .hero-logo {
            max-width: 300px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 24px;
            font-weight: 500;
            max-width: 800px;
            /* limita largura para boa leitura */
            margin-bottom: 20px;
        }

        /* Botão */
        .hero .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #34a853;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .hero .btn:hover {
            background: #2b8442;
        }

        /* ------------------ */
        /* Responsividade */
        /* ------------------ */

        /* Tablets */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
        }

        /* Celulares */
        @media (max-width: 768px) {
            .hero {
                padding: 1.5rem;
                min-height: 90vh;
            }

            .hero-content {
                padding: 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        /* Extra pequeno (até 480px) */
        @media (max-width: 480px) {
            .hero {
                min-height: 80vh;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .hero .btn {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
        }

        .sobre {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 10%;
            gap: 60px;
            flex-wrap: wrap;
            /* deixa responsivo */
        }

        .sobre div {
            flex: 1;
            min-width: 300px;
        }

        .sobre h2 {

            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-weight: 500;
            /* deixa bem grosso */
            font-size: 45px;
            color: black;

        }

        /* ===== SEÇÃO PARCEIROS ===== */

        .parceiros {
            padding: 80px 10%;
            text-align: center;
            background: linear-gradient(120deg, rgba(230, 57, 70, 0.6), rgba(255, 123, 0, 0.55), rgba(40, 167, 69, 0.55));
            color: rgb(0, 0, 0);
        }

        .parceiros h2 {
            font-size: 45px;
            margin-bottom: 20px;
        }

        .texto-parceiros {
            max-width: 900px;
            margin: 0 auto 40px auto;
            font-size: 20px;
            line-height: 1.7;
        }

        /* LOGOS PEQUENAS */
        .logos-parceiros {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 50px;
            column-gap: 150px;
            margin-bottom: 70px;
            align-items: center;
        }

        .logos-parceiros img {
            max-width: 240px;
            margin: 0 auto;
            filter: grayscale(100%);
            transition: 0.3s ease;
        }

        .logos-parceiros img:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* DESTAQUE AGRODAN */
        .agrodan-destaque {
            background: rgb(255, 255, 255);
            color: #333;
            padding: 50px;
            border-radius: 20px;
        }

        .agrodan-destaque h3 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .agrodan-destaque p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* GRID 500x500 */
        .grid-agrodan {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .grid-agrodan img {
            width: 100%;
            aspect-ratio: 1 / 1;
            /* 🔥 garante formato 500x500 */
            object-fit: cover;
            border-radius: 15px;
            transition: 0.3s ease;
        }

        .grid-agrodan img:hover {
            transform: scale(1.03);
        }

        /* ===== RESPONSIVO MOBILE ===== */
        @media (max-width: 768px) {

            .parceiros {
                padding: 50px 5%;
            }

            .parceiros h2 {
                font-size: 30px;
            }

            .texto-parceiros {
                font-size: 16px;
            }

            .logos-parceiros {
                gap: 30px;
            }

            .logos-parceiros img {
                max-width: 200px;
            }

            .agrodan-destaque {
                padding: 30px 20px;
            }

            .agrodan-destaque h3 {
                font-size: 26px;
            }

            .agrodan-destaque p {
                font-size: 16px;
            }

            .grid-agrodan {
                grid-template-columns: 1fr;
            }

        }

        .sobre p {
            font-size: 22px;
            text-align: justify;
            line-height: 1.8;
            margin-bottom: 15px;
            color: rgb(0, 0, 0);
        }

        .sobre img {
            flex: 1;
            max-width: 750px;
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
            object-fit: cover;
        }

        /* Estilo do bloco Tradição */
        .tradicao-inovacao {
            margin-top: 50px;
        }

        .conteudo-tradicao {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            /* responsivo */
        }

        .conteudo-tradicao img {
            width: 45%;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .tradicao-inovacao h3 {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-weight: 500;
            /* deixa bem grosso */
            font-size: 45px;
            color: black;
        }

        .texto-tradicao {
            flex: 1;
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .cards-tradicao {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cards-tradicao p {
            text-align: center;
        }

        .cards-tradicao h4 {
            text-align: center;
            font-size: 24px;
            font-weight: bolder;
        }

        .cards-tradicao i {
            font-size: 48px;
            /* aumenta o tamanho do ícone */
            display: block;
            /* garante que seja tratado como bloco */
            margin: 0 auto 10px auto;
            /* centraliza horizontalmente e adiciona espaço abaixo */
            text-align: center;
            /* reforça o alinhamento central */
        }

        .icone-1 {
            color: #dd082b;
        }

        .icone-2 {
            color: #f17907;
        }

        .icone-3 {
            color: #2bb302d2;
        }

        .cards-tradicao {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .cards-tradicao .card {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .cards-tradicao .card:hover {
            transform: translateY(-5px);
        }


        /* Produtos */
        .produtos {
            padding: 80px 10%;
            text-align: center;
            background: #f8f9fa;
        }

        .produtos h2 {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-weight: 500;
            /* deixa bem grosso */
            font-size: 45px;
            color: black;
            margin-bottom: 30px;
        }

        .card-link {
            display: block;
            text-decoration: none;
            /* tira o sublinhado */
            color: inherit;
            /* mantém a cor do texto do card */
        }

        .card-link .insta {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .card-link .insta:hover {
            transform: scale(1.02);
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
       


        @media (max-width: 900px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (max-width: 500px) {
            grid-template-columns: 1fr;
        }
 }
        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .card h3 {
            padding: 15px;
            font-size: 20px;
            color: var(--verde);
            font-weight: bolder;

        }

        .contato {
            padding: 80px 10%;
            text-align: center;
            background: #fff;
        }

        .contato h2 {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-weight: 500;
            /* deixa bem grosso */
            font-size: 45px;
            color: black;
            margin-bottom: 20px;
        }

        .contato .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .contato .insta {
            background: #f9f9f9;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 20px;
            transition: transform 0.3s;
        }

        .contato .insta:hover {
            transform: translateY(-8px);
        }

        .contato .insta img {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }

        .contato .insta h3 {
            font-size: 22px;
            color: var(--verde);
            margin-bottom: 10px;
        }

        .contato .insta p {
            font-size: 20px;
            margin-bottom: 15px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: bolder;
        }

        .btn-insta {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 30px;
            background: linear-gradient(135deg, #ff7b00, #28a745);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-insta:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
        }

        .contato .insta img {
            width: 100px;
            /* tamanho fixo e padronizado */
            height: 100px;
            object-fit: contain;
            /* mantém proporção */
            display: block;
            margin: 0 auto 15px;
            /* centraliza e dá espaço embaixo */
            border-radius: 12px;
            /* bordas arredondadas */
            padding: 5px;
            /* opcional, dá um respiro interno */
            background: #fff;
            /* fundo branco para destacar */
        }

        .localizacao {
            padding: 80px 10%;
            text-align: center;
            background: #fff;
        }

        .localizacao h2 {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-weight: 500;
            /* deixa bem grosso */
            font-size: 45px;
            color: black;
            margin-bottom: 30px;
        }

        .localizacao .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .localizacao .insta {
            background: #f9f9f9;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .localizacao .insta:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .localizacao .insta img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            display: block;
            margin: 0 auto 15px;
            border-radius: 12px;
            padding: 5px;
            background: #fff;
        }

        .localizacao .insta h3 {
            font-size: 22px;
            color: var(--verde);
            margin-bottom: 10px;
        }

        .localizacao .insta p {
            font-size: 20px;
            margin-bottom: 15px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: bolder;
        }

        .card-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        /* ===== PADRÃO DE SEÇÕES ===== */
        section {

            position: relative;
            padding: 50px 20px;
            box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.25);
            /* mais intensa */
            margin-bottom: 5px;
            border-radius: 12px;
            overflow: hidden;
            max-width: 1800px;
            margin: 0 auto 5px auto;
        }

        /* Fade automático na parte inferior */
        section::after {
            content: "";
            position: absolute;
            bottom: -30px;
            left: 0;
            width: 100%;
            height: 30px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
            pointer-events: none;
        }

        /* ===== CORES DAS SEÇÕES (edite aqui) ===== */
        /* Sobre */
        .sobre {
            background: linear-gradient(120deg, rgba(230, 57, 70, 0.6), rgba(255, 123, 0, 0.55), rgba(40, 167, 69, 0.55));
            color: rgb(0, 0, 0);
        }

        /* Produtos */
        .produtos {
           background: linear-gradient(120deg, rgba(230, 57, 70, 0.6), rgba(255, 123, 0, 0.55), rgba(40, 167, 69, 0.55));
            color: rgb(0, 0, 0);
        }

        /* Contato */
        .contato {
            background: linear-gradient(120deg, rgba(230, 57, 70, 0.6), rgba(255, 123, 0, 0.55), rgba(40, 167, 69, 0.55));
            color: rgb(0, 0, 0);
        }

        .localizacao {
            background: linear-gradient(120deg, rgba(230, 57, 70, 0.6), rgba(255, 123, 0, 0.55), rgba(40, 167, 69, 0.55));
            color: rgb(0, 0, 0);
        }

        /* Rodapé */
        footer {
            background: var(--verde);
            color: white;
            text-align: center;
            padding: 25px;
            margin-top: 60px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: bold;
        }

        .nav {
            display: flex;
            justify-content: center;
        }

        .menu-principal {
            display: flex;
            gap: 10px;
            margin-left: 200px;
            align-items: center;
        }

        .menu-principal li a {
            position: relative;
            text-decoration: none;
            text-align: center;
            color: #333;
            font-size: 15px;
            font-weight: 600;
            padding: 6px 4px;
            transition: color 0.3s ease;
        }

        .menu-principal li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background: var(--laranja);
            transition: width 0.3s ease;
        }

        .menu-principal li a:hover {
            color: rgb(255, 104, 3);
            background-color: var(--laranja);
        }

        .menu-principal li a:hover::after {
            width: 100%;
        }

        .menu-principal li a i {
            font-size: 14px;
            margin-left: 10px;
            margin-right: -2px;
        }

        .lang {
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #444;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .lang:hover {
            background: #000000;
        }

        .lang.active {
            background: var(--laranja);
            color: rgb(0, 0, 0);
        }

        .idiomas {
            display: flex;
            gap: 10px;
            margin-left: 250px;
            align-items: center;
            justify-self: end;
            /* 🔥 joga para o canto direito */
        }

        .lang {
            padding: 6px 10px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            color: #333;
            transition: 0.3s;
        }

        .lang img {
            width: 18px;
            border-radius: 2px;
        }

        .lang:hover {
            background: #ee6204;
        }

        /* Idioma ativo */
        .lang.active {
            background: var(--laranja);
            color: white;
        }

        .wave-divider {
            position: relative;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-divider svg {
            display: block;
            width: 100%;
            height: 90px;
        }

        .wave-divider path {
            fill: #ffffff;
        }
   