body{
  font-family: 'Poppins', sans-serif;
}


/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 40px;
  background: rgba(11, 37, 69, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 70px;
}



/* MENU CENTRO */




.menu {
  display: flex;
  gap: 15px;
  margin-left: 40px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}
/*la transpareza della letere sopra*/
.menu a:hover {
  color: #1f5fa9;
}

/* LINGUE DESTRA */
.menu-right {
  margin-left: auto;
  margin-right: 60px;
  display: flex;
  gap: 8px;
}

.menu-right button {
  padding: 8px 10px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.menu-right button:hover {
  transform: scale(1.1);
}
/*BUTTON WHTSAPP*/
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #175Fa9;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

/*PRIMO PARAGRAFO*/
/* HERO */
.hero {
  padding: 150px 20px 80px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}


/* TITOLO */
.hero-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px; }

  /* effetto colore 
  background: linear-gradient(45deg, #141414, #0a0a0a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* effetto glow 
  text-shadow: 0 0 20px rgba(11, 37, 69, 0.95);
}

/* PARAGRAFO */
.hero-text {
  font-size: 18px; /* come vuoi tu */
  line-height: 1.7;
  max-width: 800px auto;
  margin: 20px auto;
  color: white;
  -webkit-text-fill-color: #0a0a0a;
  font-family: 'Poppins',sans-serif;
  
}
.hero {
  padding-top: 120px;
}




.rotate-img {
  width: 200px;

  animation: spin 5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*2 CONTAINER*/
.web-services {
  padding: 80px 20px;
  background: #0f172a; /* elegante scuro */
  color: #fff;
}

.web-services .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* Testo */
.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #38bdf8;
}

.text-content .subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: #cbd5f5;
}

.text-content ul {
  list-style: none;
  padding: 0;
}

.text-content ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Immagine */
.image-content {
  flex: 1;
  text-align: right;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* 📱 Responsive (cellulare) */
@media (max-width: 768px) {
  .web-services .container {
    flex-direction: column;
    text-align: center;
  }

  .image-content {
    text-align: center;
  }

  .text-content h2 {
    font-size: 30px;
  }
}
/*CONTAINERT3*/
.wa2-section {
  padding: 60px 20px;
}

.wa2-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

/* TESTO */
.wa2-text {
  max-width: 520px;
}

.wa2-text h2 {
  font-size: 40px;
  margin-bottom: 15px;
  margin-bottom: 20px;
  color: #0f172a;
}







.wa2-text p {
  margin-bottom: 20px;
}

.wa2-text ul {
  margin-bottom: 25px;
}

/* VIDEO */
.wa2-media video {
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wa2-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.wa2-media video:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}
.wa2-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff, #1e293b);
  border-radius: 0px;
  margin: 40px 0;
}
/*CONTAINER5*/
/* Sezione */
.section {
  padding: 80px 20px;
}

.bg-primary {
  background: #175fa9;
  color: #fff;
}

/* Testo */
.title {
  font-size: 38px;
  margin-bottom: 15px;
}

.paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  color: #e0e7ff;
}

.text-center {
  text-align: center;
}

/* Lista */
.list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.list li {
  margin: 8px 0;
  font-size: 18px;
}

/* Frase forte */
.highlight {
  font-size: 20px;
  font-weight: bold;
  color: #ffd700;
}

/* Grid immagini */
.grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid img {
  width: 100%;
  border-radius: 15px;
  transition: 0.3s;
}

.grid img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/*CONTAINER 5*/
.seo-block {
  padding: 60px 20px;
}

.seo-block__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.seo-block__card {
  width: 300px;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.seo-block__card:hover {
  transform: translateY(-8px);
}

.seo-block__card img {
  width: 100%; /*OCUPA LA CARD*/
  max-width: 300%; /*DIMENSIONE MASSIMA PUOI AUMENTAR*/
  height: auto;
  border-radius: 10px;
  margin-bottom: px;


}

.seo-block__title {
  font-size: 25px;
  margin-bottom: 10px;
}

.seo-block__text {
  font-size: 18px;
}
.seo-block{


  background-color: #ffffff;
  padding: 60px 20px;
}
/*FOOTER*/
.footer {
  background: #0f172a;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 400px;
}

.footer-left h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer-left p {
  margin-bottom: 15px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  margin-right: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}

.whatsapp {
  background: #25D366;
}

.whatsapp:hover {
  background: #1ebe5d;
}

.instagram {
  background: #E1306C;
}

.instagram:hover {
  background: #c72c5b;
}

.footer-right {
  text-align: right;
}

.footer-logo {
  width: 120px;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #888;
}
/*CONTAINER 6*/
.servizi-pro {
  padding: 80px 20px;
  background: linear-gradient(
  135deg,
  rgba(5, 20, 40, 0.95),
  rgba(10, 40, 80, 0.95),
  rgba(20, 80, 150, 0.9)
);
  text-align: center;
}

.titolo-pro {
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
  letter-spacing: 2px;
}

.servizi-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.servizio-pro {
  max-width: 300px;
  padding: 25px;
  border-radius: 15px;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(119, 190, 5, 0.1);
}

/* 💥 EFFETTO HOVER */
.servizio-pro:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(241, 235, 239, 0.3);
}

.servizio-pro h3 {
  margin-bottom: 15px;
  color: #00ff99;
}

.servizio-pro p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.frase-pro {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #fff;
}


  .servizio-pro {
    width: 90%;
  }

  .titolo-pro {
    font-size: 26px;
  }
@media (max-width: 768px) {
  .servizi-grid {
    flex-direction: column;
    align-items: center;
  }

  .servizio-pro {
    width: 90%;
  }

  .titolo-pro {
    font-size: 26px;
  }
}