/* Variables */
:root {
  /* Primary colors */
  --primary-color: #83c5be;
  --primary-dark: #52a9a1;
  --primary-light: #b8e0dd;
  
  /* Secondary colors */
  --secondary-color: #ffddd2;
  --secondary-dark: #ffbca6;
  --secondary-light: #fff1ec;
  
  /* Accent colors */
  --accent-color: #e29578;
  --accent-dark: #d47a59;
  --accent-light: #edbfad;
  
  /* Neutral colors */
  --dark-color: #333333;
  --dark-light: #555555;
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  
  /* Text colors */
  --text-dark: #222222;
  --text-medium: #444444;
  --text-light: #666666;
  
  /* Shadows */
  --shadow-small: 3px 3px 10px rgba(0, 0, 0, 0.1), -3px -3px 10px rgba(255, 255, 255, 0.8);
  --shadow-medium: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.8);
  --shadow-large: 10px 10px 25px rgba(0, 0, 0, 0.1), -10px -10px 25px rgba(255, 255, 255, 0.8);
  --shadow-inset: inset 3px 3px 5px rgba(0, 0, 0, 0.1), inset -3px -3px 5px rgba(255, 255, 255, 0.8);
  
  /* Border radius */
  --border-radius-small: 5px;
  --border-radius-medium: 10px;
  --border-radius-large: 20px;
  --border-radius-round: 50px;
  
  /* Transitions */
  --transition-slow: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-medium: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-fast: all 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  
  /* Font weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* Base Styles */
html, body {
  font-family: 'Merriweather', serif;
  color: var(--text-medium);
  background-color: var(--light-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  font-weight: var(--font-weight-bold);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

a {
  color: var(--primary-color);
  transition: var(--transition-fast);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.button {
  transition: var(--transition-medium);
  border-radius: var(--border-radius-round);
  box-shadow: var(--shadow-small);
  font-family: 'Montserrat', sans-serif;
  font-weight: var(--font-weight-medium);
  padding: 0.75rem 1.5rem;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-inset);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-light {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-light);
}

.button.is-light:hover {
  background-color: var(--light-color);
  color: var(--primary-dark);
}

.section {
  padding: 5rem 1.5rem;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-color), var(--primary-dark));
  border-radius: var(--border-radius-small);
}

.container {
  padding: 0 1.5rem;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-small);
  transition: var(--transition-medium);
}

.navbar-brand .title {
  margin-bottom: 0;
}

.navbar-item {
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.navbar-burger {
  color: var(--text-dark);
}

.navbar-menu.is-active {
  box-shadow: var(--shadow-small);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 3rem 1.5rem;
}

.hero-title {
  color: var(--white-color);
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out;
}

.hero-description {
  color: var(--white-color);
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  animation: fadeInUp 1.4s ease-out;
}

.hero .buttons {
  animation: fadeInUp 1.6s ease-out;
}

/* Process Section */
.proceso {
  background-color: var(--light-color);
}

.proceso-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.proceso-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.proceso-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-color);
  box-shadow: var(--shadow-small);
  transition: var(--transition-medium);
}

.proceso-card:hover .proceso-icon {
  color: var(--white-color);
  background-color: var(--primary-color);
  box-shadow: var(--shadow-inset);
}

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

.proceso-card p {
  color: var(--text-medium);
}

/* Services/Prices Section */
.servicios {
  background-color: var(--white-color);
  position: relative;
}

.servicios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 0;
}

.precio-card {
  position: relative;
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.precio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.precio-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.03);
}

.precio-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.precio-card .tag {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  padding: 8px 30px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  box-shadow: var(--shadow-small);
  z-index: 2;
}

.precio-card .card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.precio-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.precio-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.precio-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.precio-card .price {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.precio-card .description {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.precio-card .features {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2rem;
}

.precio-card .features li {
  padding: 0.5rem 0;
  color: var(--text-medium);
  display: flex;
  align-items: center;
}

.precio-card .features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.precio-card .button {
  margin-top: auto;
}

.precio-card.horizontal {
  flex-direction: row;
}

.precio-card.horizontal .card-image {
  width: 40%;
  height: auto;
}

.precio-card.horizontal .card-content {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .precio-card.horizontal {
    flex-direction: column;
  }
  
  .precio-card.horizontal .card-image,
  .precio-card.horizontal .card-content {
    width: 100%;
  }
  
  .precio-card.horizontal .card-image {
    height: 220px;
  }
}

/* Projects Section */
.proyectos {
  background-color: var(--light-color);
}

.proyecto-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.proyecto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.proyecto-card .card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proyecto-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.proyecto-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.proyecto-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.proyecto-card p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.proyecto-card .button {
  margin-top: auto;
  align-self: flex-start;
}

/* Portfolio Section */
.portfolio {
  background-color: var(--white-color);
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  height: 240px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition-medium);
}

.portfolio-item:hover .overlay {
  background: linear-gradient(to top, rgba(var(--primary-color-rgb), 0.8) 0%, rgba(var(--primary-color-rgb), 0.2) 100%);
}

.portfolio-item .overlay h3 {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  font-weight: var(--font-weight-bold);
}

.portfolio-item .overlay p {
  color: var(--white-color);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Recursos Externos Section */
.recursos-externos {
  background-color: var(--light-color);
}

.recurso-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.recurso-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.recurso-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.recurso-card h3 a {
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.recurso-card h3 a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.recurso-card .description {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  flex-grow: 1;
}

.recurso-card .button {
  align-self: flex-start;
}

/* Reconocimientos Section */
.reconocimientos {
  background-color: var(--white-color);
}

.reconocimiento-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reconocimiento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.award-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white-color);
  box-shadow: var(--shadow-small);
  transition: var(--transition-medium);
}

.reconocimiento-card:hover .award-icon {
  color: var(--white-color);
  background-color: var(--accent-color);
  box-shadow: var(--shadow-inset);
}

.reconocimiento-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.reconocimiento-card p {
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
}

/* Vision Section */
.vision {
  background-color: var(--light-color);
}

.vision-image {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.vision-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.vision-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

/* Insights Section */
.insights {
  background-color: var(--white-color);
}

.insight-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.insight-card .card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.insight-card .card-content {
  padding: 2rem;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.insight-card .author {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.insight-card .description {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  flex-grow: 1;
}

.insight-card .button {
  align-self: flex-start;
}

/* Media Section */
.media {
  background-color: var(--light-color);
}

.media-mention {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  height: 240px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-mention:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.media-mention img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.media-mention:hover img {
  transform: scale(1.05);
}

.media-mention .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition-medium);
}

.media-mention:hover .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.media-mention .overlay h3 {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  font-weight: var(--font-weight-bold);
}

.media-mention .overlay p {
  color: var(--white-color);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Contact Section */
.contacto {
  background-color: var(--white-color);
}

.contact-info {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  height: 100%;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white-color);
  box-shadow: var(--shadow-small);
}

.info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.map-container {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-form-container {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  height: 100%;
}

.contact-form .label {
  color: var(--text-dark);
  font-weight: var(--font-weight-medium);
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  background-color: var(--white-color);
  border: none;
  box-shadow: var(--shadow-inset);
  border-radius: var(--border-radius-small);
  transition: var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  box-shadow: var(--shadow-inset), 0 0 0 2px var(--primary-light);
}

.contact-form .icon {
  color: var(--primary-color);
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
}

.contact-form .checkbox input {
  margin-right: 0.5rem;
}

/* Footer Section */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 5rem 1.5rem 2rem;
}

.footer .title {
  color: var(--white-color);
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: var(--light-gray);
  transition: var(--transition-fast);
  margin-right: 1rem;
}

.social-links a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-gray);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.newsletter .input {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white-color);
  border-radius: var(--border-radius-small);
}

.newsletter .input:focus {
  box-shadow: 0 0 0 2px var(--primary-light);
}

.newsletter .button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: var(--border-radius-small);
}

.newsletter .button:hover {
  background-color: var(--primary-dark);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.success-message {
  margin-bottom: 2rem;
  color: var(--text-medium);
}

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.privacy-content, .terms-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.privacy-content h2, .terms-content h2 {
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.privacy-content p, .terms-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.privacy-content ul, .terms-content ul {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

/* About Page */
.about-page {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.about-hero {
  position: relative;
  height: 400px;
  margin-bottom: 3rem;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-title {
  color: var(--white-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-subtitle {
  color: var(--white-color);
  font-size: 1.2rem;
  max-width: 600px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.about-content h2 {
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* Cookie Consent */
#cookieConsent {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
}

#cookieConsent button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

#cookieConsent button:hover {
  background-color: var(--primary-dark);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
  
  .precio-card.featured {
    transform: scale(1.01);
  }
  
  .precio-card.featured:hover {
    transform: scale(1.01) translateY(-5px);
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .proceso-card,
  .precio-card,
  .proyecto-card,
  .portfolio-item,
  .recurso-card,
  .reconocimiento-card,
  .insight-card,
  .media-mention {
    margin-bottom: 2rem;
  }
  
  .precio-card.featured {
    transform: none;
  }
  
  .precio-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .contact-form-container,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .footer {
    padding: 3rem 1rem 2rem;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .button.is-large {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  
  .info-item {
    flex-direction: column;
  }
  
  .info-item i {
    margin-bottom: 1rem;
  }
  
  .social-links {
    flex-direction: column;
  }
  
  .social-links a {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  .title.is-4{
    font-size: 20px;
  }
}
.navbar-burger{
  display: none;
}