/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header.fixed-header {
  position: fixed;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: headerEnter 0.4s ease forwards;
}

/* Animation for entering (absolute → fixed) */
@keyframes headerEnter {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  background: transparent;
  padding: 20px 0;
  position: relative;
  animation: fadeInDown 1s ease-out;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo {
  height: 40px;
  width: auto;
}

.nav-menu-list {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  background: none;
  border: none;
  color: white;
  font-family: inherit, sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #ff9233;
  text-decoration: underline;
}

.header.fixed-header .nav-link {
  color: #000;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.navbar .btn-web {
  background-color: #ff9233;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.navbar .btn-web:hover {
  background-color: #e67d1a;
}

.navbar .btn-app {
  background-color: white;
  color: #ff9233;
  border: 1px solid #ff9233;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar .btn-app:hover {
  background-color: #ff9233;
  color: white;
}
.navbar .btn-switch-language {
  background-color: white;
  color: #ff9233;
  border: 1px solid #ff9233;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* END HEADER */

.hero-section {
  min-height: 600px;
  height: 60vh;
  max-height: 800px;
  background-image: url('assets/frontPage.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
  animation: fadeInLeft 1.2s ease-out;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out 0.4s both;
  line-height: 1.5;
}

.btn-quote {
  background-color: #ff9233;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  transform: translateY(0);
  text-decoration: none;
}

.btn-quote:hover {
  background-color: #e67d1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 146, 51, 0.3);
}

.quote-icon {
  font-size: 18px;
  color: white;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn-web,
  .btn-app {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 28px;
  }

  .btn-quote {
    font-size: 14px;
    padding: 10px 20px;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.quote-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.features-section {
  background-color: white;
  padding: 80px 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-overline {
  font-size: 16px;
  font-weight: 400;
  color: #ff9233;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
}

.features-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(339px, 1fr));
  gap: 40px;
  justify-items: center;
}

.feature-card {
  width: 339px;
  height: 340px;
  display: flex;
  flex-direction: column;
  background: white;
}

.feature-image {
  width: 339px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 12px 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.3;
}

.feature-card-description {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
  flex: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .feature-card {
    width: 100%;
    max-width: 339px;
  }

  .feature-image {
    width: 100%;
    max-width: 339px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 0;
  }

  .features-title {
    font-size: 24px;
  }

  .features-overline {
    font-size: 14px;
  }
}

.benefits-section {
  background-color: white;
  padding: 80px 0;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-overline {
  font-size: 16px;
  font-weight: 400;
  color: #ff9233;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
}

.benefits-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.2;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.benefit-block {
  width: 800px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.benefit-image {
  width: 320px;
  height: 200px;
  flex-shrink: 0;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefit-text {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.3;
}

.benefit-description {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
}

.benefit-left {
  flex-direction: row;
}

.benefit-left .benefit-image {
  order: 1;
}

.benefit-left .benefit-text {
  order: 2;
}

.benefit-right {
  flex-direction: row;
}

.benefit-right .benefit-image {
  order: 2;
}

.benefit-right .benefit-text {
  order: 1;
}

@media (max-width: 900px) {
  .benefit-block {
    width: 100%;
    max-width: 800px;
    height: auto;
    flex-direction: column !important;
  }

  .benefit-image {
    width: 100%;
    height: 200px;
    order: 1 !important;
  }

  .benefit-text {
    width: 100%;
    padding: 25px;
    order: 2 !important;
  }

  .benefits-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 60px 0;
  }

  .benefits-header {
    margin-bottom: 40px;
  }

  .benefits-title {
    font-size: 28px;
  }

  .benefit-text {
    padding: 20px;
  }

  .benefits-content {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 40px 0;
  }

  .benefits-title {
    font-size: 24px;
  }

  .benefits-overline {
    font-size: 14px;
  }

  .benefit-text {
    padding: 15px;
  }

  .benefit-title {
    font-size: 15px;
  }

  .benefit-description {
    font-size: 13px;
  }
}

.btn-quote {
  background-color: #ff9233;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  transform: translateY(0);
}

.btn-quote:hover {
  background-color: #e67d1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 146, 51, 0.3);
}

.quote-icon {
  font-size: 18px;
  color: white;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn-web,
  .btn-app {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 28px;
  }

  .btn-quote {
    font-size: 14px;
    padding: 10px 20px;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.quote-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.features-section {
  background-color: white;
  padding: 80px 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-overline {
  font-size: 16px;
  font-weight: 400;
  color: #ff9233;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
}

.features-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(339px, 1fr));
  gap: 40px;
  justify-items: center;
}

.feature-card {
  width: 339px;
  height: 340px;
  display: flex;
  flex-direction: column;
  background: white;
}

.feature-image {
  width: 339px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 12px 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.3;
}

.feature-card-description {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
  flex: 1;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .feature-card {
    width: 100%;
    max-width: 339px;
  }

  .feature-image {
    width: 100%;
    max-width: 339px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 0;
  }

  .features-title {
    font-size: 24px;
  }

  .features-overline {
    font-size: 14px;
  }
}

.benefits-section {
  background-color: white;
  padding: 80px 0;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-overline {
  font-size: 16px;
  font-weight: 400;
  color: #ff9233;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
}

.benefits-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.2;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.benefit-block {
  width: 800px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.benefit-image {
  width: 320px;
  height: 200px;
  flex-shrink: 0;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefit-text {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.3;
}

.benefit-description {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
}

.benefit-left {
  flex-direction: row;
}

.benefit-left .benefit-image {
  order: 1;
}

.benefit-left .benefit-text {
  order: 2;
}

.benefit-right {
  flex-direction: row;
}

.benefit-right .benefit-image {
  order: 2;
}

.benefit-right .benefit-text {
  order: 1;
}

@media (max-width: 900px) {
  .benefit-block {
    width: 100%;
    max-width: 800px;
    height: auto;
    flex-direction: column !important;
  }

  .benefit-image {
    width: 100%;
    height: 200px;
    order: 1 !important;
  }

  .benefit-text {
    width: 100%;
    padding: 25px;
    order: 2 !important;
  }

  .benefits-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 60px 0;
  }

  .benefits-header {
    margin-bottom: 40px;
  }

  .benefits-title {
    font-size: 28px;
  }

  .benefit-text {
    padding: 20px;
  }

  .benefits-content {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 40px 0;
  }

  .benefits-title {
    font-size: 24px;
  }

  .benefits-overline {
    font-size: 14px;
  }

  .benefit-text {
    padding: 15px;
  }

  .benefit-title {
    font-size: 15px;
  }

  .benefit-description {
    font-size: 13px;
  }
}

.testimonials-section {
  background-color: white;
  padding: 80px 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 120px;
}

.testimonials-overline {
  font-size: 16px;
  font-weight: 400;
  color: #ff9233;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 60px 20px 30px 20px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.testimonial-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid white;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  text-align: left;
  padding-top: 20px;
}

.testimonial-role {
  font-size: 10px;
  font-weight: 400;
  color: #ff9233;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0 0 16px 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.3;
}

.testimonial-quote {
  font-size: 14px;
  font-weight: 400;
  color: #2f2f2f;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
}

.testimonials-grid::-webkit-scrollbar {
  height: 6px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: #ff9233;
  border-radius: 3px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
  background: #e67d1a;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    gap: 20px;
    padding: 60px 20px 20px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: 60px 20px 25px 20px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-grid {
    padding: 60px 15px 15px 15px;
    gap: 15px;
  }

  .testimonial-card {
    flex: 0 0 260px;
    padding: 60px 15px 20px 15px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .testimonials-overline {
    font-size: 14px;
  }

  .testimonial-avatar img {
    width: 100px;
    height: 100px;
    border: 4px solid white;
  }

  .testimonial-avatar {
    top: -50px;
  }
}

.quote-section {
  background: linear-gradient(135deg, #ff9233 0%, #ffc300 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.quote-container {
  width: 890px;
  height: 363px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 100%;
}

.quote-content {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.quote-text {
  flex: 0 0 40%;
  color: white;
}

.quote-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin: 0 0 20px 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.2;
}

.quote-description {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
}

.quote-form-wrapper {
  flex: 0 0 60%;
}

.quote-form {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-field {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-field-half {
  flex: 1;
  margin-bottom: 0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #adb5bd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Source Sans 3', sans-serif;
  color: #adb5bd;
  background: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #ff9233;
  color: #000000;
  box-shadow: 0 0 0 2px rgba(255, 146, 51, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #adb5bd;
}

.form-field input:not(:placeholder-shown),
.form-field textarea:not(:placeholder-shown) {
  color: #000000;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.btn-submit {
  background-color: #ff9233;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #e67d1a;
}

@media (max-width: 1024px) {
  .quote-container {
    width: 100%;
    height: auto;
    padding: 0 30px;
  }

  .quote-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .quote-text {
    flex: none;
  }

  .quote-form-wrapper {
    flex: none;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .quote-section {
    padding: 60px 0;
  }

  .quote-container {
    padding: 0 20px;
  }

  .quote-content {
    gap: 24px;
  }

  .quote-title {
    font-size: 28px;
  }

  .quote-description {
    font-size: 15px;
  }

  .quote-form {
    padding: 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-field-half {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .quote-section {
    padding: 40px 0;
  }

  .quote-title {
    font-size: 24px;
  }

  .quote-description {
    font-size: 14px;
  }

  .quote-form {
    padding: 20px;
  }

  .form-submit {
    justify-content: center;
  }
}

.pricing-section {
  background-color: white;
  padding: 80px 0;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 80px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-overline {
  font-size: 16px;
  font-weight: 700;
  color: #ff9233;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
}

.pricing-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.is-featured {
  border-color: #ff9233;
  box-shadow: 0 12px 34px rgba(255, 146, 51, 0.18);
}

.pricing-name {
  font-size: 18px;
  font-weight: 800;
  color: #2f2f2f;
  letter-spacing: 0.5px;
  margin: 0 0 6px 0;
}

.pricing-subtitle {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0 0 16px 0;
}

.pricing-price {
  font-size: 34px;
  font-weight: 800;
  color: #ff9233;
  margin: 0 0 18px 0;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 22px;
  margin-right: 4px;
}

.pricing-price .period {
  font-size: 18px;
  font-weight: 700;
  color: #ff9233;
  margin-left: 2px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 0 auto 22px auto;
  padding: 0;
  max-width: 260px;
}

.pricing-features li {
  font-size: 14px;
  color: #2f2f2f;
  padding-left: 22px;
  margin: 10px 0;
  position: relative;
  line-height: 1.4;
}

/* Check rojo como en el mock */
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(1px);
  font-weight: 700;
  color: #ff5a5a;
}

.pricing-btn {
  background-color: #ff9233;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.1s ease;
  width: 100%;
  max-width: 220px;
  margin: 6px auto 0 auto;
  display: inline-block;
}

.pricing-btn:hover {
  background-color: #e67d1a;
}

.pricing-btn:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 0;
  }
  .pricing-title {
    font-size: 24px;
  }
}

/* === PRICING: Carrusel en mobile === */

/* scrollbars (solo cuando hay overflow-x) */
.pricing-grid::-webkit-scrollbar {
  height: 6px;
}
.pricing-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.pricing-grid::-webkit-scrollbar-thumb {
  background: #ff9233;
  border-radius: 3px;
}
.pricing-grid::-webkit-scrollbar-thumb:hover {
  background: #e67d1a;
}

@media (max-width: 1024px) {
  /* Mantén 2 columnas en tablets */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Cambiar a carrusel horizontal */
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-grid {
    display: flex; /* carrusel */
    overflow-x: auto; /* scroll horizontal */
    overflow-y: visible;
    gap: 20px;
    padding: 20px; /* respiro como en testimonios */
    scroll-snap-type: x mandatory; /* snap */
    -webkit-overflow-scrolling: touch;
  }

  .pricing-card {
    flex: 0 0 280px; /* ancho de cada slide */
    scroll-snap-align: start;
    padding: 26px 20px; /* un pelín más compacto */
  }

  .pricing-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 0;
  }
  .pricing-grid {
    gap: 16px;
    padding: 16px;
  }
  .pricing-card {
    flex-basis: 260px;
    padding: 22px 18px;
  }
  .pricing-title {
    font-size: 24px;
  }
}

.footer {
  background-color: #2f2f2f;
  padding: 40px 0 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
  margin-top: -20px;
}

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

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ff9233;
  font-family: 'Source Sans 3', sans-serif;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-block;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-legal {
  text-align: center;
  border-top: 1px solid #444444;
  padding-top: 20px;
}

.footer-legal p {
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
}

/* Platform section */
.platform-section {
  background-color: white;
  padding: 80px 0;
}

.platform-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.platform-header {
  text-align: center;
  margin-bottom: 60px;
}

.platform-overline {
  font-size: 16px;
  font-weight: 400;
  color: #ff9233;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
}

.platform-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.2;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.platform-card {
  text-align: center;
  padding: 40px 20px;
}

.platform-icon {
  margin-bottom: 30px;
}

.platform-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.platform-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 16px 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.3;
}

.platform-card-description {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 24px 0;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
  min-height: 42px;
}

.platform-btn {
  background-color: white;
  color: #ff9233;
  border: 2px solid #ff9233;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .platform-header {
    margin-bottom: 40px;
  }

  .platform-title {
    font-size: 28px;
  }

  .platform-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 40px 0;
  }

  .platform-title {
    font-size: 24px;
  }

  .platform-overline {
    font-size: 14px;
  }

  .platform-card {
    padding: 25px 15px;
  }

  .platform-icon img {
    width: 60px;
    height: 60px;
  }

  .platform-card-title {
    font-size: 18px;
  }
  .footer {
    padding: 30px 0 15px 0;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .footer-logo-text {
    font-size: 18px;
  }

  .social-link img {
    width: 28px;
    height: 28px;
  }
}

:root {
  --accent: #0f172a;
  --muted: #6b7280;
}

body {
  background-color: #f8fafc;
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  margin: 0;
  padding: 0;
}

/*Terms and Conditions*/


.terms-container {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.terms-card {
  max-width: 900px;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 2.5rem;
  line-height: 1.65;
}

.terms-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff7a00; 
  margin: 0;
  text-align: center; 
}

.terms-body h2 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: #ff7a00; 
  font-weight: 600;
}

.terms-body a {
  color: #2563eb;
  text-decoration: underline;
}

.terms-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

/* ---- Footer general ---- */
.footer {
  background-color: #111827;
  color: white;
  padding: 30px 0 15px;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo-img {
  width: 120px;
  margin-bottom: 10px;
}

.footer-social {
  margin: 15px 0;
}

.footer-social img {
  width: 28px;
  height: 28px;
  margin: 0 8px;
  transition: opacity 0.2s ease;
}

.footer-social img:hover {
  opacity: 0.7;
}
.footer-link {
  color: #ff7a00;
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff9f43;
  text-decoration: underline;
}

/* About Product Section */

.about-product {
    text-align: center;
    padding: 40px 20px 80px;
    background-color: #fff;
}

.about-product .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}


.about-product .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7b00;
    margin: 10px auto 0;
    border-radius: 3px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border: 2px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* efecto suave al pasar el cursor */
.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Team Section */
.team {
    padding: 60px 20px 90px;
    background: #f9f9fb; /* leve contraste con blanco */
    text-align: center;
}

.team .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.team .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7b00; /* naranja de tus botones */
    margin: 10px auto 0;
    border-radius: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 3 por fila en desktop, 2 en tablet, 1 en móvil */
.team-card {
    grid-column: span 4;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px 18px 22px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

@media (max-width: 992px) {
    .team-card { grid-column: span 6; }
}
@media (max-width: 600px) {
    .team-card { grid-column: span 12; }
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.team-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
    border: 2px solid #111;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ff7b00;       /* nombre en naranja */
    margin: 2px 0 2px;
}

.team-role {
    font-size: .92rem;
    color: #666;
    margin: 0 0 8px;
}

.team-bio {
    font-size: .9rem;
    color: #333;
    line-height: 1.45;
    margin: 0;
}


.about-team {
    text-align: center;
    padding: 50px 20px 90px;
    background-color: #fff;
}

.about-team .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-team .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7b00;
    margin: 10px auto 0;
    border-radius: 3px;
}
