:root {
    --primary-color: #007B8A;
    --secondary-color: #F4A261;
    --success-color: #2ECC71;
    --background-light: #F7F9FA;
    --text-dark: #2E2E2E;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* necessário para posicionar dropdown do menu móvel/tablet */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo .logo-img {
    height: 32px;
    width: auto;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e8935a;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 28px;
    width: auto;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 0; /* aumenta o espaço inferior para caber as imagens abaixo do texto */
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    grid-template-areas: "text media";
    justify-items: center;   /* centraliza os itens no grid */
    text-align: center;      /* centraliza textos */
}

/* Desktop: texto à esquerda e mockups à direita, alinhados como antes */
@media (min-width: 1025px) {
  .hero-content {
    grid-template-columns: 1fr 1fr; /* duas colunas */
    grid-template-areas: "text media";
    justify-items: stretch;
    text-align: left;               /* texto à esquerda */
    align-items: start; /* alinha topo das colunas */
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;        /* alinha conteúdo à esquerda */
  }
  .hero-text .btn-large {
    align-self: flex-start;         /* botão alinhado à esquerda */
  }
  .hero-media {
    display: flex;
    justify-content: center;        /* centraliza mockups na coluna direita */
    align-items: center;
    min-height: 620px;
  }
}
.hero-text { grid-area: text; }
.hero-media { 
  grid-area: media; 

  margin-top: 24px;        /* afasta dos textos acima */
}
.hero-cta   { grid-area: cta; 
position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.mockup-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-light);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

/* Cards de funcionalidades: tudo centralizado (ícone, título, descrição) */
.features .feature-item {
    display: flex;
    flex-direction: column;      /* empilha ícone, título, descrição */
    align-items: center;         /* centraliza horizontalmente */
    text-align: center;          /* centraliza textos */
    gap: 0.75rem;                /* espaço entre linhas */
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.features .feature-item i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin: 0;                   /* remove margin-top legado */
}

.features .feature-item h3 {
    margin: 0 0 0.25rem;         /* aproxima do ícone */
    color: var(--text-dark);
}

.features .feature-item p {
    margin: 0;                   /* terceira linha, sem margens extras */
    color: #666;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.plan-description {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Demo Section */
.demo {
    padding: 80px 0;
    background: var(--background-light);
}

.demo h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Galeria de demonstração: centralizar cards em múltiplas linhas */
.demo-gallery {
    display: flex;           /* em vez de grid */
    flex-wrap: wrap;         /* permite quebrar linha */
    gap: 2rem;               /* mantém espaçamento */
    justify-content: center; /* centraliza cards nas linhas */
}

.demo-item {
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.demo-item:hover {
    transform: translateY(-5px);
}

.demo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.demo-item h3 {
    padding: 1rem;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Chat Widget */
#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Seção de vídeo com fundo laranja do sistema */
.video-section {
  padding: 64px 0;
  background: var(--secondary-color); /* #F4A261 */
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 2;                /* garante sobreposição sobre os mockups fixos */
}
.video-section h2 {
  margin-bottom: 24px;
}
.video-section .video-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-section .video-wrapper iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
/* Ajuste em telas menores */
@media (max-width: 640px) {
  .video-section {
    padding: 48px 0;
  }
  .video-section h2 {
    font-size: 1.5rem;
  }
}

/* Desktop (>=1025px): mockups grandes e com efeito de movimento, SEM posição fixa */
@media (min-width: 1025px) {
  .hero {
    position: relative;
  }
  .hero .hero-text {
    position: relative;
    z-index: 3; /* texto sempre acima */
  }
  .hero .mockup-stack {
    position: sticky !important;         /* pertence só à seção 1 */
    top: 100px !important;              /* alinhado com a linha do título */
    right: auto !important;             /* remove posicionamento fixo anterior */
    left: auto !important;
    z-index: auto;                      /* sem layer especial no desktop */
    max-width: 680px;                   /* mockups maiores */
    height: auto;                       /* altura para posicionamento absoluto interno */
    margin-right: -32px;                /* empurra mais para a borda direita */
  }
  .hero .mockup-image {
    position: absolute;
    width: 420px;                       /* amplia cada cartão */
    transition: transform 0.3s ease;
  }
  .hero .mockup-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  }
  .hero .mockup-back {
    top: -8px;                          /* sobe levemente sem passar da linha do título */
    left: -20px;
    z-index: 1;
    transform: rotate(-3deg);
  }
  .hero .mockup-front {
    top: -12px;                         /* sobe um pouco, mantendo alinhamento com o título */
    right: -20px;
    z-index: 2;
    transform: rotate(2deg);
  }
  .hero .mockup-stack:hover .mockup-back {
    transform: rotate(-5deg) translateX(-10px);
  }
  .hero .mockup-stack:hover .mockup-front {
    transform: rotate(3deg) translateX(5px);
  }

  /* Removido stacking especial da seção seguinte para evitar efeitos globais */
  .video-section {
    position: static;                  /* volta ao fluxo normal */
    z-index: auto;
  }
  
  .hero .hero-media {
    display: flex;
    justify-content: flex-end;          /* empurra mockups para a direita da coluna */
    align-items: flex-start;
    min-height: 620px;
  }
}

.chat-button {
    width: 60px;
    height: 60px;
    background: #25D366; /* WhatsApp green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.chat-button:hover {
    transform: scale(1.1);
    filter: brightness(1.05);
}
.chat-button i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Tablets: header em duas linhas (logo+botões, depois navegação) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hamburger {
        display: none; /* sem hambúrguer em tablets */
    }
    .nav-container {
        flex-wrap: wrap; /* permite quebrar em duas linhas */
        gap: 8px;
    }
    .nav-logo {
        order: 0;
        flex: 1 1 auto; /* ocupa o espaço da esquerda */
    }
    .nav-buttons {
        order: 1;
        display: flex;
        gap: 0.75rem;
    }
    .nav-menu {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 1.25rem;
        padding-top: 8px;
        border-top: 1px solid #eee; /* separa visualmente as linhas */
        margin-top: 4px;
    }
    
    /* Hero em uma coluna e centralizada em tablets */
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "media"
            "cta";
        gap: 2rem;
        justify-items: center;
        text-align: center;
    }

    /* Área de mídia mais alta para afastar imagens do texto */
    .hero .hero-media {
        min-height: 480px;
        margin-top: 24px;
        align-items: center;
    }
    
    .hero .mockup-stack {
        position: static;           /* sem fixo no tablet */
        transform: none;
        margin: 8px auto 0;        /* centralizado com menor espaçamento acima */
        max-width: 420px;
        height: auto;
    }
    .hero .mockup-image {
        position: static;           /* imagens em fluxo normal */
        width: 100%;
        transform: none;
    }
    .hero .mockup-back,
    .hero .mockup-front {
        transform: none;
        top: auto;
        left: auto;
        right: auto;
    }
}

/* Esconde completamente o dropdown no desktop e tablet */
@media (min-width: 769px) {
    .nav-dropdown {
        display: none !important;
    }
}

/* Mobile: já existiam regras; mantemos e complementamos */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto; /* alinha hambúrguer à direita */
        align-self: center;
    }
    
    .nav-container {
        /* mantém o cabeçalho em uma única linha no mobile */
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
    }
    
    /* Dropdown unificado: overlay abaixo do header */
    .nav-dropdown {
        display: none;
    }
    .nav-dropdown.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;                       /* sem espaço entre menu e botões */
        background: var(--white);
        padding: 12px 20px;
        box-shadow: var(--shadow);
        border-top: 1px solid #eee;
        z-index: 1000;
    }

    /* Dentro do dropdown, mostramos menu e botões em coluna, sem posição absoluta */
    .nav-dropdown.active .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0;
        position: static;
        width: 100%;
    }
    .nav-dropdown.active .nav-buttons {
        display: flex;
        gap: 0.75rem;
        padding-top: 8px;
        border-top: 1px solid #f2f2f2; /* separador sutil */
        position: static;
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu.active {
        /* dropdown sobreposto abaixo do header */
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0.75rem;
        padding: 12px 20px;
        box-shadow: var(--shadow);
        border-top: 1px solid #eee;
        z-index: 1000;
    }
    
    .nav-buttons.active {
        /* botões abaixo dos links no mesmo dropdown (sobreposto) */
        display: flex;
        position: static;
        left: auto;
        right: auto;
        top: auto;
        background: var(--white);
        gap: 0.75rem;
        padding: 0;
        box-shadow: none;
        border-top: none;
        z-index: 1000;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "media"
            "cta";
        text-align: center;
        gap: 2rem;
        justify-items: center;
    }

    .hero-media {
        align-items: center;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero {
        padding: 96px 0 56px;
    }

    .btn-large {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero .mockup-stack {
        position: static;     /* volta ao fluxo normal no mobile */
        transform: none;      /* remove translate para centralização */
        margin: 8px auto 0;  /* centralizado com menor espaçamento acima */
        max-width: 260px;
        height: auto;
    }
    
    .hero .mockup-image {
        position: static;     /* imagens em fluxo normal */
        width: 100%;
        transform: none;
    }
    
    .hero .mockup-back,
    .hero .mockup-front {
        transform: none;
        top: auto;
        left: auto;
        right: auto;
    }
    
    .hero .mockup-stack:hover .mockup-back,
    .hero .mockup-stack:hover .mockup-front {
        transform: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 96px 0 56px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-media {
        gap: 1.5rem;
    }

    .hero .mockup-stack {
        max-width: 260px;
        height: auto;
    }
    
    .hero .mockup-image {
        position: static;
        width: 100%;
        transform: none;
    }

    .hero .mockup-back,
    .hero .mockup-front {
        transform: none;
        top: auto;
        left: auto;
        right: auto;
    }

    .hero .mockup-stack:hover .mockup-back,
    .hero .mockup-stack:hover .mockup-front {
        transform: none;
    }

    .btn-large {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .benefits,
    .features,
    .pricing,
    .demo,
    .contact {
        padding: 60px 0;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.feature-item,
.pricing-card,
.demo-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



/* Mockups clicáveis com cursor de zoom */
.hero .mockup-image img {
  cursor: zoom-in;
}

/* Empilhamento e sobreposição dos mockups (liberar transform para parallax) */
.hero .mockup-stack {
  position: relative; /* removido !important para permitir transform do JS */
  top: auto;          /* removido !important */
  left: auto;         /* removido !important */
  transform: none;    /* removido !important */
  margin-top: 24px;        /* empurra as imagens para baixo, abaixo do texto */
  z-index: 1;                /* abaixo da seção 2 (que terá z-index maior) */
  max-width: 450px;
  margin: 0 auto;
  align-self: flex-start;
  height: 700px; /* altura fixa para posicionamento absoluto */
}

.hero .mockup-image {
  position: absolute;
  width: 280px;
  transition: transform 0.3s ease;
}

.hero .mockup-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Cardápio de trás (hortifruit) - mais à esquerda e atrás */
.hero .mockup-back {
  top: 20px;
  left: 0;
  z-index: 1;
  transform: rotate(-3deg);
}

/* Cardápio da frente (hamburgueria) - na frente e mais à direita */
.hero .mockup-front {
  top: 0;
  right: 0;
  z-index: 2;
  transform: rotate(2deg);
}

/* Efeito hover para destacar os mockups */
.hero .mockup-stack:hover .mockup-back {
  transform: rotate(-5deg) translateX(-10px);
}

.hero .mockup-stack:hover .mockup-front {
  transform: rotate(3deg) translateX(5px);
}

/* Em telas muito pequenas, ajustar tamanhos e posições */
@media (max-width: 480px) {
  .hero .mockup-stack {
    max-width: 320px;
    height: 300px;
  }
  
  .hero .mockup-image {
    width: 200px;
  }
  
  .hero .mockup-back {
    top: 15px;
    left: -10px;
  }
  
  .hero .mockup-front {
    top: 0;
    right: -10px;
  }
}

/* Lightbox para ampliar imagens da demo */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  cursor: pointer;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: var(--border-radius);
  cursor: default;
}
.hidden { 
  display: none !important; 
}
/* Cursor de zoom nas miniaturas */
.demo-item img { 
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.demo-item img:hover {
  transform: scale(1.05);
}
/* Nova seção de vídeo centralizado */
.video-section {
  padding: 64px 0;
  text-align: center;
}
.video-section h2 {
  margin-bottom: 24px;
}
.video-section .video-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-section .video-wrapper iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
/* Ajuste em telas menores */
@media (max-width: 640px) {
  .video-section {
    padding: 48px 0;
  }
  .video-section h2 {
    font-size: 1.5rem;
  }
}

/* Fixar botões no rodapé dos cards de preços */
.pricing-card {
  display: flex;
  flex-direction: column;
}
.pricing-card .actions {
  margin-top: auto;
}
.pricing-card .actions .btn {
  width: 100%;
}

/* Destaque do plano pago (sem título) */
.pricing-card .highlight-box {
  background: #FFF8E6;
  border: 1px solid var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 16px;
  margin: 0 0 16px; /* acima do botão */
}
.pricing-card .highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-card .highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #5a4a3a;
  font-weight: 500;
  margin: 6px 0;
}
.pricing-card .highlight-list i {
  color: var(--secondary-color);
}
.pricing-card .highlight-note {
  text-align: left;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6b5b4b;
}
@keyframes spinGradient {
  0%   { transform: scale(1.4) rotate(0deg); }
  100% { transform: scale(1.4) rotate(360deg); }
}
