.policy,
.success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__link {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  font-family: "Unbounded", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 600;
}

p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
  font-weight: 300;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #8b5cf6;
  padding: 16px 32px;
  border: 2px solid #8b5cf6;
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: #8b5cf6;
  color: white;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #8b5cf6;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-content {
  padding: 20px;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  color: white;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-text .btn-primary {
  margin-top: 30px;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Pensamos Section */
.pensamos {
  padding: 100px 0;
  background: #f8fafc;
}

.pensamos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pensamos-icon img {
  width: 60px;
  margin-bottom: 30px;
}

.pensamos-text h2 {
  margin-bottom: 30px;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pensamos-text p {
  margin-bottom: 20px;
  color: #475569;
}

.pensamos-text .btn-primary {
  margin-top: 30px;
}

.pensamos-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Separacion Section */
.separacion {
  padding: 100px 0;
  background: white;
}

.separacion h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.separacion-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #64748b;
  font-size: 1.1rem;
}

.separacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.separacion-card {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
  margin-bottom: 25px;
}

.card-icon img {
  width: 50px;
  height: 50px;
}

.separacion-card h3 {
  color: #8b5cf6;
  margin-bottom: 15px;
  font-weight: 600;
}

.separacion-card p {
  color: #475569;
}

/* Como Trabajamos Section */
.como-trabajamos {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

.como-trabajamos-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.como-trabajamos-icon img {
  width: 80px;
  margin-bottom: 30px;
}

.como-trabajamos h2 {
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.como-subtitle {
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 1.2rem;
  font-weight: 500;
}

.como-text {
  text-align: left;
  margin-bottom: 50px;
}

.como-text p {
  margin-bottom: 25px;
  color: #cbd5e1;
  font-size: 1rem;
}

/* Impactamos Section */
.impactamos {
  padding: 100px 0;
  background: #f8fafc;
}

.impactamos h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.impactamos-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #64748b;
  font-size: 1.1rem;
}

.impactamos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.impactamos-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impactamos-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.impactamos-icon {
  margin-bottom: 25px;
}

.impactamos-icon img {
  width: 50px;
  height: 50px;
}

.impactamos-item h3 {
  color: #8b5cf6;
  margin-bottom: 15px;
  font-weight: 600;
}

.impactamos-item p {
  color: #475569;
}

/* Contact Form Section */
.contact-form {
  padding: 100px 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.contact-text h2 {
  color: white;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-text p {
  margin-bottom: 20px;
  color: #e2e8f0;
}

.contact-info {
  margin-top: 40px;
}

.contact-info p {
  margin-bottom: 10px;
  color: white;
}

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

.form-group input {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder {
  color: #94a3b8;
}

.contact-image {
  text-align: center;
}

.contact-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 30px;
}

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

.footer-logo img {
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #334155;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Cookies Popup */
.cookies-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookies-popup.show {
  transform: translateY(0);
}

.cookies-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookies-icon {
  margin-bottom: 20px;
}

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

.cookies-content h3 {
  color: #8b5cf6;
  margin-bottom: 20px;
  font-weight: 700;
}

.cookies-content p {
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cookies-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav {
    display: none;
  }

  .hero-content,
  .pensamos-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .pensamos,
  .separacion,
  .como-trabajamos,
  .impactamos,
  .contact-form {
    padding: 60px 0;
  }

  .separacion-grid,
  .impactamos-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .cookies-buttons {
    flex-direction: column;
  }

  .cookies-content {
    margin: 20px;
    padding: 30px 25px;
  }
}

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

  .hero {
    padding: 80px 0 50px;
  }

  .pensamos,
  .separacion,
  .como-trabajamos,
  .impactamos,
  .contact-form {
    padding: 50px 0;
  }

  .separacion-card,
  .impactamos-item {
    padding: 30px 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 0.8rem;
  }
}
