/* ===== BASE STYLES AND VARIABLES ===== */
:root {
  /* Triadic color scheme */
  --primary-color: #4A6FE3;
  --primary-dark: #3a5ac5;
  --primary-light: #6a8aff;
  --secondary-color: #E34A6F;
  --secondary-dark: #c53a5a;
  --secondary-light: #ff6a8a;
  --tertiary-color: #4AE34A;
  --tertiary-dark: #3ac53a;
  --tertiary-light: #6aff6a;
  
  /* Neutral colors */
  --dark: #191C26;
  --medium-dark: #2E3248;
  --medium: #5F6277;
  --light-gray: #E6E8F0;
  --white: #FFFFFF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

h1 {
  font-size: 3.2rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.4rem;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-lg);
  position: relative;
}

h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--border-radius-sm);
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.text-left h2:after {
  left: 0;
  transform: none;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== BUTTON STYLES ===== */
.btn,
button,
input[type='submit'] {
  font-family: var(--font-heading);
  font-weight: 500;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

.btn:hover,
button:hover,
input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active,
button:active,
input[type='submit']:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
  color: var(--white);
}

.btn-tertiary {
  background: var(--gradient-tertiary);
  color: var(--dark);
}

.btn-tertiary:hover {
  background: linear-gradient(135deg, var(--tertiary-dark), var(--tertiary-color));
  color: var(--dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.header.scrolled {
  padding: 0.25rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.navbar-brand:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-light);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark);
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

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

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

.navbar-nav .nav-link:hover:after {
  width: 50%;
}

@media (max-width: 992px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
  }
  
  .navbar-nav .nav-link:after {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--white);
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-out;
}

.hero p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.2s ease-out;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  animation: fadeIn 1.4s ease-out;
}

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

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

/* ===== STATISTICS SECTION ===== */
.statistics {
  background-color: var(--white);
  padding: var(--space-xl) 0;
}

.stat-card {
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.stat-card p {
  font-size: 1rem;
  color: var(--medium);
  margin-bottom: 0;
}

/* ===== PROCESO SECTION ===== */
#proceso {
  background-color: var(--light-gray);
  padding: var(--space-xxl) 0;
}

.proceso-image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.proceso-image-container:hover {
  transform: scale(1.02);
}

.accordion-item {
  margin-bottom: var(--space-md);
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: var(--space-lg) var(--space-lg);
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-md) !important;
  position: relative;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-dark);
  background-color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  transition: all 0.3s ease;
}

.accordion-body {
  padding: var(--space-lg);
  background-color: var(--white);
}

/* ===== PLANES SECTION ===== */
#planes {
  padding: var(--space-xxl) 0;
}

.price-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-color);
}

.price-card.featured:hover {
  transform: translateY(-15px);
}

.price-card .card-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-lg);
  text-align: center;
  border-bottom: none;
}

.price-card .card-header h3 {
  margin-bottom: 0;
  color: var(--white);
}

.price-card .card-body {
  padding: var(--space-lg);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: var(--space-md) 0;
  font-family: var(--font-heading);
}

.price-card ul {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.price-card ul li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
}

.price-card ul li:before {
  content: "✓";
  color: var(--tertiary-color);
  position: absolute;
  left: -5px;
  font-weight: bold;
}

.price-card .btn-block {
  width: 100%;
}

/* ===== INNOVATION SECTION ===== */
#innovacion {
  background-color: var(--white);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

#innovacion:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--tertiary-light);
  opacity: 0.1;
  z-index: 0;
}

#innovacion:after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  opacity: 0.1;
  z-index: 0;
}

.innovation-image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.innovation-stat {
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}

.innovation-stat h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.innovation-stat p {
  margin-bottom: 0;
  color: var(--medium);
  font-size: 0.9rem;
}

.innovation-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.innovation-card .card-image {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innovation-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.innovation-card .card-content {
  padding: var(--space-lg);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.innovation-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.innovation-card p {
  color: var(--medium);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== RECURSOS SECTION ===== */
#recursos {
  background-color: var(--light-gray);
  padding: var(--space-xxl) 0;
}

.recursos-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.recursos-links {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.resource-list li {
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--light-gray);
}

.resource-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.resource-list a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  display: block;
  margin-bottom: var(--space-xs);
}

.resource-list a:hover {
  color: var(--secondary-dark);
  transform: translateX(5px);
}

.resource-list p {
  font-size: 0.9rem;
  color: var(--medium);
  margin-bottom: 0;
}

/* ===== HISTORIAS SECTION ===== */
#historias {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.success-story-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.success-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.success-story-card .card-image {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-story-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.success-story-card .card-content {
  padding: var(--space-lg);
  background-color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-story-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.success-metrics {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: var(--space-md) 0;
}

.metric {
  text-align: center;
}

.metric .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  font-family: var(--font-heading);
}

.metric .label {
  font-size: 0.9rem;
  color: var(--medium);
}

.testimonial {
  font-style: italic;
  color: var(--medium);
  padding: var(--space-md);
  background-color: var(--light-gray);
  border-radius: var(--border-radius-md);
  margin-top: var(--space-md);
  position: relative;
}

.testimonial:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

/* ===== WEBINARS SECTION ===== */
.webinars {
  background-color: var(--light-gray);
  padding: var(--space-xxl) 0;
}

.webinar-card {
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

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

.webinar-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-md);
  min-width: 80px;
  text-align: center;
}

.webinar-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.webinar-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.webinar-content {
  padding: var(--space-lg);
  flex-grow: 1;
}

.webinar-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.webinar-content p {
  font-size: 0.95rem;
  color: var(--medium);
  margin-bottom: var(--space-md);
}

/* ===== CLIENTES SECTION ===== */
.clientes {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.client-logos {
  margin-bottom: var(--space-xl);
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: var(--space-md);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.3s ease;
}

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

.testimonial-card .quote {
  font-style: italic;
  color: var(--dark);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-lg);
}

.testimonial-card .quote:before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
}

.testimonial-card .author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 0;
}

.author-info p {
  color: var(--medium);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== PRENSA SECTION ===== */
.prensa {
  background-color: var(--light-gray);
  padding: var(--space-xxl) 0;
}

.press-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.press-card .card-image {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.press-card .card-content {
  padding: var(--space-lg);
  background-color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.press-source {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.press-card h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.press-card p {
  color: var(--medium);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

/* ===== CONTACTO SECTION ===== */
#contacto {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

#contacto:before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--tertiary-light);
  opacity: 0.1;
  z-index: 0;
}

.contact-info {
  padding: var(--space-lg);
  background-color: var(--light-gray);
  border-radius: var(--border-radius-lg);
  height: 100%;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.contact-item {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  margin-right: var(--space-md);
  width: 20px;
  color: var(--secondary-color);
}

.contact-form-container {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-control, .form-select {
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.form-label {
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ===== MAP SECTION ===== */
.map-section {
  height: 400px;
  overflow: hidden;
}

.map-container {
  height: 100%;
  width: 100%;
}

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

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-lg);
}

.footer h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
}

.footer p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: var(--space-xs);
}

.footer address {
  color: var(--light-gray);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.8;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.social-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.social-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.social-links a:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.social-links a:hover:before {
  width: 100%;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) 0;
}

.success-content {
  max-width: 600px;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 100px 0 50px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .webinar-card {
    flex-direction: column;
  }
  
  .webinar-date {
    flex-direction: row;
    padding: var(--space-sm);
    gap: var(--space-sm);
    justify-content: center;
  }
  
  .testimonial-card .author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-card .author img {
    margin-right: 0;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .hero {
    padding: 80px 0 40px;
  }
}

/* ===== PARTICLE ANIMATIONS ===== */
@keyframes floating {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}