/* ==== RESET & BASE ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #2D6A4F;
    --primary-dark: #1B4332;
    --primary-light: #40916C;
    --secondary-color: #FFD166;
    --secondary-dark: #F4A259;
    --accent-color: #8D6E63;
    --text-dark: #1A1A1A;
    --text-light: #4B5563; /* darker for better readability */
    --bg-light: #F5F7FA;
    --white: #FFFF;
    --success: #52B788;
    --error: #E63946;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Spacing */
    --header-height: 80px;
    --section-padding: 100px 0;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* ==== HEADER & NAVIGATION ==== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scroll-header {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.nav__logo-img {
  height: 85px; /* ajuste fino conforme sua logo */
  width: auto;
  display: block;
}

.nav__logo-text {
  white-space: nowrap;
}

@media (max-width: 968px) {
  .nav__logo-img { height: 28px; }
}
@media (max-width: 576px) {
  .nav__logo-img { height: 24px; }
}

.nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav__link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
}

.dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu li {
    padding: 0;
}

.dropdown__menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown__menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav__btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==== BUTTONS ==== */
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.button--primary {
    background: var(--primary-color);
    color: var(--white);
}

.button--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button--outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button--outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.button--whatsapp {
    background: #25D366;
    color: var(--white);
}

.button--whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button--large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ==== HERO SECTION ==== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__subtitle {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.hero__description {
    font-size: 1.2rem;
    color: #3f523a; /* Verde Escuro */
    text-shadow: 0 1px 2px rgba(0,0,0,.5);
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat__label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero__image {
    position: relative; /* container maior, não corta */
}

/* Opção 1 aplicada: cantos/sombra nos pseudo-elementos; cards podem extrapolar */
.hero__image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    /* sem border-radius e sem overflow hidden aqui */
    z-index: 0;
}

/* Imagem de fundo com cantos arredondados e sombra mais evidente */
.hero__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/produtor-lavoura.jpg') center center / cover no-repeat; /* ajuste para seu arquivo */
    border-radius: 24px;
    /* Sombra forte + secundária para profundidade */
    box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),
    0 6px 18px rgba(0, 0, 0, 0.12);
    /* Contorno branco sutil para destacar em fundos claros */
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: -2px;
    z-index: 0;
}

/* Overlay para legibilidade, mantendo cantos */
/* .hero__image-wrapper::after { */
    /* content: '';*/
    /* position: absolute;*/
    /* inset: 0;*/
    /* background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);*/
    /* border-radius: 24px;*/
    /* pointer-events: none;*/
    /* z-index: 1;*/
/* } */

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    z-index: 2; /* acima do overlay e da imagem */
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero__wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--white);
}

/* ==== ANIMATIONS ==== */
.animate-fade-in { animation: fadeIn 1s ease-out; }
.animate-slide-in { animation: slideIn 1s ease-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==== SECTION HEADERS ==== */
.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section__description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==== SOLUÇÕES SECTION ==== */
.solucoes { background: var(--white); }

.solucoes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.solucao__card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.solucao__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.solucao__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solucao__icon i {
    font-size: 2rem;
    color: var(--white);
}

.solucao__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.solucao__description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.solucao__features {
    list-style: none;
    margin-bottom: 24px;
}

.solucao__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-dark);
}

.solucao__features i {
    color: var(--success);
    font-size: 0.9rem;
}

.solucao__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.solucao__link:hover { gap: 12px; }

/* ==== SEGMENTOS SECTION ==== */
.segmentos { background: var(--bg-light); }

.segmentos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.segmento__card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.segmento__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.segmento__icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.segmento__card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.segmento__card p { color: var(--text-light); }

/* ==== RECURSOS SECTION ==== */
.recursos { background: var(--white); }

.recursos__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion__item {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.accordion__header:hover { background: var(--white); }

.accordion__header i:first-child {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.accordion__header h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion__arrow {
    font-size: 1rem;
    color: var(--text-light);
    transition: var(--transition);
}

.accordion__item.active .accordion__arrow { transform: rotate(180deg); }

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion__item.active .accordion__content { max-height: 200px; }

.accordion__content p {
    padding: 0 20px 20px 56px;
    color: var(--text-light);
}

.recursos__mockup {
    background: transparent;
    border-radius: 16px; /* match the image corners */
    padding: 0; /* no extra space so shadow hugs image */
    /* box-shadow removed as requested */
    overflow: hidden; /* clip contents to rounded corners */
}

.mockup__screen {
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mockup__screen i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.mockup__screen p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ==== DEPOIMENTOS SECTION ==== */
.depoimentos { background: var(--bg-light); }

.depoimentos__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

.depoimento__card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: none;
}

.depoimento__card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.depoimento__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.depoimento__stars i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.depoimento__text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.depoimento__author {
    display: flex;
    align-items: center;
    gap: 16px;
}
img.author__avatar, .author__avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}


.author__avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author__info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author__info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.slider__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider__dots { display: flex; gap: 8px; }

.slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.slider__dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* ==== CTA SECTION ==== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta__content {
    text-align: center;
    padding: 60px 0;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta__description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__buttons .button {
    background: var(--white);
    color: var(--primary-color);
}

.cta__buttons .button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta__buttons .button--whatsapp {
    background: #25D366;
    color: var(--white);
}

/* ==== CONTATO SECTION ==== */
.contato { background: var(--white); }

.contato__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contato__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info__item { display: flex; gap: 20px; }

.info__icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info__icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info__text h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info__text p { color: var(--text-light); }

.info__social { display: flex; gap: 12px; }

.social__link {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social__link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
}

.contato__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form__group { position: relative; }

.form__group--full { grid-column: 1 / -1; }

.form__input {
    width: 100%;
    padding: 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    top: -10px;
    left: 12px;
    font-size: 0.85rem;
    background: var(--white);
    padding: 0 8px;
    color: var(--primary-color);
}

.form__label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

select.form__input { cursor: pointer; }

select.form__input + .form__label {
    top: -10px;
    left: 12px;
    font-size: 0.85rem;
    background: var(--white);
    padding: 0 8px;
    color: var(--primary-color);
}

textarea.form__input {
    resize: vertical;
    min-height: 120px;
}

.form__group--full .button {
    width: 100%;
    justify-content: center;
}

.form__message {
    grid-column: 1 / -1;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form__message.success {
    background: #D4EDDA;
    color: #155724;
    display: block;
}

.form__message.error {
    background: #F8D7DA;
    color: #721C24;
    display: block;
}

/* ==== SOBRE NÓS SECTION ==== */
.sobre {
    background: var(--bg-light);
}

.sobre__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sobre__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px;
}

.sobre__badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.sobre__badge i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.badge__text {
    display: flex;
    flex-direction: column;
}

.badge__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.badge__label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.sobre__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sobre__story p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.sobre__story p:last-child {
    margin-bottom: 0;
}

.sobre__values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value__icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value__content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.value__content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==== FOOTER ==== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  height: 58px; /* ajuste conforme desejar: 24–36px */
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__logo-text {
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* Fallback: caso ainda exista algum <i> antigo, esconda */
.footer__title i { display: none; }

@media (max-width: 576px) {
  .footer__logo { height: 24px; }
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer__social { display: flex; gap: 12px; }

.footer__social .social__link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer__social .social__link:hover {
    background: var(--white);
    color: var(--primary-color);
}

.footer__subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p { color: rgba(255, 255, 255, 0.8); }

.footer__legal { display: flex; gap: 24px; }

.footer__legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer__legal a:hover { color: var(--white); }

/* ==== SCROLL TO TOP ==== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.scroll-top i { font-size: 1.5rem; }

/* ==== AOS ANIMATIONS ==== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate { opacity: 1; }

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ==== RESPONSIVE ==== */
@media screen and (max-width: 968px) {
    :root {
    --header-height: 64px;
    --section-padding: 60px 0;
    }

    .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 32px 32px;
    transition: var(--transition);
    }

    .nav__menu.show-menu { right: 0; }

    .nav__list {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    }

    .nav__toggle,
    .nav__close { display: block; }

    .nav__close {
    position: absolute;
    top: 24px;
    right: 24px;
    }

    .nav__btns .button { display: none; }

    .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
    }

    .dropdown.active .dropdown__menu { display: block; }

    .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .hero__title { font-size: 2.5rem; }

    .hero__stats { gap: 24px; }

    .hero__image-wrapper { height: 400px; }

    .section__title { font-size: 2rem; }

    .solucoes__grid { grid-template-columns: 1fr; }

    .recursos__content { grid-template-columns: 1fr; }

    .contato__content { grid-template-columns: 1fr; }

    .contato__form { grid-template-columns: 1fr; }

    .sobre__content {
    grid-template-columns: 1fr;
    }

    .sobre__img {
    min-height: 400px;
    }

    .footer__content {
    grid-template-columns: 1fr;
    gap: 32px;
    }

@media (max-width: 576px) {
  .hero__image-wrapper::before {
    box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),  /* sombra principal */
    0 6px 18px rgba(0, 0, 0, 0.12);   /* sombra secundária */
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: -2px;
  }
}

    .footer__bottom {
    flex-direction: column;
    text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .hero__title { font-size: 2rem; }

    .hero__buttons { flex-direction: column; }

    .hero__stats {
    flex-direction: column;
    gap: 16px;
    }

    .cta__title { font-size: 1.8rem; }

    .cta__buttons { flex-direction: column; }

    .button--large {
    width: 100%;
    justify-content: center;
    }

    .sobre__badge {
    bottom: 16px;
    right: 16px;
    padding: 16px;
    }

    .sobre__badge i {
    font-size: 2rem;
    }

    .badge__number {
    font-size: 1.5rem;
    }

    .badge__label {
    font-size: 0.75rem;
    }
}

/* ==== SEGMENT MODAL ==== */
.segment-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.segment-modal.show { display: block; }

.segment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45); /* sobreposição parcial */
  backdrop-filter: blur(2px);
}

.segment-modal__dialog {
  position: relative;
  margin: 6vh auto;
  max-width: 760px;
  width: calc(100% - 32px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 28px 24px 24px 24px;
  animation: modalIn .25s ease-out;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.segment-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.segment-modal__close:hover {
  background: var(--primary-color);
  color: var(--white);
}

.segment-modal__icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 8px;
}

.segment-modal__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.segment-modal__content {
  color: var(--text-dark);
  line-height: 1.7;
}

.segment-modal__content ul {
  padding-left: 18px;
  margin: 8px 0 0 0;
}

.segment-modal__content li {
  margin: 6px 0;
}

/* Responsivo */
@media (max-width: 576px) {
  .segment-modal__dialog {
    margin: 8vh auto;
    padding: 22px 18px 18px 18px;
  }
  .segment-modal__title { font-size: 1.3rem; }
}

/* ==== SUPPORT MODAL ==== */
.support-modal { position: fixed; inset: 0; display: none; z-index: 2100; }
.support-modal.show { display: block; }
.support-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); backdrop-filter: blur(2px); }
.support-modal__dialog { position: relative; margin: 8vh auto; max-width: 560px; width: calc(100% - 32px); background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 24px; animation: modalIn .25s ease-out; }
.support-modal__close { position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--bg-light); color: var(--text-dark); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.support-modal__close:hover { background: var(--primary-color); color: var(--white); }
.support-modal__header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.support-modal__header i { color: var(--primary-color); font-size: 1.4rem; }
.support-modal__title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--primary-dark); margin: 0; }
.support-modal__content { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.support-item { display: flex; gap: 12px; align-items: center; text-decoration: none; padding: 14px 12px; border-radius: 12px; border: 1px solid #e9ecef; color: var(--text-dark); transition: var(--transition); }
.support-item i { width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--white); }
.support-item .fa-whatsapp { background: #25D366; }
.support-item .fa-envelope { background: var(--primary-color); }
.support-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--primary-color); }
@media (max-width: 576px) { .support-modal__dialog { margin: 10vh auto; } }

/* ==== DOWNLOADS MODAL ==== */
.downloads-modal { position: fixed; inset: 0; display: none; z-index: 2100; }
.downloads-modal.show { display: block; }
.downloads-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); backdrop-filter: blur(2px); }
.downloads-modal__dialog { position: relative; margin: 8vh auto; max-width: 560px; width: calc(100% - 32px); background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 24px; animation: modalIn .25s ease-out; }
.downloads-modal__close { position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--bg-light); color: var(--text-dark); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.downloads-modal__close:hover { background: var(--primary-color); color: var(--white); }
.downloads-modal__header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.downloads-modal__header i { color: var(--primary-color); font-size: 1.4rem; }
.downloads-modal__title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--primary-dark); margin: 0; }
.downloads-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; padding: 0; }
.download-item { display: flex; gap: 12px; align-items: center; text-decoration: none; padding: 14px 12px; border-radius: 12px; border: 1px solid #e9ecef; color: var(--text-dark); transition: var(--transition); }
.download-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--primary-color); }
.download-item__icon { width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--white); }
.download-item__icon.rustdesk { background: #EE6C4D; }
.download-item__icon.java { background: #E11D48; }
.download-item__icon.openjdk { background: #1F6FEB; }
.download-item__icon.svn { background: #38BDF8; }
.download-item__content { display: flex; flex-direction: column; }
.download-item__title { font-weight: 600; color: var(--text-dark); }
.download-item__desc { font-size: .9rem; color: var(--text-light); }
@media (max-width: 576px) { .downloads-modal__dialog { margin: 10vh auto; } }