/* Importação da fonte Instrument Sans */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background-color: #F3F4F3;
  color: #000000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

body {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tipografia */
h1 {
  font-size: 41px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.5rem;
}

p {
  font-size: 18px;
  font-weight: 400;
  color: #4C4C4C;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Botões */
.btn-primary {
  background-color: #000000;
  color: #ffffff;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #000000;
  padding: 17px 9px;
  font-size: 14px;
  font-weight: 400;
  border: 2px solid #000000;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Header */
.header {
  background-color: #F3F4F3;
  padding: 1.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
}

.header .container {
  display: flex;
  justify-content: center;
}

.navbar {
  display: flex;
  align-items: center;
  background-color: #F0F0F0;
  padding: 1rem 2rem;
  border-radius: 18px;
  max-width: 90%;
  width: 100%;
  gap: 1rem;
}

.logo {
  margin-right: auto;
}

.logo a {
  display: inline-block;
}

.logo img {
  height: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-size: 14px;
  color: #4C4C4C;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu li a:hover {
  color: #000000;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
}

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

.login-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
  color: #4C4C4C;
  font-size: 14px;
}

.login-link:hover {
  opacity: 0.7;
}

.login-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.login-text {
  font-size: 14px;
}

.btn-contactar {
  background-color: #8A2BE2;
  color: #ffffff;
  padding: 9px 17px;
  font-size: 14px;
  border-radius: 12px;
}

.btn-contactar:hover {
  background-color: #7B1FA2;
}

/* Hero Section */
.hero {
  padding: 0;
  background-color: #F3F4F3;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  height: 720px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  display: block;
}

.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
}

.hero-content {
  max-width: 600px;
  text-align: center;
}

.highlight-purple {
  color: #9747FF;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.hero-content p {
  margin-bottom: 2rem;
  font-size: 18px;
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4C4C4C;
  font-size: 18px;
}

/* Section Text */
.section-text {
  padding: 3rem 0;
  background-color: #F3F4F3;
  text-align: center;
}

.section-text-title {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  max-width: 405px;
}

.section-text-title .highlight-purple {
  color: #9747FF;
}

/* Section 2 */
.section-2 {
  padding: 5rem 0;
  background-color: #F3F4F3;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-2-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-2-selector {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.selector-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

.selector-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.selector-item.active {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 17px 27px;
}

.selector-item:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.selector-icon {
  width: 43px;
  height: 43px;
  background-color: #F0F0F0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.selector-icon img {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  display: block;
}

.selector-text {
  flex: 1;
}

.selector-text h3 {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.25rem;
}

.selector-text p {
  font-size: 14px;
  font-weight: 400;
  color: #9C9C9C;
  margin: 0;
  line-height: 1.4;
}

.section-2-info {
  max-width: 600px;
  border-left: 1px solid #D0D0D0;
  border-right: 1px solid #D0D0D0;
  padding: 0 2rem;
}

.section-2-info h2 {
  margin-bottom: 0.5rem;
  font-size: 24px;
}

.section-2-info p {
  max-width: 500px;
  font-size: 16px;
}

.info-image {
  margin-top: 2rem;
}

.info-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Agents Section */
.agents-section {
  padding: 5rem 0;
  background-color: #F3F4F3;
  position: relative;
  overflow-x: hidden;
}

.agents-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  overflow: visible;
}

.agents-section > .container {
  padding-right: 0;
  position: relative;
}

.agents-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agents-header h2 {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.agents-subtitle {
  font-size: 18px;
  color: #4C4C4C;
  max-width: 500px;
  margin: 0 auto;
}

.features-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  border-radius: 8px !important;
  font-size: 14px;
  color: #4C4C4C;
  border: 1px solid #D9D9D9 !important;
}

.feature-icon {
  width: 14px;
  height: 14px;
  display: block;
}

/* Agents Scroll Section */
.agents-scroll-section {
  padding: 0 0 5rem 0;
  background-color: #F3F4F3;
  overflow-x: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.agents-scroll-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  padding-left: calc((100vw - 1200px) / 2 + 1.5rem);
  padding-right: 1.5rem;
}

.agents-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 1rem;
  width: 100%;
  border: 1px solid #D0D0D0;
  border-radius: 18px;
  padding-left: 30px;
  padding-right: 1.5rem;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.agents-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.agents-scroll-container::-webkit-scrollbar-track {
  background: #F0F0F0;
  border-radius: 4px;
}

.agents-scroll-container::-webkit-scrollbar-thumb {
  background: #D0D0D0;
  border-radius: 4px;
}

.agents-cards {
  display: flex;
  gap: 10px;
  min-width: max-content;
  padding: 1rem 0;
  padding-right: 30px;
  justify-content: flex-end;
}

.agent-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px 24px;
  min-width: 386px;
  max-width: 386px;
  max-height: 273px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  margin: 0 auto;
}

.agent-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #F3F4F3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 0;
}

.avatar-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}

.agent-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.agent-greeting {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.5rem;
}

.agent-role {
  font-size: 20px;
  color: #4C4C4C;
  margin-bottom: 1.5rem;
  line-height: 24px;
}

.agent-actions {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  flex-direction: row;
  margin-top: auto;
}

.btn-agent {
  padding: 8px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-align: left;
  text-decoration: none;
}

.btn-icon {
  width: 12px;
  height: 12px;
  display: block;
}

.btn-purple {
  background-color: #9747FF;
  color: #ffffff;
}

.btn-purple:hover {
  background-color: #7B1FA2;
}

.btn-purple .btn-icon {
  filter: brightness(0) invert(1);
}

.btn-white {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #E0E0E0;
}

.btn-white:hover {
  background-color: #F3F4F3;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: #F3F4F3;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.features .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.features h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.features-title {
  font-size: 28px;
  font-weight: 400;
  color: #000000;
  max-width: 500px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

/* Features Grid Section */
.features-grid-section {
  padding: 5rem 0;
  background-color: #F3F4F3;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.features-grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature-block {
  padding: 2rem;
  border-right: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
}

.feature-block:first-child {
  border-right: none;
}

.feature-block:nth-child(2n) {
  border-right: none;
}

.feature-block:nth-child(n+5) {
  border-bottom: none;
  border-right: none;
}

.feature-block-title {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.feature-block-text {
  font-size: 14px;
  font-weight: 400;
  color: #4C4C4C;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


.capabilities-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.capability-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.capability-icon {
  background-color: #F0F0F0;
  border-radius: 8px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid #D0D0D0;
}

.capability-text {
  font-size: 14px;
  color: #4C4C4C;
}

.feature-image-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.feature-image {
  display: block;
  transition: transform 0.3s ease, scale 0.3s ease;
}

.feature-image-1 {
  width: 286px;
  height: 249px;
  object-fit: contain;
}

.feature-image-2 {
  width: 252px;
  height: 132px;
  object-fit: contain;
}

.feature-image-3 {
  width: 242px;
  height: 138px;
  object-fit: contain;
}

.feature-image-4 {
  width: 243px;
  height: 138px;
  height: auto;
  object-fit: contain;
}

.feature-image-5 {
  width: 303px;
  height: 92px;
  object-fit: contain;
  margin-top: 60px;
}

.feature-block:hover .feature-image {
  transform: scale(1.05);
}

.feature-block:hover {
  transition: all 0.3s ease;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: #F3F4F3;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.faq-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-title {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #4C4C4C;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-contact-link {
  color: #9747FF;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.faq-contact-link:hover {
  opacity: 0.7;
}

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

.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #F9F9F9;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  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 p {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 16px;
  font-weight: 400;
  color: #4C4C4C;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: #F3F4F3;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.testimonials-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-height: 600px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 5rem 0;
  background-color: #F3F4F3;
  background-image: url('../images/background-final.png');
  background-size: 1116px 415px;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}

.final-cta-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.final-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 0;
}

.final-cta-title {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.final-cta-text {
  font-size: 18px;
  font-weight: 400;
  color: #4C4C4C;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.final-cta-button {
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding: 9px 18px;
}

/* Footer */
.footer {
  background-color: white;
  padding: 3rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.footer-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border-radius: 18px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo a {
  display: inline-block;
}

.logo-image {
  height: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #F0F0F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #E0E0E0;
}

.social-icon-img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-list li a {
  font-size: 14px;
  font-weight: 400;
  color: #4C4C4C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link-list li a:hover {
  color: #000000;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
}

/* Coluna do meio - anima de cima para baixo */
.testimonials-column-center {
  animation: slideDown 20s linear infinite;
}

/* Colunas laterais - animam de baixo para cima */
.testimonials-column-left,
.testimonials-column-right {
  animation: slideUp 20s linear infinite;
}

@keyframes slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.review-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-size: 14px;
  font-weight: 400;
  color: #4C4C4C;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.25rem;
}

.reviewer-role {
  font-size: 12px;
  font-weight: 400;
  color: #9C9C9C;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #4C4C4C;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background-color: #F3F4F3;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  margin-bottom: 0;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: #F3F4F3;
}

.benefits .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  text-align: center;
}

.benefits-text {
  text-align: center;
}

.benefits-text h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.benefits-text > p {
  margin-bottom: 2rem;
  text-align: center;
}

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

.benefits-list li {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
}

.benefits-list li strong {
  display: block;
  color: #000000;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.benefits-list li p {
  margin-bottom: 0;
}

.benefits-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4C4C4C;
  font-size: 18px;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: #ffffff;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.testimonials .section-subtitle {
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background-color: #F3F4F3;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: #000000;
  font-size: 16px;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #4C4C4C;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: #F3F4F3;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10000;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  body {
    max-width: 100%;
  }

  .container {
    width: 95%;
    padding: 0 1rem;
  }

  .section-2-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-2-info {
    border-left: none;
    border-right: none;
    border-top: 1px solid #D0D0D0;
    padding: 2rem 0 0 0;
  }

  .features-grid-content {
    grid-template-columns: 1fr;
  }

  .feature-block {
    border-right: none;
    border-bottom: 1px solid #D0D0D0;
  }

  .feature-block:last-child {
    border-bottom: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar {
    padding: 1rem 1.5rem;
    position: relative;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9998;
    overflow-y: auto;
  }

  .nav-right.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    font-size: 16px;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F0F0F0;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .login-link {
    width: 100%;
    padding: 0.75rem 0;
  }

  .btn-contactar {
    width: 100%;
    text-align: center;
  }

  /* Hero Mobile */
  .hero {
    min-height: 600px;
    height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* Section Text */
  .section-text {
    padding: 3rem 0;
  }

  .section-text-title {
    font-size: 28px;
    max-width: 100%;
  }

  /* Section 2 Mobile */
  .section-2 {
    padding: 3rem 0;
  }

  .section-2-selector {
    width: 100%;
  }

  .selector-item {
    padding: 1rem;
  }

  .selector-item h3 {
    font-size: 16px;
  }

  .selector-item p {
    font-size: 14px;
  }

  .section-2-info h2 {
    font-size: 20px;
  }

  .section-2-info p {
    font-size: 14px;
  }

  .section-2-info img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
  }

  /* Agents Section Mobile */
  .agents-section {
    padding: 3rem 0;
  }

  .agents-header h2 {
    font-size: 28px;
    max-width: 100%;
  }

  .agents-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .agents-scroll-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .agents-scroll-container {
    padding-left: 1rem;
    padding-right: 1rem;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }

  .agent-card {
    min-width: 280px;
    max-width: 280px;
  }

  /* Features Grid Mobile */
  .features-grid-section {
    padding: 3rem 0;
  }

  .features-grid-section h2 {
    font-size: 28px;
    max-width: 100%;
  }

  .feature-block {
    padding: 1.5rem;
  }

  .feature-block-title {
    font-size: 18px;
  }

  .feature-block-text {
    font-size: 14px;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 3rem 0;
  }

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-item {
    padding: 1rem;
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-header h2 {
    font-size: 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Final CTA Mobile */
  .final-cta-section {
    padding: 3rem 0;
    background-size: cover;
  }

  .final-cta-title {
    font-size: 24px;
  }

  .final-cta-text {
    font-size: 16px;
  }

  /* Footer Mobile */
  .footer {
    padding: 2rem 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  /* Form Mobile */
  .lead-form-section {
    padding: 3rem 0;
  }

  .lead-form {
    padding: 1.5rem;
  }

  .form-navigation {
    flex-direction: column;
  }

  .form-back-btn,
  .form-next-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 500px;
    padding: 6rem 0 3rem;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .section-text-title {
    font-size: 24px;
  }

  .agents-header h2,
  .features-grid-section h2,
  .faq-header h2,
  .testimonials-header h2 {
    font-size: 24px;
  }

  .agent-card {
    min-width: 280px;
    max-width: 280px;
  }

  .selector-item {
    padding: 0.75rem;
  }

  .selector-icon {
    width: 36px;
    height: 36px;
  }

  .selector-icon img {
    max-width: 16px;
    max-height: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  .navbar {
    padding: 1rem;
  }

  .logo img {
    max-height: 32px;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Lead Form Section */
.lead-form-section {
  padding: 5rem 0;
  background-color: #F3F4F3;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.lead-form-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #F0F0F0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  color: #4C4C4C;
  margin-bottom: 1rem;
}

.lead-form-section .section-title {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 2rem;
}

.lead-form {
  max-width: 600px;
  margin: 2rem auto 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.form-page {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.form-page.active {
  display: block;
}

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

.form-intro {
  margin-bottom: 2rem;
}

.form-intro-text {
  font-size: 16px;
  color: #4C4C4C;
  font-weight: 400;
}

.form-group {
  margin-bottom: 2rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.75rem;
}

.form-description {
  font-size: 14px;
  color: #9C9C9C;
  margin-bottom: 0.75rem;
  margin-top: -0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D0D0D0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: 'Instrument Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #9747FF;
}

.form-input::placeholder {
  color: #9C9C9C;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid #D0D0D0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-option:hover {
  border-color: #9747FF;
  background-color: #F9F9F9;
}

.radio-option input[type="radio"] {
  margin-right: 1rem;
  margin-top: 0.25rem;
  cursor: pointer;
}

.radio-option input[type="radio"]:checked + .radio-content {
  color: #000000;
}

.radio-option:has(input:checked) {
  border-color: #9747FF;
  background-color: #F3F2FF;
}

.radio-content {
  flex: 1;
}

.radio-title {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.25rem;
}

.radio-description {
  font-size: 14px;
  color: #9C9C9C;
  font-weight: 400;
}

.scale-group {
  margin-top: 1rem;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 12px;
  color: #9C9C9C;
}

.scale-inputs {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.scale-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid #D0D0D0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scale-option:hover {
  border-color: #9747FF;
  background-color: #F9F9F9;
}

.scale-option input[type="radio"] {
  display: none;
}

.scale-option span {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.scale-option:has(input:checked) {
  border-color: #9747FF;
  background-color: #F3F2FF;
}

.scale-option:has(input:checked) span {
  color: #9747FF;
  font-weight: 500;
}

.form-navigation {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.form-back-btn {
  background-color: transparent;
  color: #000000;
  border: 1px solid #D0D0D0;
  padding: 9px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-back-btn:hover {
  background-color: #F0F0F0;
}

.form-next-btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 9px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-next-btn:hover {
  background-color: #333333;
}

.form-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #F0F0F0;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D0D0D0;
  transition: background-color 0.3s ease;
}

.progress-dot.active {
  background-color: #9747FF;
}

.form-loading {
  text-align: center;
  padding: 2rem;
}

.form-loading p {
  font-size: 16px;
  color: #4C4C4C;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success-title {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.form-success-text {
  font-size: 16px;
  color: #4C4C4C;
  line-height: 1.6;
}

.form-group.error .form-label {
  color: #ef4444;
}

.form-group.error .form-input {
  border-color: #ef4444;
}

