:root {
  --primary: rgb(137, 80, 127); /* Color principal */
  --primary-light: rgba(137, 80, 127, 0.1);
  --primary-lighter: rgba(137, 80, 127, 0.05);
  --secondary: #6c757d;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #adb5bd;
  --dark-gray: #495057;
  --dark: #212529;
  --white: #ffffff;
  --text: #343a40;
  --text-light: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

.logo img {
  height: 100%;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin: 0 15px;
  position: relative;
}

nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}

.dropdown-content a {
  padding: 10px 20px;
  display: block;
  color: var(--text);
  font-size: 14px;
}

.dropdown-content a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  margin-right: 15px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: rgb(117, 60, 107);
  border-color: rgb(117, 60, 107);
}

/* Hero Section */
.hero {
 
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-hero {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 6px;
}

.btn-hero-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(137, 80, 127, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(137, 80, 127, 0.4);
  background: rgb(117, 60, 107);
}

.btn-hero-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-hero-outline:hover {
  background: var(--primary-light);
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.section-description {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s;
  border: 1px solid var(--light-gray);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 24px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-text {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 20px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s;
}

.feature-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.feature-link:hover {
  color: rgb(117, 60, 107);
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
  height: 200px;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.service-header img {
  max-width: 100%;
  max-height: 100%;
}

.service-body {
  padding: 30px;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-text {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    rgb(117, 60, 107) 100%
  );
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta .section-title {
  color: var(--white);
}

.cta .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary);
  border-radius: 6px;
  font-weight: 600;
  margin-top: 30px;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-about {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white);
}

.footer-title:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
    padding-top: 40px;
  }

  .hero-btns {
    justify-content: center;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }

  nav {
    margin: 20px 0;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline,
  .btn-primary {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }
}
:root {
  --primary: rgb(137, 80, 127); /* Color principal */
  --primary-light: rgba(137, 80, 127, 0.1);
  --primary-lighter: rgba(137, 80, 127, 0.05);
  --secondary: #6c757d;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #adb5bd;
  --dark-gray: #495057;
  --dark: #212529;
  --white: #ffffff;
  --text: #343a40;
  --text-light: #6c757d;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin: 0 15px;
  position: relative;
}

nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}

.dropdown-content a {
  padding: 10px 20px;
  display: block;
  color: var(--text);
  font-size: 14px;
}

.dropdown-content a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  margin-right: 15px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: rgb(117, 60, 107);
  border-color: rgb(117, 60, 107);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-hero {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 6px;
}

.btn-hero-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(137, 80, 127, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(137, 80, 127, 0.4);
  background: rgb(117, 60, 107);
}

.btn-hero-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-hero-outline:hover {
  background: var(--primary-light);
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.section-description {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s;
  border: 1px solid var(--light-gray);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 24px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-text {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 20px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s;
}

.feature-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.feature-link:hover {
  color: rgb(117, 60, 107);
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
  height: 200px;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.service-header img {
  max-width: 100%;
  max-height: 100%;
}

.service-body {
  padding: 30px;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-text {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    rgb(117, 60, 107) 100%
  );
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta .section-title {
  color: var(--white);
}

.cta .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary);
  border-radius: 6px;
  font-weight: 600;
  margin-top: 30px;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-about {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white);
}

.footer-title:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .hero-btns {
    justify-content: center;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }

  nav {
    margin: 20px 0;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline,
  .btn-primary {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }
}
:root {
            --primary: rgb(137, 80, 127);  /* Color principal */
            --primary-light: rgba(137, 80, 127, 0.1);
            --primary-lighter: rgba(137, 80, 127, 0.05);
            --secondary: #6c757d;
            --light: #f8f9fa;
            --light-gray: #e9ecef;
            --gray: #adb5bd;
            --dark-gray: #495057;
            --dark: #212529;
            --white: #ffffff;
            --text: #343a40;
            --text-light: #6c757d;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin: 0 15px;
            position: relative;
        }

        nav a {
            color: var(--text);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 100;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 10px);
        }

        .dropdown-content a {
            padding: 10px 20px;
            display: block;
            color: var(--text);
            font-size: 14px;
        }

        .dropdown-content a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }



        .btn {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s;
            text-align: center;
            cursor: pointer;
        }

        .btn-outline {
            border: 1px solid var(--primary);
            color: var(--primary);
            margin-right: 15px;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            border: 1px solid var(--primary);
        }

        .btn-primary:hover {
            background: rgb(117, 60, 107);
            border-color: rgb(117, 60, 107);
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            flex: 1;
            padding-right: 50px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
        }

        .btn-hero {
            padding: 14px 30px;
            font-size: 16px;
            border-radius: 6px;
        }

        .btn-hero-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(137, 80, 127, 0.3);
        }

        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(137, 80, 127, 0.4);
            background: rgb(117, 60, 107);
        }

        .btn-hero-outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-hero-outline:hover {
            background: var(--primary-light);
        }

        .hero-image {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .section-description {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 10px;
            padding: 40px 30px;
            transition: all 0.3s;
            border: 1px solid var(--light-gray);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            border-color: transparent;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--primary);
            font-size: 24px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-text {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 20px;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 500;
            transition: all 0.3s;
        }

        .feature-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .feature-link:hover {
            color: rgb(117, 60, 107);
        }

        .feature-link:hover i {
            transform: translateX(5px);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-header {
            height: 200px;
            background: var(--primary-lighter);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .service-header img {
            max-width: 100%;
            max-height: 100%;
        }

        .service-body {
            padding: 30px;
        }

        .service-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-text {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 15px;
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, rgb(117, 60, 107) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta .section-title {
            color: var(--white);
        }

        .cta .section-description {
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-btn {
            display: inline-block;
            padding: 16px 40px;
            background: var(--white);
            color: var(--primary);
            border-radius: 6px;
            font-weight: 600;
            margin-top: 30px;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 40px;
        }

        .footer-about {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--primary);
        }

        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: var(--white);
        }

        .footer-title:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact i {
            margin-right: 15px;
            color: var(--primary);
        }

        .footer-bottom {
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .section-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav {
                margin: 20px 0;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero h1 {
                font-size: 36px;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-outline, .btn-primary {
                margin: 0;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .section-description {
                font-size: 16px;
            }
        }

/* Variables de color */
:root {
    --primary: rgb(137, 80, 127);
    --primary-dark: rgb(107, 60, 97);
    --secondary: #6c757d;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --dark: #212529;
    --white: #ffffff;
    --danger: #dc3545;
}

/* Header */
.legal-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    margin-bottom: 40px;
}

.legal-header .logo {
    margin-bottom: 20px;
}

.legal-header .logo img {
    height: 50px;
}

.legal-header h1 {
    font-size: 28px;
    font-weight: 600;
}

/* Contenido legal */
.legal-container {
    padding: 0 0 40px;
}

.disclaimer-section {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
}

.disclaimer-section h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 24px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: var(--primary-dark);
    margin: 25px 0 15px;
    font-size: 20px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-content ul {
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-notice {
    background-color: var(--light);
    border-left: 4px solid var(--danger);
    padding: 20px;
    margin: 30px 0;
    font-size: 15px;
}

.legal-notice strong {
    color: var(--danger);
}

/* Secci¨Žn de contacto */
.contact-section {
    background: var(--light);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.contact-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info {
    list-style: none;
    margin-top: 20px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Footer */
.legal-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 20px;
}

.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 30px 20px;
    }
    
    .legal-header h1 {
        font-size: 24px;
    }
    
    .disclaimer-section h2 {
        font-size: 22px;
    }
    
    .legal-content h3 {
        font-size: 18px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Markets Page Styles */
.markets-hero {
    background: linear-gradient(rgb(197, 183, 195), rgba(137, 137, 137, 0.7)), url('media/img/mercados-financieros-broker-and-markets.jpg');
    background-size: cover;
    background-position: center;
    color: rgb(244, 234, 234);
    padding: 450px 0 100px;
    text-align: center;
}

.markets-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.markets-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.market-section {
    padding: 80px 0;
}

.market-section.alt-bg {
    background-color: #f9f9ff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.market-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.market-content.reverse {
    flex-direction: row-reverse;
}

.market-text {
    flex: 1;
}

.market-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.market-text p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.market-features {
    margin: 30px 0;
    list-style: none;
}

.market-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.market-features i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

.market-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.market-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.market-image:hover img {
    transform: scale(1.05);
}

.markets-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.markets-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.markets-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .market-content, 
    .market-content.reverse {
        flex-direction: column;
    }
    
    .market-image {
        margin-top: 30px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .markets-hero h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .markets-cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgb(197, 183, 195), rgba(137, 137, 137, 0.7)), url('media/img/mercado-de-indices.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 450px 0 100px;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.service-section {
    padding: 80px 0;
}

.service-section.alt-bg {
    background-color: #f9f9ff;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-feature {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.service-image:hover img {
    transform: scale(1.05);
}

.services-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .service-content, 
    .service-content.reverse {
        flex-direction: column;
    }
    
    .service-image {
        margin-top: 30px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-cta h2 {
        font-size: 28px;
    }
    
    .service-feature {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
}