 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
      width: 100%;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background: #08141c;
      color: #ffffff;
      overflow-x: hidden;
    }

    main {
      width: 100%;
      height: 100%;
      overflow-y: auto;
    }

    /* ANIMAÇÕES */
    @keyframes dataFlow {
      0% {
        transform: translateX(0) translateY(0);
      }

      50% {
        transform: translateX(30px) translateY(-10px);
      }

      100% {
        transform: translateX(0) translateY(0);
      }
    }

    @keyframes pulse-glow {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 0.8;
      }
    }

    @keyframes float-up {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slide-in-left {
      0% {
        opacity: 0;
        transform: translateX(-50px);
      }

      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scale-in {
      0% {
        opacity: 0;
        transform: scale(0.95);
      }

      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* SEÇÃO HERO */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(135deg, #08141c 0%, #0b1f2a 50%, #0d3a4f 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 20% 50%, rgba(13, 58, 79, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(11, 31, 42, 0.4) 0%, transparent 50%);
      pointer-events: none;
      z-index: 1;
    }

    /* Malha digital animada */
    .digital-mesh {
      position: absolute;
      width: 200%;
      height: 200%;
      top: -50%;
      left: -50%;
      background-image:
        linear-gradient(rgba(203, 140, 65, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(203, 140, 65, 0.08) 1px, transparent 1px);
      background-size: 100px 100px;
      animation: dataFlow 8s ease-in-out infinite;
      z-index: 0;
    }

    /* Pontos de conexão */
    .mesh-dots {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .dot {
      position: absolute;
      width: 3px;
      height: 3px;
      background: rgba(203, 140, 65, 0.6);
      border-radius: 50%;
      animation: pulse-glow 3s ease-in-out infinite;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 900px;
      padding: 40px;
      animation: float-up 1s ease-out;
    }

    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 4.5rem;
      font-weight: 800;
      margin-bottom: 15px;
      background: linear-gradient(135deg, #ddb65b 0%, #cb8c41 50%, #ddb65b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 2px;
      text-shadow: 0 0 30px rgba(203, 140, 65, 0.3);
      animation: slide-in-left 1s ease-out 0.2s both;
    }

    .hero-subtitle {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
      font-weight: 600;
      animation: slide-in-left 1s ease-out 0.4s both;
    }

    .hero-description {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 40px;
      line-height: 1.6;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      animation: slide-in-left 1s ease-out 0.6s both;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      animation: scale-in 1s ease-out 0.8s both;
    }

    .btn {
      padding: 15px 40px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #cb8c41 0%, #ddb65b 100%);
      color: #08141c;
      box-shadow: 0 10px 30px rgba(203, 140, 65, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(203, 140, 65, 0.5);
    }

    .btn-secondary {
      background: transparent;
      color: #ddb65b;
      border: 2px solid #ddb65b;
    }

    .btn-secondary:hover {
      background: rgba(221, 182, 91, 0.1);
      box-shadow: 0 10px 30px rgba(203, 140, 65, 0.2);
      transform: translateY(-3px);
    }

    /* SEÇÕES */
    section {
      padding: 80px 40px;
      scroll-margin-top: 20px;
    }

    .section-about,
    .section-services,
    .section-differentials,
    .section-testimonials,
    .section-portfolio,
    .section-contact {
      background: linear-gradient(180deg, #0b1f2a 0%, #08141c 100%);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 50px;
      text-align: center;
      color: #ffffff;
    }

    .section-title span {
      background: linear-gradient(135deg, #ddb65b 0%, #cb8c41 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* SEÇÃO SOBRE */
    .section-about {
      background: linear-gradient(180deg, #0d3a4f 0%, #0b1f2a 50%, #08141c 100%);
    }

    .about-content {
      background: rgba(11, 31, 42, 0.5);
      border-left: 4px solid #cb8c41;
      padding: 40px;
      border-radius: 8px;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
    }

    .about-content p:last-child {
      margin-bottom: 0;
    }

    /* SEÇÃO SERVIÇOS */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .service-card {
      background: linear-gradient(135deg, rgba(13, 58, 79, 0.4) 0%, rgba(11, 31, 42, 0.3) 100%);
      border: 1px solid rgba(203, 140, 65, 0.2);
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      backdrop-filter: blur(10px);
    }

    .service-card:hover {
      transform: translateY(-8px);
      background: linear-gradient(135deg, rgba(13, 58, 79, 0.6) 0%, rgba(11, 31, 42, 0.5) 100%);
      border-color: #cb8c41;
      box-shadow: 0 20px 50px rgba(203, 140, 65, 0.2);
    }

    .service-icon {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #ddb65b;
    }

    .service-card p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
    }

    /* SEÇÃO DIFERENCIAIS */
    .differentials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .differential-item {
      padding: 30px;
      background: rgba(13, 58, 79, 0.3);
      border-bottom: 3px solid #cb8c41;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .differential-item:hover {
      background: rgba(13, 58, 79, 0.5);
      transform: translateX(10px);
    }

    .differential-item h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #ddb65b;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }


    .differential-item p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* SEÇÃO DEPOIMENTOS */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .testimonial-card {
      background: linear-gradient(135deg, rgba(203, 140, 65, 0.1) 0%, rgba(221, 182, 91, 0.05) 100%);
      border: 1px solid rgba(203, 140, 65, 0.3);
      padding: 30px;
      border-radius: 12px;
      backdrop-filter: blur(10px);
      position: relative;
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 4rem;
      color: rgba(203, 140, 65, 0.3);
      font-family: 'Montserrat', sans-serif;
    }

    .testimonial-text {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.8;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      color: #ddb65b;
      font-size: 0.95rem;
    }

    .star-rating {
      color: #cb8c41;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    /* SEÇÃO PORTFÓLIO */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .portfolio-card {
      background: linear-gradient(135deg, rgba(13, 58, 79, 0.5) 0%, rgba(11, 31, 42, 0.4) 100%);
      border: 1px solid rgba(203, 140, 65, 0.2);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
      backdrop-filter: blur(10px);
    }

    .portfolio-card:hover {
      transform: translateY(-10px);
      border-color: #cb8c41;
      box-shadow: 0 25px 50px rgba(203, 140, 65, 0.2);
    }

    .portfolio-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #0d3a4f 0%, #0b1f2a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: rgba(203, 140, 65, 0.5);
    }

    .portfolio-info {
      padding: 25px;
    }

    .portfolio-info h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: #ddb65b;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .portfolio-info p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* SEÇÃO CONTATO */
    .section-contact {
      background: linear-gradient(180deg, #08141c 0%, #0b1f2a 50%, #0d3a4f 100%);
      text-align: center;
    }

    .contact-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-description {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 50px;
      line-height: 1.8;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .contact-item {
      background: rgba(13, 58, 79, 0.3);
      padding: 30px;
      border-radius: 12px;
      border: 1px solid rgba(203, 140, 65, 0.2);
      transition: all 0.3s ease;
    }

    .contact-item:hover {
      background: rgba(13, 58, 79, 0.5);
      border-color: #cb8c41;
    }

    .contact-item h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #ddb65b;
      margin-bottom: 12px;
    }

    .contact-item p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
      word-break: break-word;
    }

    .contact-item a {
      color: #ddb65b;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-item a:hover {
      color: #cb8c41;
    }

    /* BOTÃO FLUTUANTE WHATSAPP */
    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      z-index: 1000;
      text-decoration: none;
      color: white;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }

    /* RESPONSIVO */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1.2rem;
      }

      .section-title {
        font-size: 2rem;
      }

      section {
        padding: 50px 20px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 300px;
      }
    }