/* Virtual Office Page Specific Styles */
/* Contact Page Specific Styles */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c41e3a);
    z-index: 2;
  }
  .hero-contacts {
      height: 60vh;
      background: linear-gradient(135deg, rgba(220, 38, 127, 0.9), rgba(220, 38, 127, 0.7)),
        url("/placeholder.svg?height=600&width=1200") center / cover;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    
    .hero-contacts::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }
    
    .hero-contacts .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
    }
    
    .hero-contacts .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-contacts .hero-subtitle {
      font-size: 1.2rem;
      font-weight: 300;
      opacity: 0.9;
    }
/* What is Section */


.what-is-section {
    padding: 5rem 0;
    background: white;
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
  }
  
  /* Commercial and Social Sections */
  .commercial-section,
  .social-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .social-section {
    background: white;
  }
  
  /* Pricing Grid */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
  }
  
  .pricing-card.featured::before {
    content: "MAIS POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
  }
  
  .plan-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .plan-badge {
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
  }
  
  .period {
    font-size: 1.2rem;
    color: var(--text-light);
  }
  
  .plan-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.4;
  }
  
  .plan-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .plan-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 127, 0.3);
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }
  
  .benefits-content,
  .advantages-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .benefits-content .section-title,
  .advantages-content .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  
  .advantages-content {
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
  }
  
  .advantages-content .section-title {
    color: white;
  }
  
  .benefit-category {
    margin-bottom: 2rem;
  }
  
  .category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
  }
  
  .benefit-list,
  .advantages-list {
    list-style: none;
    padding: 0;
  }
  
  .benefit-list li,
  .advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }
  
  .benefit-list i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
  }
  
  .advantages-list i {
    color: white;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
  }
  
  /* .benefit-list li:has(.fa-plus) {
    color: var(--primary-color);
    font-weight: 500;
  } */
  
  /* CTA Section */
  .cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .hero-contacts .hero-title {
        font-size: 2.5rem;
      }
  
    .pricing-card.featured {
      transform: none;
    }
  
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .price {
      font-size: 2.5rem;
    }
  
    .cta-content h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .benefits-content,
    .advantages-content {
      padding: 1.5rem;
    }
  
    .pricing-card {
      padding: 1.5rem;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .price {
      font-size: 2rem;
    }
  }
  
  /* Animation Classes */
  .fade-in {

    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  







  