:root {
    --color-white-100: #fcfcfc;
    --color-white-200: #efefef;

    --color-gray-100: #d6d8dc;

    --color-blue-900: #000724;
    --color-blue-700: #032872;
    --color-blue-300: #01226d;

    --color-blue-pastel: #a5d1ed;

    --color-contraste: #0e0e7b;

    --color-btn-default: #292a7f;
    --color-yellow: #FFD700;
}

/* ==================== RESET & BASE ==================== */

.specialists-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 767px) {
  .specialists-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1024px) {
  .specialists-wrapper {
    grid-template-columns: repeat(13, 1fr);
  }
}
.specialists-wrapper > img {
  transition: all 0.2s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
}
.specialists-wrapper > img:hover {
  filter: grayscale(0%);
}


picture {
    margin: 0;
}

html {
    font-size: 16px;
}

body {
    background: linear-gradient(to right, var(--color-white-200), var(--color-white-100));
    font-family: Arial, sans-serif;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==================== UTILITY CLASSES ==================== */

.margin-default {
    width: 80%;
    margin: 0 auto;
}

.como-diminue-a-fonte {
    text-transform: uppercase;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.click {
    cursor: pointer;
}

.cursor-none {
    cursor: auto;
}

/* ==================== PADDING ==================== */

.p-2 {
    padding: 2rem;
}

.p-6 {
    padding: 6rem;
}

.pt-2 {
    padding-top: 2rem;
}

/* ==================== FLEX ==================== */

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

/* ==================== GRID ==================== */

.d-grid {
    display: grid;
}

.grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-column-2 {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.grid-column-3 {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.grid-column-4 {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

/* ==================== GAP ==================== */

.gap-2 {
    gap: 2rem;
}

.gap-4-i {
    gap: 3rem !important;
}

.gap-1 {
    gap: 1.5rem;
}

/* ==================== TYPOGRAPHY ==================== */

.font-bold {
    font-weight: bold;
}

/* ==================== BACKGROUNDS ==================== */

.bg-white {
    background-color: var(--color-white-100);
}

.bg-light {
    background-color: var(--color-white-200);
}

.bg-blue {
    background-color: var(--color-blue-700);
}

/* ==================== HERO SECTION ==================== */

.grid-stacking {
    display: grid;
    overflow: hidden;
}

.hero-section {
    height: 90vh;
    height: 90dvh;
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.hero-outdoor {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.outdoor {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    height: 100%;
}

.button-schedule {
    padding: .75rem 2rem;
    border-radius: 15px;
    background-color: var(--color-blue-pastel);
    color: var(--color-blue-300);
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.button-schedule:hover {
    /* color: var(--color-blue-pastel); */
    background-color: white;
}

/* ==================== ABOUT SECTION ==================== */

.titulo-sobre {
    font-size: 2rem;
    color: var(--color-blue-700);
}

.texto-sobre {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.padding-texto {
    padding: 4rem 1rem 1rem;
}

.padding-1 {
    padding: 0 1rem 1rem;
}

.padding-6 {
    padding: 0 6rem 6rem;
}

.view-30 {
    height: 30%;
}

/* ==================== BENEFITS SECTION (30% BLUE + 70% TRACTOR) ==================== */

.benefits-section-wrapper {
    display: grid;
}

.benefits-background-top {
    grid-row: 1 / 3;
    grid-column: 1 / 1;
}

.benefits-background-top img {}

.benefits-background-bottom {
    grid-row: 2 / 4;
    grid-column: 1 / 1;
}

.benefits-content {
    grid-row: 1 / 3;
    grid-column: 1 / 1;
}

.benefits-content {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    /* color: var(--color-blue-700); */
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-blue-700);
}

.card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

/* ==================== SAVINGS SECTION - PROFESSIONAL DESIGN ==================== */

.savings-section {
    background: linear-gradient(to bottom, rgba(1, 7, 37, 0.9), rgba(0, 32, 101, 0.9));
    padding: 4rem 0;
}

.savings-container {
    max-width: 70%;
    margin: 0 auto;
}

.savings-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 6rem;
}

.savings-card {
    /* background: white; */
    /* border: 1px solid #e2e8f0; */
    border-radius: 12px;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

/* .savings-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
} */

.savings-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-grow: 1;
    color: white;
}

.savings-label {
    /* color: #64748b; */
    font-size: 2.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.savings-number {
    /* color: #0f172a; */
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.savings-percent {
    font-size: 2.5rem;
    vertical-align: top;
    padding-left: 1rem;
}

.savings-description {
    /* color: #64748b; */
    font-size: 2.5rem;
    line-height: 1.5;
    text-align: center;
}

.savings-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    transition: all 0.2s ease;
    border: 2px solid #0f172a;
}

.savings-cta:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.tag-full {
    grid-column: 1 / 3;
}

/* ==================== PRODUCTS SECTION (CROP PROTECTION) ==================== */

.products-section {
    background-color: var(--color-white-100);
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    /* max-width: 900px; */
    margin: 0 auto;
}

.products-grid {
    margin-top: 2rem;
}

.product-tag {
    background-color: var(--color-gray-100);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: var(--color-text-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    font-size: 2rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.2;
}

.product-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: normal;
    margin-top: 0.25rem;
    color: #666;
}

/* ==================== MONITORED FERTILIZER PRODUCTS (COM IMAGEM DE FUNDO) ==================== */

.fertilizer-section-blue {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.fertilizer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fertilizer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fertilizer-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.fertilizer-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.fertilizer-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 3rem;
    max-width: 100%;
}

.fertilizer-group {
    margin-bottom: 2.5rem;
}

.fertilizer-category-label {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-align: left;
}

.fertilizer-pills {
    display: grid;
    width: 100%;
}

.grid-column-3-fertilizer {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-column-2-fertilizer {
    grid-template-columns: 300px auto;
    gap: 1.5rem;
    align-items: center;
}

.wrapper-fertilizer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.grid-align-center-fertilizer {
    align-items: center;
}

.fertilizer-pill {
    background-color: white;
    color: #666;
    padding: .5rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.fertilizer-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.py-4 {
    padding: 4rem 0;
}

/* ==================== FUNCTIONALITIES SECTION ==================== */

.functionalities-section {
    background-color: var(--color-white-200);
}

.funcionalities-title {
    color: var(--color-blue-300);
}

.functionality-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-skeleton-yellow {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, var(--color-yellow) 25%, #ffed4e 50%, var(--color-yellow) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 50%;
}

.func-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-blue-700);
    text-transform: uppercase;
}

.func-card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.svg-functions {
    height: 64px;
    width: 64px;
    fill: var(--color-contraste);
}

.grid-functions-image {
    display: grid;
    grid-template-columns: auto 40%;
    gap: 2rem;
}

.funcionalidades-imagem img {
    border-radius: 20px;
    object-position: left;

}

/* ==================== TEAM SECTION ==================== */

.team-section {
    background-color: var(--color-blue-300);
}

.team-image-skeleton {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 15px;
}

.our-team-section {
    display: block;
}

.team-subtitle {
    font-size: 2.5rem;
    color: var(--color-blue-700);
    font-weight: 600;
}

.text-white {
    color: white;
}

/* ==================== CONTACT FORM ==================== */

.contact-section {
    /* background-color: var(--color-white-200); */
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-input {
    padding: 1rem;
    border: 2px solid var(--color-gray-100);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-blue-700);
}

.button-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ==================== TOOLTIP STYLES ==================== */

.fertilizer-pill {
    position: relative;
    cursor: help;
}

.fertilizer-pill[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 7, 36, 0.95);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.4;
    width: max-content;
    max-width: 300px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
}

.fertilizer-pill[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 7, 36, 0.95);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
}

/* ==================== FOOTER ==================== */

.footer {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.footer-logo-skeleton {
    width: 150px;
    height: 60px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 10px;
}

/* Background Layer */
.t3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.t3 img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* Content Layer */
.t2 {
    position: relative;
    z-index: 1;
    /* min-height: 400px; */
}

.t1 {
    display: grid;
    grid-template-columns: 45% 55%;
    /* min-height: 400px; */
    align-items: stretch;
}

/* Logo Section with Clip Path */
.footer-div-clip {
    background-color: var(--color-blue-300);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.rodape-logo {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rodape-logo img {
    /* width: 80%; */
    height: auto;
    /* max-width: 250px; */
    object-fit: contain;
}

/* Contact Info Section */
.rodape-divisao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3.2rem;
    gap: 1.5rem;
    position: relative;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    max-width: 500px;
}

.flex-footer-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flex-footer-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flex-footer-icon span {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-footer-icon p,
.flex-footer-icon a {
    margin: 0;
    color: var(--color-blue-700);
    font-size: 1.5rem;
    font-weight: 500;
    flex: 1;
    word-break: break-word;
    text-decoration: none;
}

.footer-icon {
    width: 28px;
    height: 28px;
    fill: var(--color-contraste);
    flex-shrink: 0;
}

/* Utility Classes */
.relativo {
    position: relative;
}

.absoluto {
    position: absolute;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.m-6 {
    margin: 6rem;
}

/* ==================== ANIMATIONS ==================== */

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ==================== MEDIA QUERIES ==================== */

/* TABLET - 1024px */
@media (max-width: 1024px) {
    .padding-6 {
        padding: 0 3rem 3rem;
    }

    .grid-column-2,
    .grid-column-3 {
        gap: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Fertilizer Section - Tablet */
    .fertilizer-title {
        font-size: 2rem;
    }

    .fertilizer-category-label {
        font-size: 1.5rem;
    }

    .grid-column-3-fertilizer {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-column-2-fertilizer {
        grid-template-columns: 180px 1fr;
        gap: 1.2rem;
    }

    .wrapper-fertilizer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .fertilizer-pill {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .benefits-section-wrapper {
        min-height: 1000px;
    }

    .savings-container {
        max-width: 85%;
    }

    .savings-number {
        font-size: 4rem;
    }

    .savings-percent {
        font-size: 2.5rem;
    }

    .product-tag {
        font-size: 1.75rem;
        padding: 0.875rem 1.25rem;
    }

    .grid-functions-image {
        grid-template-columns: 1fr;
    }

    .funcionalidades-imagem {
        display: none;
    }

    /* Footer - Tablet */
    .footer {
        min-height: 350px;
    }

    .t1 {
        grid-template-columns: 35% 65%;
        min-height: 350px;
    }

    .footer-div-clip {
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
        padding: 1.5rem;
    }

    .rodape-divisao {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .flex-footer-icon {
        padding: 0.875rem 1.25rem;
    }

    .flex-footer-icon p,
    .flex-footer-icon a {
        font-size: 0.95rem;
    }

    .footer-icon {
        width: 26px;
        height: 26px;
    }
}

/* MOBILE LARGE - 768px */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .grid-column-3 {
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    }

    .p-6 {
        padding: 3rem;
    }

    .benefits-section-wrapper {
        min-height: 1200px;
    }

    /* Fertilizer Section - Mobile Large */
    .fertilizer-content {
        padding: 4rem 0;
    }

    .fertilizer-title {
        font-size: 1.75rem;
    }

    .fertilizer-subtitle {
        font-size: 1rem;
    }

    .fertilizer-category-label {
        font-size: 1.5rem;
    }

    .grid-column-3-fertilizer {
        grid-template-columns: 1fr;
    }

    .grid-column-2-fertilizer {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .fertilizer-category-label {
        text-align: center;
    }

    .wrapper-fertilizer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .fertilizer-pill {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .savings-container {
        max-width: 90%;
    }

    .savings-wrapper {
        grid-template-columns: 1fr;
    }

    .savings-card {
        min-height: 350px;
    }

    .product-tag {
        font-size: 1.5rem;
        padding: 0.875rem 1.25rem;
        min-height: 60px;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .our-team-section {
        display: none;
    }

    /* Footer - Mobile Large */
    .footer {
        min-height: auto;
    }

    .t1 {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .footer-div-clip {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        padding: 3rem 2rem;
        min-height: 200px;
    }

    .rodape-logo {
        max-width: 250px;
    }

    .rodape-divisao {
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }

    .footer-info {
        max-width: 100%;
        width: 90%;
    }

    .flex-footer-icon {
        padding: 1rem 1.25rem;
    }

    .flex-footer-icon p,
    .flex-footer-icon a {
        font-size: 1.2rem;
    }
}

/* MOBILE - 620px */
@media (max-width: 620px) {
    .titulo-sobre {
        font-size: 1.5rem;
    }

    .texto-sobre {
        font-size: 1rem;
    }

    .padding-texto {
        padding: 2rem 1rem 1rem;
    }

    .grid-column-2,
    .grid-column-3 {
        grid-template-columns: 1fr;
    }

    .grid-col-2 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .p-6 {
        padding: 2rem;
    }

    /* Fertilizer Section - Mobile */
    .fertilizer-content {
        padding: 3rem 0;
    }

    .fertilizer-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .fertilizer-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }

    .fertilizer-category-label {
        font-size: 1.2rem;
        text-align: center;
    }

    .fertilizer-group {
        margin-bottom: 2rem;
    }
    

    .grid-column-2-fertilizer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wrapper-fertilizer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fertilizer-pill {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .benefits-section-wrapper {
        min-height: 1600px;
    }

    .benefits-content {
        padding: 3rem 0;
    }

    .savings-container {
        max-width: 95%;
    }

    .savings-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }

    .savings-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .savings-number {
        font-size: 3.5rem;
    }

    .savings-percent {
        font-size: 2rem;
    }

    .savings-description {
        font-size: 1rem;
    }

    .product-tag {
        font-size: 1.25rem;
        padding: 0.75rem 1rem;
        min-height: 50px;
        word-break: break-word;
        hyphens: auto;
    }

    .tag-full {
        grid-column: 1 / 2;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .products-section {
        padding: 3rem 0 !important;
    }

    .margin-default {
        width: 90%;
    }

    /* Footer - Mobile */
    .footer-div-clip {
        padding: 2.5rem 1.5rem;
        min-height: 180px;
    }

    .rodape-logo {
        max-width: 200px;
    }

    .rodape-divisao {
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .footer-info {
        width: 95%;
        gap: 1rem;
    }

    .flex-footer-icon {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
    }

    .footer-icon {
        width: 24px;
        height: 24px;
    }
}

/* MOBILE SMALL - 480px */
@media (max-width: 480px) {
    .fertilizer-title {
        font-size: 1.3rem;
    }

    .fertilizer-subtitle {
        font-size: 0.9rem;
    }

    .fertilizer-category-label {
        font-size: 1.1rem;
    }

    .fertilizer-pill {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .savings-number {
        font-size: 3rem;
    }

    .savings-percent {
        font-size: 1.75rem;
    }

    /* Footer - Mobile Small */
    .footer-div-clip {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        padding: 2rem 1rem;
        min-height: 160px;
    }

    .rodape-logo {
        max-width: 180px;
    }

    .rodape-divisao {
        padding: 1.5rem 0.75rem;
    }

    .footer-info {
        gap: 0.875rem;
    }

    .flex-footer-icon {
        padding: 0.75rem 0.875rem;
        gap: 0.75rem;
        flex-direction: row;
    }

    .footer-icon {
        width: 22px;
        height: 22px;
    }
}

/* EXTRA SMALL - 400px */
@media (max-width: 400px) {
    .product-tag {
        font-size: 1.1rem;
        padding: 0.65rem 0.85rem;
        min-height: 45px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .margin-default {
        width: 92%;
    }

    .savings-number {
        font-size: 3rem;
    }

    .savings-percent {
        font-size: 1.75rem;
    }

    /* Fertilizer Extra Small */
    .fertilizer-title {
        font-size: 1.2rem;
    }

    .fertilizer-subtitle {
        font-size: 0.85rem;
    }

    .fertilizer-category-label {
        font-size: 1rem;
    }

    .fertilizer-pill {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .fertilizer-content {
        padding: 2.5rem 0;
    }

    /* Footer - Extra Small */
    .footer-div-clip {
        padding: 1.75rem 0.875rem;
        min-height: 140px;
    }

    .rodape-logo {
        max-width: 160px;
    }

    .rodape-divisao {
        padding: 1.25rem 0.5rem;
    }

    .footer-info {
        gap: 0.75rem;
        width: 100%;
    }

    .flex-footer-icon {
        padding: 0.65rem 0.75rem;
        gap: 0.65rem;
    }

    .footer-icon {
        width: 20px;
        height: 20px;
    }
}

/* TOOLTIP RESPONSIVE */
@media (max-width: 768px) {
    .fertilizer-pill[data-tooltip]:hover::before {
        max-width: 250px;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        bottom: auto;
        top: 125%;
    }

    .fertilizer-pill[data-tooltip]:hover::after {
        bottom: auto;
        top: 115%;
        border-top-color: transparent;
        border-bottom-color: rgba(0, 7, 36, 0.95);
    }
}