@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --background: hsl(0, 0%, 99%);
  --foreground: hsl(0, 0%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 15%);
  --primary: hsl(351, 83%, 49%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(145, 68%, 32%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(0, 0%, 45%);
  --accent: hsl(145, 68%, 32%);
  --border: hsl(0, 0%, 90%);
  --radius: 1rem;
  --shadow-soft: 0 4px 20px -4px hsla(0, 0%, 15%, 0.08);
  --shadow-card: 0 8px 32px -8px hsla(0, 0%, 15%, 0.12);
  --shadow-elevated: 0 20px 60px -15px hsla(0, 0%, 15%, 0.15);
  --shadow-accent: 0 8px 24px -4px hsla(145, 68%, 32%, 0.35);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  box-shadow: 0 8px 24px -4px hsla(351, 83%, 49%, 0.35);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px hsla(351, 83%, 49%, 0.45);
}

.btn-hero-outline {
  background-color: var(--card);
  color: var(--foreground);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.btn-hero-outline:hover {
  background-color: var(--muted);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  box-shadow: var(--shadow-accent);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

/*.hero-bg::after{*/

@media (min-width: 992px) {
.hero-bg{
  background-image: url(images/banner_empresarial.png);
  width: 100%;
  height: 100vh;
  position: absolute;
  right:0;
  bottom: 0;
  top: 0;
  background-size: cover;
    background-position: right;
}
}

@media (max-width: 992px) {
.imgxs{
  display: block;
}
.nav-actions {
  display: none !important;
}
}

@media (min-width: 992px) {
.imgxs{
  display: none;
}
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--muted);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-blob-1 {
  top: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background-color: hsla(351, 83%, 49%, 0.1);
}

.hero-bg-blob-2 {
  top: 50%;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  background-color: hsla(145, 68%, 32%, 0.1);
  animation-delay: -2s;
}

.hero-bg-blob-3 {
  bottom: 5rem;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background-color: hsla(351, 83%, 49%, 0.05);
  animation-delay: -4s;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.25rem;
  padding-top: 8px;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Hero Content */
.hero-content {
  padding: 5rem 0 8rem;
  position: relative;
  z-index: 10;
}

.hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsla(351, 83%, 49%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--secondary);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-trust {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--primary);
  border: 2px solid var(--background);
  margin-left: -0.5rem;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-stars {
  display: flex;
}

.hero-star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  fill: currentColor;
}

/* Wave Divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  width: 100%;
  display: block;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 0 10rem;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
}

/* Experience Section */
.experience {
  padding: 6rem 0;
  /*background-color: hsla(0, 0%, 96%, 0.3);*/
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background-color: hsla(351, 83%, 49%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.experience-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.experience-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
}

.experience-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-0.5rem);
}

.experience-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .experience-card-image img {
  transform: scale(1.05);
}

.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 15%, 0.8), hsla(0, 0%, 15%, 0.2), transparent);
}

.experience-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.experience-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.experience-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-card-icon.primary {
  background-color: var(--primary);
}

.experience-card-icon.secondary {
  background-color: var(--secondary);
}

.experience-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.experience-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.experience-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background-color: var(--background);
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.benefit-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: var(--card);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-0.25rem);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon.primary {
  background-color: hsla(351, 83%, 49%, 0.1);
  color: var(--primary);
}

.benefit-icon.secondary {
  background-color: hsla(145, 68%, 32%, 0.1);
  color: var(--secondary);
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background-color: hsla(0, 0%, 96%, 0.3);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.pricing-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: var(--card);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-0.25rem);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-card);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--foreground);
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.pricing-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
  
  .pricing-card.featured {
    padding: 2.5rem 2rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: var(--background);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: var(--card);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-0.25rem);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  fill: currentColor;
}

.testimonial-content {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-info h4 {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background-color: hsla(0, 0%, 96%, 0.3);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: var(--muted);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background-color: var(--primary);
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta .btn {
  background-color: white;
  color: var(--primary);
}

.cta .btn:hover {
  background-color: var(--muted);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background-color: var(--foreground);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-column h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.footer-socials a:hover {
  background-color: var(--primary);
  color: white;
}

.footer-socials svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Utility Classes */
.hidden-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hidden-mobile {
    display: flex;
  }
}

@media (min-width: 1024px) {
    section#especialidades .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    div.pricing-grid.grid-2-colunas {
      grid-template-columns: repeat(2, 1fr);
    }
}