/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  --body-font: "Roboto", sans-serif;
  --heading-font: "Montserrat Alternates", sans-serif;

  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h3-font-size: 1rem;
  --normal-font-size: 1rem;

  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1.125rem;
  }
}

/*=============== BASE ===============*/
*,
*:after,
*:before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  color: var(--white-color);
  background-color: var(--black-color);
  overflow-x: hidden;
}

/* Tipografía de encabezados */
h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: var(--font-bold);
  letter-spacing: -0.03em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(3rem, 5vw, 8rem);
  color: hsl(0, 0%, 100%);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: hsl(0, 0%, 95%);
}

h3 {
  font-size: var(--h3-font-size);
  color: hsl(0, 0%, 90%);
}

/* Párrafos unificados */
p {
  font-size: clamp(1.35rem, 0.3vw + 0.9rem, 1.25rem);
  line-height: 1.6;
  font-weight: var(--font-regular);
  color: hsl(0, 0%, 90%);
  max-width: 60ch;
  margin-bottom: 1rem;
}

/* Párrafos destacados */
.highlight-text {
  font-size: clamp(1.5rem, 0.5vw + 1rem, 2.5rem);
  font-weight: var(--font-medium);
  color: hsl(173, 100%, 51%);
}

/*=============== LISTAS & ENLACES ===============*/
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--heading-font);
  font-weight: var(--font-bold);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: hsl(0, 0%, 100%);
  text-transform: uppercase;
}

.nav__toggle,
.nav__close {
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__toggle {
  animation: pulse 3s alternate infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: hsla(0, 0%, 0%, 0.8);
    backdrop-filter: blur(12px);
    width: 80%;
    height: 100%;
    padding: 6rem 3rem 0;
    transition: right 0.4s ease;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  right: 0;
}

/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 768px) {
  .nav__menu {
    width: 50%;
  }
}
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
  .nav {
    height: calc(var(--header-height) + 2rem);
  }
  .nav__toggle,
  .nav__close {
    display: none;
  }
  .nav__menu {
    width: initial;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
}
@media screen and (min-width: 2040px) {
  .container {
    max-width: 1150px;
  }
}

/*=============== SECTIONS & ARTICLES ===============*/
section,
article {
  position: relative;
  min-height: 100vh;
}

.content {
  margin: 0 auto;
  width: 900px;
  max-width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: grid;
  align-content: center;
}

/* Imagenes de fondo */
.fixed img {
  height: 100%;
  width: 150%;
  object-fit: cover;
  z-index: -1;
  position: absolute;
  inset: 0;
  left: 50%;
  translate: -50% 0;
  filter: brightness(0.5);
}

/*=============== BOTONES ===============*/
.btn-servicios {
  display: inline-block;
  background: linear-gradient(135deg, #000, #222); /* degradado elegante */
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.25rem);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin: 2rem auto; /* lo centra en bloques */
}

/* Hover con animación */
.btn-servicios:hover {
  background: linear-gradient(135deg, #222, #000);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Contenedor para centrar */
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
}

/*=============== NUEVOS ESTILOS PARA PÁGINAS ===============*/

/* Sección general */
.section {
  padding: 4rem 0;
  min-height: auto;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: var(--big-font-size);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Botón secundario */
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/*=============== SERVICIOS ===============*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.service-card p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

/* Proceso de trabajo */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 1rem;
  color: #fff;
}

.step p {
  opacity: 0.8;
  margin: 0 auto;
}

/*=============== CONTACTO ===============*/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-methods {
  display: grid;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  color: #fff;
  margin-top: 0.5rem;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-details p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.contact-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #fff;
}

.social-section {
  margin-top: 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: #fff;
}

.faq-item p {
  opacity: 0.8;
  margin: 0;
}

/*=============== NOSOTROS ===============*/
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 2rem;
  color: #fff;
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Filosofía */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

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

.philosophy-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.philosophy-item h3 {
  margin-bottom: 1rem;
  color: #fff;
}

.philosophy-item p {
  opacity: 0.8;
  margin: 0 auto;
}

/* Sectores */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sector-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.sector-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.sector-card h3 {
  margin-bottom: 1rem;
  color: #fff;
}

.sector-card p {
  opacity: 0.8;
  margin: 0 auto;
}

/* Timeline del proceso */
.process-timeline {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.timeline-content p {
  opacity: 0.8;
  margin: 0;
}

/* Sección de compromiso */
.commitment-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.commitment-content {
  margin: 2rem 0;
}

.commitment-content p {
  margin: 0 auto 1.5rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 768px) {
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  
  .services-grid,
  .philosophy-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/*=============== CATÁLOGO DE INVITACIONES ===============*/
.events-catalog {
  display: grid;
  gap: 5rem;
  margin-top: 3rem;
}

.event-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.event-header {
  text-align: center;
  margin-bottom: 3rem;
}

.event-icon {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.event-header h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 2.5rem;
}

.event-header p {
  opacity: 0.8;
  font-size: 1.2rem;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-popular {
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.plan-popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.plan-badge {
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.popular-label {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  position: absolute;
  top: -10px;
  right: 20px;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}

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

.plan-features li {
  padding: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.1rem;
}

.plan-btn {
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.plan-btn:hover {
  background: linear-gradient(135deg, #333, #000);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.plan-popular .plan-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
}

.plan-popular .plan-btn:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
}

@media screen and (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-popular {
    transform: none;
  }
  
  .plan-popular:hover {
    transform: translateY(-8px);
  }
  
  .event-category {
    padding: 2rem 1rem;
  }
  
  .events-catalog {
    gap: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .btn-container {
    flex-direction: column;
  }
  
  .plan-price {
    font-size: 2rem;
  }
  
  .event-header h2 {
    font-size: 2rem;
  }
}

/*=============== FOOTER ===============*/
.footer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
  color: #fff;
  padding: 4rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: #fff;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: var(--font-semi-bold);
  color: #fff;
  margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #fff;
}

/* Contact Section */
.footer-contact {
  display: grid;
  gap: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-item i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}

.contact-info {
  flex: 1;
}

.contact-text {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-btn {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.call-btn:hover {
  background: rgba(34, 197, 94, 0.3);
  transform: translateY(-1px);
}

.whatsapp-btn {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

.email-btn {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.email-btn:hover {
  background: rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer Responsive */
@media screen and (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .contact-actions {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .footer-social {
    justify-content: center;
  }
  
  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-action-btn {
    width: fit-content;
  }
}
