/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}



/* Header */
.header {
    background: #000000;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    text-align: right;
}

.contact-info {
    font-size: 14px;
}

.contact-info span {
    margin-left: 20px;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
}

.logo-text {
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.client-area .client-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.client-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
   background: #ffffff;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #481E9C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    background: #FF0A0E;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.totem-circle {
    max-width: 400px;
    width: 90%; /* Ajuste para ser responsivo */
    height: auto; /* Ajuste a altura automaticamente */
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.totem-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 20px;
    position: relative;
}

.totem-placeholder::before {
    content: "🖥️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
}

/* Features Section */
.features {
    background: #481E9C;
    color: white;
    padding: 80px 0;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.features-list {
    list-style: none;
}

.features-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-circle {
    max-width: 350px;
    width: 90%; /* Ajuste para ser responsivo */
    height: auto; /* Ajuste a altura automaticamente */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.feature-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    position: relative;
}

.feature-placeholder::before {
    content: "👤";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
}

/* Video Section */
.video-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Proporção 16:9 */
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #481E9C 0%, #553c9a 100%);
}

.video-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}


/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.products h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 60px;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    margin-bottom: 20px;
}

.product-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-placeholder::before {
    content: "🖥️";
    font-size: 40px;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.product-btn {
    background: #FF0A0E;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    background: #481E9C;
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.3);
}

/* Footer */
.footer {
    background: #481E9C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-media p {
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.links-column h4,
.contact-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.links-column ul {
    list-style: none;
}

.links-column li {
    margin-bottom: 10px;
}

.links-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-column a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        text-align: center;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: #481E9C;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .client-area {
        order: -1;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .totem-circle {
        width: 300px;
        height: 300px;
    }
    
    .totem-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-text h2 {
        font-size: 32px;
    }
    
    .feature-circle {
        width: 280px;
        height: 280px;
    }
    
    .feature-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .video-content h3 {
        font-size: 28px;
    }
    
    .products h2 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .features-text h2 {
        font-size: 28px;
    }
    
    .video-content h3 {
        font-size: 24px;
    }
    
    .products h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .totem-circle,
    .feature-circle {
        width: 250px;
        height: 250px;
    }
    
    .totem-placeholder,
    .feature-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .product-placeholder {
        width: 150px;
        height: 150px;
    }
}




.product-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover; /* Para garantir que a imagem cubra a área sem distorcer */
    width: 200px; /* Definir um tamanho fixo para as imagens, similar ao placeholder */
    height: 200px;
}

.product-placeholder {
    display: none; /* Ocultar os placeholders antigos */
}

.phone-link,
.whatsapp-link {
    text-decoration: none; /* remove sublinhado */
    color: inherit;        /* mantém a cor do texto normal */
    cursor: pointer;       /* mostra que é clicável */
}






.navbar {
    background-color: #481E9C; /* cor de fundo */
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Espaça logo, menu e área do cliente */
}

.logo {
    flex: 1; /* ocupa o espaço à esquerda */
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    flex: 1; /* ocupa o espaço central */
    justify-content: center; /* centraliza os itens */
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff; /* cor branca */
    font-weight: bold; /* negrito */
    font-size: 20px;
}

.client-area {
    flex: 1; /* ocupa o espaço à direita */
    display: flex;
    justify-content: flex-end; /* alinha à direita */
}

.client-btn {
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
}

/* Mobile toggle (opcional) */
.mobile-menu-toggle {
    display: none; /* esconder no desktop */
}


@media (max-width: 768px) {
    .totem-circle img,
    .feature-circle img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .hero-image,
    .features-image {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .totem-circle img,
    .feature-circle img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}



.totem-circle img,
.feature-circle img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Estilo do botão flutuante */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;     /* distância do fundo */
      right: 20px;       /* distância da esquerda */
      z-index: 1000;    /* garante que fica acima dos outros elementos */
    }

    .whatsapp-float img {
      width: 140px;      /* tamanho do ícone */
      height: 60px;
       
      transition: transform 0.3s;
    }

    .whatsapp-float img:hover {
      transform: scale(1.1);
    }