@charset "UTF-8";
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f5f5f5;
    }
    header {
      background-color: #0b3d91;
      color: white;
      padding: 30px 20px;
      text-align: center;
      overflow: hidden;
    }
    header h1 {
      margin: 0;
      font-size: 32px;
    }
    header p {
      margin: 5px 0 0;
      font-size: 16px;
    }
    .container {
      padding: 20px;
      max-width: 1000px;
      margin: auto;
    }
    .section {
      margin-bottom: 30px;
    }
    .section h2 {
      color: #0b3d91;
    }
    .section h3 {
      color: #0b3d91;
    }
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
    .card {
      background: white;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
      min-height: 210px;
    }
    .card i {
      font-size: 50px;
      color: #0b3d91;
      margin-bottom: 10px;
      transition: transform 0.3s ease;
    }

    .card:hover i {
      transform: scale(1.2);
    }
    .btn {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 15px;
      background-color: #f4b400;
      color: #0b3d91;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
    footer {
      background-color: #0b3d91;
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 20px;
    }

    .logo {
      width: 100%;
      max-width: 350px;
      height: auto;
      display: inline-block;
      margin: 0 auto 15px;
      animation: fadeInDown 1.2s ease;
    }
    .fotoperfil{
      width: 100%;
      max-width: 150px;
      margin: 0 auto 15px;
      border-radius: 100%;
      animation: fadeInDown 1.2s ease;
      filter: drop-shadow(5px 2px 10px rgba(0, 0, 0, 0.479));
      
    
    }

    header h1 {
      animation: fadeInUp 1.5s ease;
    }

    header p {
      animation: fadeInUp 1.8s ease;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  

    /* Fundo com degradê */
    body {
      background: linear-gradient(135deg, #0b3d91, #001f4d);
      color: #333;
    }

    .container {
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    /* Animação nos cards */
    .card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeInUp 1s ease;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    .card img {
      transition: transform 0.3s ease;
    }

    .card:hover img {
      transform: scale(1.05);
    }

    /* Botão WhatsApp flutuante */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      z-index: 1000;
      animation: pulse 1.5s infinite;
    }

    /* Instagram flutuante */
    .instagram-float {
      /*position: fixed;*/
      bottom: 90px;
      right: 20px;
      background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      z-index: 1000;
      margin-top: 10px;
      /*animation: pulse 1.5s infinite;*/
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

  

    /* Avaliações */
    .reviews {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .review-card {
      background: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .review-card:hover {
      transform: scale(1.03);
    }

    .stars {
      color: #f4b400;
      margin-bottom: 8px;
    }

  

    /* Galeria de trabalhos */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }
    .gallery img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }