/* Root Variables */
:root {
  --primary-color: #3a86ff;
  --primary-dark: #2970e3;
  --secondary-color: #ff006e;
  --secondary-dark: #e0005f;
  --accent-color: #fb5607;
  --accent-dark: #e04b00;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --text-color: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --success-color: #38b000;
  --warning-color: #ffbe0b;
  --danger-color: #d00000;
  --border-radius: 8px;
  --card-radius: 12px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), #3a86ff, #4361ee);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff006e, #d90368);
  --gradient-accent: linear-gradient(135deg, var(--accent-color), #fb5607, #fd9e02);
  --blur-effect: blur(10px);
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(255, 255, 255, 0.8);
  --curve-pattern: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

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

.section {
  padding: 5rem 0;
  position: relative;
}

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.button:active {
  transform: translateY(0);
}

.button.is-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

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

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

.button.is-light:hover {
  background: rgba(58, 134, 255, 0.1);
}

.button.is-rounded {
  border-radius: 50px;
}

/* Biomorphic Design Elements */
.biomorphic-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  z-index: -1;
}

.biomorphic-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -200px;
  left: -200px;
}

.biomorphic-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: -150px;
  right: -150px;
}

.biomorphic-shape-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-color);
  top: 30%;
  right: -100px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-item {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: var(--transition);
}

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

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 70%;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 30px;
  position: relative;
}

.navbar-burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navbar-burger span:nth-child(1) {
  top: 0px;
}

.navbar-burger span:nth-child(2) {
  top: 10px;
}

.navbar-burger span:nth-child(3) {
  top: 20px;
}

.navbar-burger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.navbar-burger.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Vision Section */
.vision-section {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.vision-section .content {
  padding: 2rem 0;
}

.vision-section .image-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 0 auto;
}

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

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

/* Stats Widget */
.stats-container {
  margin-top: 3rem;
}

.stat-widget {
  background-color: white;
  padding: 2rem;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.stat-widget:hover {
  transform: translateY(-5px);
}

.stat-widget h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.progress-container {
  margin-top: 1rem;
}

.progress {
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.progress.is-primary::-webkit-progress-value {
  background: var(--gradient-primary);
}

/* Features/Services Section */
.features-section {
  background-color: #f8f9fa;
  position: relative;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin-bottom: 2rem;
  height: 100%;
  background-color: white;
  border: none;
}

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

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

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

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

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

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

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

/* Recursos Section */
.recursos-section {
  background-color: white;
  position: relative;
}

.recursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.recurso-item {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--card-radius);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.recurso-item:hover {
  transform: translateY(-5px);
  background-color: var(--primary-color);
}

.recurso-item:hover h3,
.recurso-item:hover p {
  color: white;
}

.recurso-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.recurso-item p {
  font-size: 0.9rem;
  color: var(--text-color);
  transition: var(--transition);
}

/* Gallery Section */
.gallery-section {
  background-color: #f8f9fa;
  position: relative;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--overlay-dark), transparent);
  color: white;
  transition: var(--transition);
  transform: translateY(0);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(-5px);
}

.gallery-caption h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.gallery-caption p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Clientele Section */
.clientele-section {
  background-color: white;
  position: relative;
}

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

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

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.testimonial-position {
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 0;
}

.client-logos {
  margin-top: 4rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: var(--transition);
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-logo img {
  max-height: 80px;
  max-width: 100%;
}

/* Media Section */
.media-section {
  background-color: #f8f9fa;
  position: relative;
}

.media-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.media-feature img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

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

.media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.media-caption h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.media-caption p {
  margin-bottom: 1rem;
}

.media-publications {
  padding: 2rem;
  background-color: white;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow);
}

.media-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.media-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.media-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.media-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Careers Section */
.careers-section {
  background-color: white;
  position: relative;
}

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

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-description {
  margin-bottom: 1.5rem;
}

.job-requirements {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(58, 134, 255, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.career-benefits {
  margin-top: 4rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
  position: relative;
}

.contact-info {
  padding: 2rem;
  background-color: white;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow);
}

.contact-detail {
  margin-bottom: 1rem;
}

.contact-detail strong {
  color: var(--primary-color);
}

.contact-map {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

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

.contact-form-container {
  padding: 2rem;
  background-color: white;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow);
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

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

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
  padding: 0.75rem;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color);
}

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

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

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.is-active {
  display: flex;
}

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  max-width: 500px;
  width: 95%;
  margin: 0 auto;
  z-index: 2001;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.modal-close:hover {
  color: white;
  transform: rotate(90deg);
}

.box {
  background-color: white;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

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

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

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

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 37, 41, 0.95);
  color: white;
  z-index: 9999;
  backdrop-filter: blur(5px);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  padding-right: 2rem;
}

.cookie-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

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

/* Content Pages (Privacy, Terms) */
.content-page {
  padding-top: 120px;
  padding-bottom: 5rem;
}

.content-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.content-page h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.content-page p {
  margin-bottom: 1.5rem;
}

.content-page ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-body {
    min-height: 80vh;
  }
  
  .stat-widget {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: 0.75rem 2rem;
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .title.is-2 {
    font-size: 1.75rem;
  }
  
  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* AOS Additional Styling */
[data-aos] {
  pointer-events: auto !important;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

/* Animation for particles */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.navbar-burger{
  display: none;
}