:root {
   --primary: #0077b6;         /* Clean tech blue */
  --primary-light: #00b4d8;   /* Bright cyan/teal highlight */
  --primary-dark: #023e8a;    /* Deep navy for text/shadows */

  --secondary: #03045e;       /* Very dark blue, nearly black */
  --accent: #48cae4;          /* Lighter vibrant blue for buttons or hover */
  
  --light: #f1f5f9;           /* Light gray background */
  --dark: #0b0c10;            /* Deep neutral dark tone for contrast */
  
  --whatsapp: #25d366;  
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin: 0;
  padding: 0;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

/* Background grid pattern */
body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

/* Light orbs effect */
body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 25%);
  pointer-events: none;
  z-index: 0;
}


/* Header Styling */
header {
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(110, 0, 255, 0.05), rgba(167, 0, 255, 0.08));
  border-radius: 0 0 30px 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: 2;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(110, 0, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(167, 0, 255, 0.03) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

header h1, header h2, header p {
  position: relative;
  z-index: 3;
}

header h1 {
  margin-bottom: 15px;
  font-family: var(--font-tertiary);
  color: var(--light);
  font-size: 2.5rem;
  transition: var(--transition-normal);
}

header h2 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark);
  opacity: 0.8;
  line-height: 1.6;
}

/* Breadcrumbs Styling */
.breadcrumbs {
  padding: 12px 25px;
  background-color: white;
  border-radius: 50px;
  margin: 20px 0;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  z-index: 5;
}

.breadcrumbs:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.breadcrumbs a {
  color: var(--dark);
  text-decoration: none;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s;
  padding: 5px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.breadcrumbs a:hover {
  color: var(--primary);
  background-color: rgba(110, 0, 255, 0.05);
}

.breadcrumbs a i {
  margin-right: 6px;
  font-size: 14px;
  color: var(--primary);
}

.breadcrumbs a::after {
  content: '›';
  margin-left: 8px;
  color: #999;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumbs a:last-child {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumbs a:last-child::after {
  content: '';
}

.breadcrumbs .current {
  color: var(--primary);
  font-weight: 500;
  margin-right: 0;
  padding: 5px 8px;
  border-radius: 20px;
}

/* Animation for breadcrumbs */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.breadcrumbs a {
  animation: fadeInRight 0.5s ease forwards;
}

.breadcrumbs a:nth-child(2) {
  animation-delay: 0.1s;
}

.breadcrumbs a:nth-child(3) {
  animation-delay: 0.2s;
}

.breadcrumbs a:nth-child(4) {
  animation-delay: 0.3s;
}

.breadcrumbs .current {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.4s;
}

/* Responsive design */
@media (max-width: 768px) {
  header {
    padding: 40px 15px 30px;
    border-radius: 0 0 20px 20px;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  header h2 {
    font-size: 1.1rem;
  }
  
  .breadcrumbs {
    padding: 10px 20px;
    border-radius: 30px;
    margin: 15px 0;
  }
}

@media (max-width: 600px) {
  header {
    padding: 30px 15px 25px;
  }
  
  header h1 {
    font-size: 1.7rem;
  }
  
  header h2 {
    font-size: 1rem;
  }
  
  .breadcrumbs {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  
  .breadcrumbs a {
    margin-right: 5px;
    padding: 3px 6px;
  }
  
  .breadcrumbs a::after {
    margin-left: 5px;
    font-size: 14px;
  }
  
  .breadcrumbs a i {
    margin-right: 4px;
    font-size: 12px;
  }
}


.logo {
text-align: center;
margin-bottom: 20px;
animation: fadeInDown 1s both;
}

.logo i {
font-size: 3em;
color: white;
background: rgba(255, 255, 255, 0.1);
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo h1 {
font-size: 2em;
margin: 0;
}

.plans {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  margin-bottom: 40px;
}

.plan {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  padding: 30px;
  border-radius: 20px;
  width: 320px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.plan.featured::after {
  content: 'Popular';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.plan h2 {
  color: var(--primary);
  font-size: 1.7em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.plan-icon {
  margin-right: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.price {
  font-size: 2em;
  font-weight: bold;
  margin: 20px 0;
  color: var(--secondary);
  display: inline-block;
  position: relative;
}

.price small {
  font-size: 0.5em;
  font-weight: normal;
  opacity: 0.7;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(106, 0, 255, 0.3);
  text-align: center;
  width: 100%;
}

.btn:hover {
  box-shadow: 0 7px 20px rgba(106, 0, 255, 0.4);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.message-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  text-align: center;
  width: 100%;
}

.message-btn i {
  margin-right: 8px;
  font-size: 1.2em;
}

.message-btn:hover {
  box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
  color: white;
}

.addons {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.addons h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
}

.addons h3 i {
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.addon-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.addon-icon {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.addon-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.addon-price {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
}

.contact {
  text-align: center;
  margin: 40px 0;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-button i {
  margin-right: 10px;
  font-size: 1.2em;
}

.contact-button:hover {
  transform: scale(1.05);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.contact-button.whatsapp {
  background: var(--whatsapp);
  color: white;
}
.footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  opacity: 0.8;
  animation: fadeIn 1s both;
  animation-delay: 0.6s;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}



footer {
  padding: 30px 0;
  text-align: center;
  backdrop-filter: blur(10px);
}

.features-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 5px;
  font-weight: bold;
  color: var(--primary);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .plans {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 100%;
    max-width: 350px;
  }

  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}