:root {

    --verde: #006572;
    --laranja: #F57C00;
    --amarelo: #FEBD33;
    --neutro: #EFECE8;
    --bg: #FFFFFF;

    --fw-sans: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --fw-display: "Oswald", "Drakune", sans-serif;
    --fw-secondary: "Arsenal SC", serif;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
max-width:100%;
overflow-x:hidden;
}

body {
    font-family: var(--fw-sans);
    background: var(--bg);
    overflow-x: hidden;
}
img{
max-width:100%;
height:auto;
display:block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}



.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg);
    transition: all .3s ease;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 60px;
    display: block;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a:not(.cta-button) {
    position: relative;
    text-decoration: none;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    padding-bottom: 4px;
    transition: .25s;
    color: var(--verde);

}

.nav-links a:not(.cta-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--laranja);
    transition: .3s;
}

.nav-links a:not(.cta-button):hover {
    color: var(--verde);
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}


.cta-button {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg,
            #F57C00,
            #ff9c2f);

    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: .25s;
    box-shadow: 0 10px 25px rgba(245, 124, 0, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(245, 124, 0, 0.45);
}


.mobile-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}


@media(max-width:768px) {

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: #333;
        transition: .3s;
    }

    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 24px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-10px);
        transition:
            max-height .4s ease,
            opacity .3s ease,
            transform .3s ease,
            padding .3s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .mobile-menu.active {
        max-height: 350px;
        opacity: 1;
        transform: translateY(0);
        padding: 20px 24px;
    }

    .mobile-menu a {
        font-size: 16px;
        color: #333;
        padding: 14px 0;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        transition: .25s;
    }

    .mobile-menu a:hover {
        color: var(--verde);
        padding-left: 6px;
    }

    .mobile-menu .cta-button {
        margin-top: 10px;
        justify-content: center;
    }

}

/* ========================= */
/* HERO BASE */
/* ========================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        100deg,
        rgba(0,101,114,0.85) 0%,
        rgba(0,101,114,0.75) 35%,
        rgba(0,0,0,0.4) 60%,
        rgba(0,0,0,0.2) 80%,
        transparent 100%
    );
}



.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}



.hero-left {
    max-width: 520px;
}



.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amarelo);
    border-radius: 50%;
}


.hero-title {
    font-family: var(--fw-display);
    font-size: 60px;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--amarelo);
}


.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}


.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-btn-primary,
.hero-btn-outline {
    position: relative;
    overflow: hidden;
}


.hero-btn-primary {
    background: var(--laranja);
    color: white;
    padding: 16px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;

    box-shadow: 0 12px 30px rgba(245,124,0,0.4);
    transition: box-shadow .3s ease, transform .3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(245,124,0,0.5);
}


.hero-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    transition: .6s ease;
}

.hero-btn-primary:hover::before {
    left: 120%;
}


.hero-btn-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 16px 26px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.hero-btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}


.hero-btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transition: .6s ease;
}

.hero-btn-outline:hover::before {
    left: 120%;
}


.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-number {
    font-size: 34px;
    font-family: var(--fw-display);
    color: white;
}

.hero-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    width: 520px;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
    transform: rotate(-2deg);
    transition: .4s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.03);
}


@media(max-width:768px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-title{
font-size:38px;
}

.hero-buttons{
flex-direction:column;
}

.hero-stats{
justify-content:center;
}

}

/* ================================= */
/* SECTION Freezer                   */
/* ================================= */

.freezer-section {
  --verde: #006572;
  --laranja: #F57C00;
  --amarelo: #FEBD33;

  background: linear-gradient(135deg, #0b5f66, #0e6b73);
  padding: 80px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.freezer-section::before {
  content: "";
  position: absolute;
  left: -200px;
  top: 0;
  width: 500px;
  height: 500px;
  background: var(--amarelo);
  opacity: 0.1;
  filter: blur(120px);
}

.freezer-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 400px;
  height: 400px;
  background: var(--laranja);
  opacity: 0.2;
  filter: blur(100px);
}

.freezer-section .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.freezer-section h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.freezer-section h2 span {
  color: var(--laranja);
  text-transform: uppercase;
}

.freezer-section p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 500px;
}

.freezer-section .cards {
  margin-top: 30px;
}

.freezer-section .card-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f57c00, #e56f00);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.freezer-section .card-item:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.freezer-section .check {
  width: 22px;
  height: 22px;
  stroke: white;
}

.freezer-section .cta-box {
  background: var(--verde);
  padding: 28px;
  border-radius: 18px;
  margin-top: 30px;
  color: var(--bg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.freezer-section .cta-box small {
  font-weight: 600;
  color: var(--laranja);
}

.freezer-section .cta-box h3 {
  font-size: 30px;
  margin: 12px 0 18px;
  font-weight: 900;
  line-height: 1.2;
}

.freezer-section .cta-box h3 span {
  color: var(--laranja);
}

.freezer-section .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f57c00, #d96d00);
  color: white;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(245,124,0,0.4);
}

.freezer-section .button:hover {
  transform: scale(1.05);
}

.freezer-section .cta-note {
  font-size: 12px;
  margin-top: 12px;
  color: var(--bg);
}

.freezer-section .image-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.freezer-section .image-box::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(254,189,51,0.3), transparent);
  filter: blur(40px);
}

.freezer-section .image-box img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

@media(max-width: 900px) {
  .freezer-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .freezer-section h2 {
    font-size: 34px;
  }
}

.freezer-section .reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: all .8s ease;
}

.freezer-section .reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.freezer-item {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(4px);
  transition: all .5s ease;
}

.freezer-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.freezer-item:nth-child(1){ transition-delay: .1s; }
.freezer-item:nth-child(2){ transition-delay: .2s; }
.freezer-item:nth-child(3){ transition-delay: .3s; }
.freezer-item:nth-child(4){ transition-delay: .4s; }

.freezer-section .image-box {
  opacity: 0;
  transform: scale(0.9) rotate(-3deg);
  transition: all 1s cubic-bezier(.22,.61,.36,1);
}

.freezer-section .image-box.show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}


/* ================================= */
/* SECTION Carrosel                  */
/* ================================= */

.segment-carousel {
  --verde: #006572;
  --laranja: #F57C00;
  --amarelo: #FEBD33;

  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}
.segment-carousel .carousel-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.3;
  color: #2b2b2b;
  margin-bottom: 50px;
}

.segment-carousel .brand {
  color: var(--verde);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.segment-carousel .highlight {
  color: var(--laranja);
  position: relative;
}


.segment-carousel .carousel-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--laranja);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  line-height: 1.3;
}

.segment-carousel .carousel-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: var(--verde);
  margin: 12px auto 0;
  border-radius: 2px;
}

.segment-carousel .carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.segment-carousel .carousel-wrapper::before,
.segment-carousel .carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.segment-carousel .carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.segment-carousel .carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.segment-carousel .carousel-track {
  overflow: hidden;
  width: 100%;
}

.segment-carousel .track-content {
  display: flex;
  gap: 22px;
  width: max-content;
}

.segment-carousel .track-1 .track-content {
  animation: segment-scroll-left 45s linear infinite;
}

.segment-carousel .track-2 .track-content {
  animation: segment-scroll-right 50s linear infinite;
}


.segment-carousel .tag {
  padding: 20px 42px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
  color: white;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.segment-carousel .tag:hover {
  transform: scale(1.05);
}

.segment-carousel .tag-verde {
  background: linear-gradient(135deg, #006572, #0a7c8a);
}

.segment-carousel .tag-laranja {
  background: linear-gradient(135deg, #F57C00, #e56f00);
}

.segment-carousel .tag-amarelo {
  background: linear-gradient(135deg, #FEBD33, #f4b52a);
  color: #333;
}

@keyframes segment-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes segment-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 768px) {
  .segment-carousel .carousel-title {
    font-size: 24px;
  }

  .segment-carousel .carousel-wrapper {
    max-width: 100%;
  }

  .segment-carousel .tag {
    padding: 12px 20px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .segment-carousel .carousel-wrapper::before,
  .segment-carousel .carousel-wrapper::after {
    display: none;
  }
}


/* ================================= */
/* SECTION ORIGEM                    */
/* ================================= */

.origem {
    background: linear-gradient(135deg, #004d57, #006572);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.origem::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.25;
}


.origem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.origem-title {
    font-family: var(--fw-display);
    font-size: 56px;
    line-height: 1.1;
    color: white;
}


.origem-line {
    width: 70px;
    height: 6px;
    background: var(--laranja);
    border-radius: 6px;
    margin: 25px 0;
}

.origem-desc {
    font-size: 18px;
    color: white;
    line-height: 1.7;
    max-width: 500px;
}


.origem-card {
    margin-top: 35px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px 30px 30px 45px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.origem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}


.origem-dot {
    width: 16px;
    height: 16px;
    background: var(--laranja);
    border-radius: 50%;

    position: absolute;
    left: -8px;
    top: 32px;

    box-shadow: 0 0 12px rgba(245,124,0,0.6);
}


.origem-text {
    font-size: 17px;
    color: white;
    line-height: 1.6;
    margin-bottom: 14px;
}

.origem-strong {
    font-family: var(--fw-display);
    font-size: 22px;
    color: white;
    line-height: 1.4;
    font-weight: 600;
}

.accent {
    color: var(--laranja);
}


.origem-image {
    position: relative;
}

.origem-image img {
    width: 100%;
    border-radius: 18px;

    border: 4px solid rgba(255,255,255,0.2);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.4),
        0 0 0 2px rgba(255,255,255,0.05);

    transition: transform .35s ease;
}

.origem-image img:hover {
    transform: scale(1.03);
}


/* ========================= */
/* ANIMATIONS                  */
/* ========================= */

.fade-up,
.fade-down,
.fade-left,
.fade-right,
.scale-in {
    opacity: 0;
    transition:
        opacity .9s cubic-bezier(.22, .61, .36, 1),
        transform .9s cubic-bezier(.22, .61, .36, 1);
}


.fade-up {
    transform: translateY(60px);
}

.fade-down {
    transform: translateY(-60px);
}

.fade-left {
    transform: translateX(-60px);
}

.fade-right {
    transform: translateX(60px);
}

.scale-in {
    transform: scale(.92);
}


/* ================================= */
/* SECTION NOTIFICAÇÕES */
/* ================================= */

.notificacoes {
    background: linear-gradient(135deg, #004d57, #006572);
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}


.notificacoes::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: .25;
}


.notificacoes-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}


.notificacoes-left {
    max-width: 540px;
}



.notificacoes-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--laranja);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: 20px;
}



.notificacoes-title {
    font-family: var(--fw-display);
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 16px;
}


.notificacoes-sub {
    font-size: 18px;
    opacity: .85;
    margin-bottom: 40px;
}


.notificacoes-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}



.notificacao-card {

    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    transition: all .3s ease;
    cursor: pointer;
}


.notificacao-card:hover {
    background: var(--laranja);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border-color: transparent;
}



.notificacao-card:hover h3,
.notificacao-card:hover p {
    color: white;
}

.notificacao-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s ease;
}



.notificacao-icon svg {
    width: 20px;
    height: 20px;
}



.notificacao-icon.red {
    background: rgba(255, 80, 80, 0.2);
    color: #ff9c9c;
}

.notificacao-icon.yellow {
    background: rgba(255, 200, 0, 0.2);
    color: #FEBD33;
}

.notificacao-icon.blue {
    background: rgba(80, 150, 255, 0.2);
    color: #9cc8ff;
}



.notificacao-card:hover .notificacao-icon {

    background: white;
    color: var(--laranja);
    transform: scale(1.1);

}



.notificacao-text h3 {

    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;

}

.notificacao-text p {

    font-size: 14px;
    opacity: .85;

}


.notificacoes-footer {
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
}

.notificacoes-footer strong {
    color: var(--amarelo);
}


.notificacoes-image {

    display: flex;
    justify-content: flex-end;

}



.float-phone {

    animation: floatPhone 6s ease-in-out infinite;

}

@keyframes floatPhone {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}


.notificacoes-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* ========================= */
/* SECTION CONTROLE          */
/* ========================= */

.controle-v8{
  padding:50px 5px;
  background: var(--bg);
  color:var(--laranja);
}


.controle-header-v8{
  text-align:center;
  max-width:700px;
  margin:0 auto 70px;
}

.controle-header-v8 h2{
  font-family: var(--fw-display);
  font-size:52px;
  line-height:1.2;
  margin-top:10px;
  color:var(--verde);
}

.controle-header-v8 h2 span{
  color: var(--laranja);
}

.controle-header-v8 p{
  margin-top:15px;
  font-size:18px;
  color: var(--verde);
}


.controle-grid-v8{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}


.controle-image-v8{
  display:flex;
  justify-content:center;
}

.controle-image-v8 img{
  max-width:420px;
  width:100%;
  border-radius:16px;
  padding:20px;
}


.controle-content-v8{
  max-width:520px;
}


.controle-list-v8{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:30px;
}

.card-v8{
  display:flex;
  gap:14px;
  align-items:flex-start;
    background-color: var(--verde);
  padding:16px;
  border-radius:12px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
color: var(--bg);
  transition:
    transform .25s cubic-bezier(.22,.61,.36,1),
    box-shadow .25s ease;
}

.card-v8:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow:0 20px 45px rgba(0,0,0,0.35);
  background-color: var(--laranja);
}


.card-v8 svg{
  width:22px;
  height:22px;
  flex-shrink:0;
}


.card-v8 strong{
  display:block;
  font-size:15px;
}

.card-v8 span{
  font-size:13px;
  opacity:.9;
}


.controle-highlight-v8{
  background: var(--laranja);
  color:white;
  padding:22px;
  border-radius:14px;
  margin-bottom:25px;

  box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.controle-highlight-v8 strong{
  display:block;
  font-size:22px;
  font-weight:800;
}

.controle-highlight-v8 span{
  font-size:14px;
}


.controle-cta-v8{
  display:block;
  text-align:center;
  color: var(--bg);
  background: var(--amarelo);
  padding:18px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.controle-cta-v8:hover{
  transform: translateY(-2px);
  background:#004d57;
}



.reveal,
.reveal-left,
.reveal-right{
  will-change: transform, opacity;
}


.card-v8{
  transform: translateY(20px);
  opacity: 0;
}

.card-v8.show{
  transform: translateY(0);
  opacity: 1;
}

@media(max-width:768px){

  .controle-grid-v8{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .controle-header-v8 h2{
    font-size:34px;
  }

}
/* ================================= */
/* CASCADE ANIMATION */
/* ================================= */

.cascade-item {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .5s ease,
        transform .5s ease;
}

.cascade-item.show {
    opacity: 1;
    transform: translateY(0);
}


.pop-icon {
    transform: scale(.7);
    transition: transform .4s ease;
}

.pop-icon.show {
    transform: scale(1);
}



/* ============================ */
/* CASCADE                      */
/* ============================ */

.cascade-item {

    opacity: 0;
    transform: translateX(-20px);
    transition: all .5s ease;

}

.cascade-item.show {

    opacity: 1;
    transform: none;

}

/* ================================= */
/* SECTION IMPRESSÃO                 */
/* ================================= */

.impressao {
    background: var(--neutro);
    padding: 80px 0;
    color: var(--verde);
}


.impressao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.impressao-image {
    display: flex;
    justify-content: center;
}

.impressao-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;

    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);

    transition: .4s ease;
}

.impressao-image img:hover {
    transform: scale(1.04) rotate(-1deg);
}


.impressao-title {
    font-family: var(--fw-display);
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--verde);
}


.impressao-box {
    background: var(--laranja);
    padding: 22px 24px;
    border-radius: 14px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    margin-bottom: 35px;

    transition: .3s;
}

.impressao-box p {
    font-size: 18px;
    color: white;
}

.impressao-box strong {
    color: var(--amarelo);
}


.impressao-box:hover {
    transform: translateY(-4px) scale(1.01);
}


.impressao-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 35px auto;
    max-width: 520px;
    text-align: center;
}


.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}


.step-number {
    font-size: 42px;
    font-weight: 800;
    font-family: var(--fw-display);
    line-height: 1;
}


.step-1 {
    color: var(--amarelo);
}

.step-2 {
    color: var(--laranja);
}

.step-3 {
    color: var(--verde);
}

.step-label {
    font-size: 14px;
    color: var(--verde);
    font-weight: 500;
}


.impressao-footer {
    background: var(--verde);
    padding: 20px;
    border-radius: 14px;
    font-size: 16px;
    color: white;
    backdrop-filter: blur(6px);
}

.impressao-footer strong {
    color: var(--amarelo);
}


/* ================================= */
/* SECTION FISCALIZAÇÃO              */
/* ================================= */


.df-v4{
  padding:80px 20px;
  background: var(--bg);
}


.df-header-v4{
  text-align:center;
  margin-bottom:40px;
}

.df-header-v4 h2{
  font-family: var(--fw-display);
  font-size:48px;
  color: var(--verde);
}


.df-compare-v4{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  margin-bottom:30px;
}

.df-card-v4{
  display:flex;
  gap:14px;

  padding:20px;
  border-radius:14px;

  transition:.25s;
}

.df-card-v4:hover{
  transform: translateY(-4px);
}


.df-card-v4.left{
  background: var(--laranja);
  color: var(--bg);
}


.df-card-v4.right{
  background: var(--verde);
  color: var(--bg);
}


.df-card-v4 .icon{
  width:38px;
  height:38px;
  border-radius:10px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.df-card-v4.left .icon{
  background: var(--verde);
  color: var(--bg);
}

.df-card-v4.right .icon{
  background: var(--amarelo);
  color: var(--verde);
}


.df-card-v4 h3{
  font-size:16px;
  margin-bottom:4px;
}

.df-card-v4 p{
  font-size:14px;
}


.df-label-card{
  display:flex;
  justify-content:center;
  align-items:center;

  width:max-content;
  margin:0 auto 30px;

  padding:12px 22px;

  background: var(--laranja);
  color: var(--bg);

  border-radius:999px;

  font-size:12px;
  letter-spacing:.15em;
  font-weight:700;
}


.df-media-v4{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}



.img-wrap{
  width:100%;
  height:320px; 

  display:flex;
  align-items:center;
  justify-content:center;
}

.img-wrap img{
  width:100%;
  height:100%;

  object-fit:contain; 
  display:block;
}

@media(max-width:768px){

  .df-compare-v4{
    grid-template-columns:1fr;
  }

  .df-media-v4{
    grid-template-columns:1fr;
  }

  .df-header-v4 h2{
    font-size:30px;
  }

}

  
/* =============================== */
/* SECTION IMPACTO                  */
/* =============================== */

.impacto {
    background: var(--verde);
    padding: 50px 0;
    color: white;
    position: relative;
    overflow: hidden;
}


.impacto-title {
    font-family: var(--fw-display);
    font-size: 56px;
    text-align: center;
    margin-bottom: 60px;
}



.impacto-box {
    max-width: 1050px;
    margin: auto;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 36px;
    padding: 80px 90px;
    position: relative;
    overflow: hidden;
}



.impacto-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amarelo);
    color: var(--verde);
    font-family: var(--fw-display);
    padding: 12px 30px;
    border-radius: 0 0 14px 14px;
    font-size: 14px;
    font-weight: 700;
}


.impacto-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: center;
}



.impacto-small {
    font-size: 12px;
    letter-spacing: .12em;
    opacity: .7;
    margin-bottom: 10px;
}

.impacto-big {
    font-family: var(--fw-display);
    font-size: 52px;
    margin-bottom: 30px;
}

.impacto-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 30px 0;
    width: 80%;
}

.impacto-loss {
    font-family: var(--fw-display);
    font-size: 52px;
    color: #ff5a5a;
}



.impacto-right {
    display: flex;
    justify-content: center;
}



.impacto-card {
    background: #f3f4f6;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    width: 360px;
    color: #1f2937;
    position: relative;
    transition: .3s;
}

.impacto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}



.impacto-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--laranja);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.impacto-icon svg {
    stroke: white;
    width: 22px;
}




.impacto-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 16px;
}

.impacto-card-top svg {
    stroke: #22c55e;
    width: 20px;
}

.impacto-card-divider {
    height: 1px;
    background: #d1d5db;
    margin-bottom: 16px;
}



.impacto-card-label {
    font-size: 11px;
    letter-spacing: .12em;
    color: #6b7280;
    margin-bottom: 6px;
}

.impacto-card-value {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    font-family: var(--fw-display);
}


.impacto-card-value .currency {
    font-size: 36px;
    color: var(--verde);
}


.impacto-card-value .impact-counter {
    font-size: 52px;
    font-weight: 700;
    color: var(--verde);
}


.impacto-card-value .period {
    font-size: 18px;
    color: #6b7280;
    margin-left: 4px;
}


.impacto-card-footer {
    margin-top: 20px;
    background: #e7f7ed;
    color: #15803d;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}


.impacto-bg {
    position: absolute;
    right: -40px;
    bottom: -100px;
    font-family: var(--fw-display);
    font-size: 480px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}


.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all .8s ease;
}


.reveal {
    transform: translateY(40px);
}



.reveal-left {
    transform: translateX(-60px);
}



.reveal-right {
    transform: translateX(60px);
}



.reveal-scale {
    transform: scale(.9);
}


.show {
    opacity: 1;
    transform: none;
}

/* ========================= */
/* PREÇO - PLANO ÚNICO    */
/* ========================= */

.pricing {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

.pricing-eyebrow {
    font-size: 12px;
    letter-spacing: .2em;
    color: var(--laranja);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-title {
    font-family: var(--fw-display);
    font-size: 48px;
    color: var(--verde);
    margin-bottom: 10px;
}

.pricing-sub {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}


.pricing-cards {
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--verde);
    color: white;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transition: all .3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

.pricing-card.highlight {
    border: 2px solid var(--amarelo);
}


.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--laranja);
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}



.pricing-plan {
    font-size: 24px;
    margin-bottom: 20px;
}


.pricing-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}


.pricing-price-block {
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 46px;
    font-weight: 900;
    color: var(--amarelo);
}

.pricing-price .currency {
    font-size: 20px;
}

.pricing-price .period {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}


.pricing-setup {
    font-size: 14px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.85);
}

.pricing-btn.cta {
    display: block;
    background: var(--laranja);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(245,124,0,0.4);
    transition: .3s;
}

.pricing-btn.cta:hover {
    transform: translateY(-3px);
    background: var(--amarelo);
    color: var(--verde);
    box-shadow: 0 18px 40px rgba(245,124,0,0.5);
}


.pricing-note {
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ========================= */
/* BENEFÍCIOS                  */
/* ========================= */

.pricing-included {
    margin-top: 80px;
}

.included-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--verde);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.included-item {
    background: var(--verde);
    color: white;
    padding: 18px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: all .25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.included-item i {
    color: var(--amarelo);
    transition: .25s;
}


.included-item:hover {
    background: var(--laranja);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.included-item:hover i {
    color: white;
}

@media(max-width:768px){

    .pricing-title {
        font-size: 32px;
    }

    .included-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* ============================= */
/*  SECTION IMPLANTAÇÃO          */
/* ============================= */

.implantacao{
background: var(--amarelo);
padding: 50px 0;
}


.impl-header{
text-align:center;
margin-bottom:60px;
}


.impl-title{
font-family: var(--fw-display);
font-size:48px;
color: var(--verde);
margin-top:20px;
}

.impl-sub{
margin-top:10px;
color: rgba(0,0,0,0.6);
font-size:18px;
}


.impl-steps{
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
}

.impl-step{
width:100%;
display:flex;
justify-content:center;
}


.step-card{
background:white;
border-radius:24px;
padding:24px;
display:flex;
align-items:center;
gap:18px;
width:100%;
max-width:420px;
height:130px;
min-height:130px;
box-shadow: 0 15px 30px rgba(0,0,0,0.12);
transition:.3s ease;
}

.step-card:hover{
transform:translateY(-4px);
box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}


.step-icon{
width:56px;
height:56px;
background: var(--verde);
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
}

.step-icon svg{
width:26px;
height:26px;
color:white;
}


.step-content{
display:flex;
flex-direction:column;
justify-content:center;
height:100%;
flex:1;
}

.step-num{
font-size:11px;
font-weight:700;
color: var(--laranja);
letter-spacing:.08em;
margin-bottom:2px;
}

.step-content h3{
font-size:18px;
color: var(--verde);
font-weight:700;
margin:0;
}

.step-content p{
font-size:14px;
color:#6b7280;
margin-top:2px;
}


.step-arrow{
display:flex;
justify-content:center;
}

.step-arrow svg{
width:22px;
height:22px;
color: rgba(0,0,0,0.3);
}


.fade-up{
opacity:0;
transform: translateY(40px) scale(0.96);
filter: blur(4px);
transition: all 0.6s ease;
}

.fade-up.show{
opacity:1;
transform: translateY(0) scale(1);
filter: blur(0);
}


.delay-1{ transition-delay: 0.1s; }
.delay-2{ transition-delay: 0.25s; }
.delay-3{ transition-delay: 0.4s; }
.delay-4{ transition-delay: 0.55s; }
.delay-5{ transition-delay: 0.7s; }


@media(max-width:768px){
.impl-title{
font-size:34px;
}

.step-card{
max-width:100%;
height:120px;
min-height:120px;
}

}


.cta-impact {
    padding: 140px 0;
    background: linear-gradient(135deg,
            var(--laranja),
            #ff6a00);
    text-align: center;
    color: white;
}



.cta-impact-content {
    max-width: 800px;
    margin: auto;
}



.cta-impact-title {
    font-family: var(--fw-display);
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
}



.cta-impact-sub {
    font-size: 36px;
    font-weight: 700;
    opacity: .9;
    margin-bottom: 50px;
}


.cta-impact-features {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}


.cta-pill {

    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}

.cta-pill svg {
    width: 18px;
    height: 18px;
}


.cta-pill:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
}



.cta-pill.highlight {
    background: white;
    color: var(--laranja);
}


.cta-impact-button {
    display: inline-block;
    padding: 22px 50px;
    background: white;
    color: var(--laranja);
    font-weight: 800;
    border-radius: 26px;
    margin-top: 10px;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    transition: .35s;
}



.cta-impact-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}



.cta-impact-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);

    transition: .6s;
}

.cta-impact-button:hover::before {
    left: 120%;
}




/* =============================== */
/* FOOTER */
/* =============================== */

.footer {
    background: white;
    padding-top: 80px;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 320px;
    color: #6b7280;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--verde);
    font-weight: 700;
}



.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: .25s;
}

.footer-links a:hover {
    color: var(--laranja);
    transform: translateX(4px);
}

/* ========================= */
/* SOCIAL ICONS */
/* ========================= */

.social-icons{
  display:flex;
  gap:14px;
}


.social-icons a{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: var(--verde);
  color: white;
  text-decoration:none;
  transition: transform .2s ease, background .2s ease;
}


.social-icons a:hover{
  transform: translateY(-4px);
  background: var(--laranja);
}

.social-icons i{
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;           
}


.social-icons a:active{
  transform: scale(0.95);
}

/* =============================== */
/* BOTÃO                             */
/* =============================== */

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #6b7280;
}



/* =============================== */
/* BOTÃO VOLTAR AO TOPO             */
/* =============================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg,
            var(--laranja),
            #ff9c2f);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s;
    z-index: 999;
}


.back-to-top svg {
    stroke: white;
    width: 22px;
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* =============================== */
/* VIDEO DEMO */
/* =============================== */

.video-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 101, 114, 0.05), transparent 60%),
        radial-gradient(circle at 80% 40%, rgba(0, 101, 114, 0.06), transparent 60%),
        var(--neutro);

    text-align: center;
}

.video-heading {
    font-family: var(--fw-display);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--verde);
}

.video-card {
    max-width: 900px;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.video-button {
    display: inline-block;
    margin-top: 40px;
    background: var(--verde);
    color: white;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.video-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}


.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: var(--verde);
    color: white;
    font-size: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    transition: .3s;

}


.video-play-button:hover {

    transform: translate(-50%, -50%) scale(1.1);

    background: var(--laranja);

}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 15px;
    left: 15px;
  }
}
/* ================================= */
/* RESPONSIVIDADE */
/* ================================= */


@media (max-width:1024px){

.hero-grid,
.problema-grid,
.origem-grid,
.notificacoes-grid,
.etiquetas-grid,
.impressao-grid,
.impacto-grid{
grid-template-columns:1fr;
gap:50px;
}

.footer-grid{
grid-template-columns:1fr 1fr;
gap:40px;
}

.implantacao-timeline{
grid-template-columns:repeat(2,1fr);
row-gap:60px;
}

.pricing-cards{
grid-template-columns:1fr;
max-width:420px;
}

.impacto-box{
padding:60px 40px;
}

.hero-title{
font-size:46px;
}

.notificacoes-title{
font-size:44px;
}

.pricing-title{
font-size:44px;
}

.cta-impact-title{
font-size:48px;
}

.video-heading{
font-size:40px;
}

}


@media (max-width:768px){

.container{
padding:0 16px;
}


.hero{
padding-top:120px;
padding-bottom:80px;
}

.hero-grid{
gap:40px;
text-align:center;
}

.hero-description{
margin-left:auto;
margin-right:auto;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.hero-stats{
justify-content:center;
gap:30px;
flex-wrap:wrap;
}


.hero-title{
font-size:38px;
padding:24px;
}

.problema-title{
font-size:34px;
}

.origem-title{
font-size:38px;
}

.notificacoes-title{
font-size:38px;
}

.etiquetas-title{
font-size:36px;
}

.impressao-title{
font-size:34px;
}

.impacto-title{
font-size:40px;
}

.pricing-title{
font-size:36px;
}

.video-heading{
font-size:34px;
}

.cta-impact-title{
font-size:38px;
}

.cta-impact-sub{
font-size:24px;
}


.problema-grid{
gap:40px;
}

.problema-image img{
max-width:100%;
}


.origem-grid{
gap:40px;
text-align:center;
}

.origem-desc{
margin:auto;
}


.notificacoes-left{
max-width:100%;
}

.notificacoes-image{
justify-content:center;
}



.etiquetas-grid{
gap:40px;
}

.etiqueta-title{
font-size:40px;
margin-bottom:30px;
}



.impressao-grid{
gap:40px;
text-align:center;
}

.impressao-steps{
gap:40px;
}


.impacto-box{
padding:50px 25px;
}

.impacto-grid{
gap:50px;
}

.impacto-big,
.impacto-loss{
font-size:40px;
}

.impacto-card{
width:100%;
max-width:320px;
}

.impacto-bg{
font-size:260px;
right:-80px;
}


.pricing-sub{
font-size:16px;
}

.pricing-card{
padding:30px;
}

.implantacao-timeline{
grid-template-columns:1fr;
gap:60px;
}

.implantacao-timeline::before{
display:none;
}


.cta-impact{
padding:100px 0;
}

.cta-impact-features{
gap:14px;
}


.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-brand p{
margin:auto;
}

.social-icons{
justify-content:center;
}

}



@media (max-width:480px){

.hero-title{
font-size:32px;
}

.notificacoes-title{
font-size:32px;
}

.pricing-title{
font-size:30px;
}

.cta-impact-title{
font-size:32px;
}

.video-heading{
font-size:30px;
}

.hero-stats{
flex-direction:column;
gap:20px;
}

.hero-buttons a{
width:100%;
justify-content:center;
}

}

@media (max-width:768px){

.hero-title{
line-height:1.2;
padding:20px;
border-radius:14px;
}

.hero-title::before{
transform:rotate(-0.5deg);
}

.hero-description{
font-size:16px;
}

.hero-btn-primary,
.hero-btn-outline{
width:100%;
max-width:280px;
justify-content:center;
}

}


@media (max-width:768px){

.impacto-box{
padding:40px 20px;
border-radius:26px;
}

.impacto-badge{
font-size:11px;
padding:8px 18px;
top:-12px;
}

.impacto-grid{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}


.impacto-small{
font-size:11px;
}

.impacto-big{
font-size:34px;
}

.impacto-loss{
font-size:34px;
}

.impacto-line{
width:100%;
margin:20px 0;
}


.impacto-card{
width:100%;
max-width:280px;
margin:auto;
padding:24px;
}


.impacto-card-value .currency{
font-size:26px;
}

.impacto-card-value .impact-counter{
font-size:36px;
}

.impacto-card-value .period{
font-size:14px;
}

.impacto-bg{
font-size:220px;
right:-60px;
bottom:-120px;
opacity:0.05;
}

}