/* ========================================
   HERO CONTACTO - PREMIUM CON ANIMACIONES
======================================== */

.hero-contacto {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
  padding: 4rem 0 6rem;
}

/* === BACKGROUND === */
.hero-contacto__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(163, 126, 73, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(151, 123, 73, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
  z-index: 0;
  animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}

/* === PARTÍCULAS FLOTANTES === */
.hero-contacto__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #A37E49, #C49A5A);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(163, 126, 73, 0.6);
  animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 85%; top: 40%; animation-delay: 2s; }
.particle:nth-child(3) { left: 25%; top: 60%; animation-delay: 4s; }
.particle:nth-child(4) { right: 15%; top: 30%; animation-delay: 1s; }
.particle:nth-child(5) { left: 60%; bottom: 30%; animation-delay: 3s; }
.particle:nth-child(6) { right: 30%; bottom: 20%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { 
    transform: translateY(0) translateX(0); 
    opacity: 0.4;
  }
  25% { 
    transform: translateY(-30px) translateX(20px); 
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-60px) translateX(-10px); 
    opacity: 1;
  }
  75% { 
    transform: translateY(-30px) translateX(-20px); 
    opacity: 0.6;
  }
}

/* === FORMAS GEOMÉTRICAS DECORATIVAS === */
.hero-contacto__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 1px solid rgba(163, 126, 73, 0.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.shape--2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  animation-direction: reverse;
  animation-duration: 25s;
}

.shape--3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation-duration: 35s;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* === CONTENIDO PRINCIPAL === */
.hero-contacto__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === ETIQUETA SUPERIOR === */
.hero-contacto__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(163, 126, 73, 0.1);
  border: 1px solid rgba(163, 126, 73, 0.3);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #C49A5A;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.tag-icon {
  color: #A37E49;
  font-size: 0.8rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

/* === TÍTULO === */
.hero-contacto__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-line {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #FAFAF8;
  letter-spacing: 1px;
}

.title-line--gold {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  background: linear-gradient(135deg, #A37E49 0%, #C49A5A 50%, #A37E49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.title-line--gold::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #A37E49, transparent);
}

/* === SUBTÍTULO === */
.hero-contacto__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #D4C4A8;
  font-weight: 300;
  letter-spacing: 2px;
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* === DIVISOR === */
.hero-contacto__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.divider-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #A37E49, transparent);
}

.divider-dot {
  width: 6px;
  height: 6px;
  background: #A37E49;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(163, 126, 73, 0.5);
}

/* === INFO RÁPIDA === */
.hero-contacto__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(163, 126, 73, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(163, 126, 73, 0.1);
  border-color: rgba(163, 126, 73, 0.4);
  transform: translateY(-5px);
}

.info-item svg {
  width: 20px;
  height: 20px;
  stroke: #A37E49;
  flex-shrink: 0;
}

.info-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #D4C4A8;
  font-weight: 500;
}

/* === CTA BUTTON - CORREGIDO === */
.hero-contacto__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
  color: #FAFAF8;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(163, 126, 73, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-contacto__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-contacto__cta:hover::before {
  left: 100%;
}

.hero-contacto__cta:hover {
  background: linear-gradient(135deg, #C49A5A 0%, #A37E49 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(163, 126, 73, 0.5);
  color: #0D0D0D; /* CAMBIADO: texto oscuro en hover */
}

.hero-contacto__cta span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.hero-contacto__cta svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
  position: relative;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ========================================
   SECCIÓN FORMULARIO DE CONTACTO
======================================== */

.contacto-section {
  position: relative;
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: 8rem 0;
  overflow: hidden;
}

.contacto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #A37E49, transparent);
}

/* Decoración de fondo */
.contacto-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(163, 126, 73, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* === HEADER DE LA SECCIÓN === */
.contacto-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(163, 126, 73, 0.1);
  border: 1px solid rgba(163, 126, 73, 0.3);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #C49A5A;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.tag-icon {
  font-size: 1rem;
  color: #A37E49;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #A37E49 0%, #C49A5A 50%, #A37E49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #D4C4A8;
  line-height: 1.8;
}

/* === GRID PRINCIPAL === */
.contacto-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ========================================
   COLUMNA FORMULARIO
======================================== */

.contacto-grid__form {
  position: relative;
}

.form-wrapper {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(163, 126, 73, 0.2);
  position: relative;
  overflow: hidden;
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A37E49, #C49A5A, #A37E49);
}

/* === FORM GROUPS === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* === LABELS === */
.form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FAFAF8;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.required {
  color: #C49A5A;
  font-weight: 700;
}

/* === INPUT WRAPPERS === */
.input-wrapper,
.select-wrapper,
.textarea-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  width: 20px;
  height: 20px;
  stroke: #A37E49;
  stroke-width: 2;
  pointer-events: none;
  z-index: 1;
  transition: stroke 0.2s ease, transform 0.2s ease;
}

/* === INPUTS === */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 0.95rem 1rem 0.95rem 3rem;
  background: rgba(13, 13, 13, 0.6);
  border: 2px solid rgba(163, 126, 73, 0.2);
  border-radius: 8px;
  color: #FAFAF8;
  transition: all 0.2s ease;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(212, 196, 168, 0.5);
  font-weight: 400;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(13, 13, 13, 0.8);
  border-color: #A37E49;
  box-shadow: 0 0 0 3px rgba(163, 126, 73, 0.15);
}

.contact-form input:focus ~ .input-icon,
.input-wrapper:focus-within .input-icon,
.select-wrapper:focus-within .input-icon,
.textarea-wrapper:focus-within .input-icon {
  stroke: #C49A5A;
  transform: scale(1.1);
}

/* === SELECT === */
.select-wrapper {
  position: relative;
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 3rem;
  color: #FAFAF8;
}

.contact-form select option {
  color: #FAFAF8;
  background: #1A1A1A;
}

.select-arrow {
  position: absolute;
  right: 1rem;
  width: 20px;
  height: 20px;
  fill: #A37E49;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.select-wrapper:focus-within .select-arrow {
  transform: rotate(180deg);
}

/* === TEXTAREA === */
.textarea-wrapper {
  position: relative;
  align-items: flex-start;
}

.textarea-wrapper .input-icon {
  top: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 280px;
  line-height: 1.6;
  padding-top: 1rem;
}

.char-count {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(212, 196, 168, 0.6);
  pointer-events: none;
  background: rgba(13, 13, 13, 0.8);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* === CHECKBOX === */
.form-group--checkbox {
  margin-top: 0.25rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(13, 13, 13, 0.6);
  border: 2px solid rgba(163, 126, 73, 0.3);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #FAFAF8;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked ~ .checkbox-custom {
  background: linear-gradient(135deg, #A37E49, #977B49);
  border-color: #A37E49;
}

.checkbox-wrapper input[type="checkbox"]:checked ~ .checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.checkbox-wrapper:hover .checkbox-custom {
  border-color: #A37E49;
}

.checkbox-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #D4C4A8;
  line-height: 1.5;
}

.checkbox-label a {
  color: #C49A5A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.checkbox-label a:hover {
  color: #A37E49;
  text-decoration: underline;
}

/* === ERROR MESSAGES === */
.error-message {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #ff6b6b;
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.error-message::before {
  content: '⚠';
  font-size: 1rem;
}

.error-message.show {
  display: flex;
  animation: errorSlide 0.2s ease;
}

@keyframes errorSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.form-group.has-error .input-icon {
  stroke: #ff6b6b;
}

/* === BOTÓN SUBMIT === */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.15rem 2rem;
  background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
  color: #FAFAF8;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(163, 126, 73, 0.3);
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #C49A5A 0%, #A37E49 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(163, 126, 73, 0.4);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
  transform: translateX(4px);
}

/* Loader del botón */
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
  display: none;
}

.btn-submit.loading .btn-loader {
  display: block;
}

.btn-submit:disabled {
  background: linear-gradient(135deg, #4A4A4A 0%, #333 100%);
  cursor: not-allowed;
  opacity: 0.6;
}

/* === MENSAJE DE RESPUESTA - MEJORADO === */
.form-message {
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.form-message.show {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: slideDownBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDownBounce {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  50% {
    transform: translateY(5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-message::before {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

/* SUCCESS - VERSIÓN ALTERNATIVA CON FONDO OSCURO */
.form-message.success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(67, 160, 71, 0.85) 100%);
  color: #FFFFFF;
  border: 3px solid #66bb6a;
  box-shadow: 
    0 8px 30px rgba(76, 175, 80, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-message.success::before {
  content: '✅';
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ERROR - MÁS VISIBLE */
.form-message.error {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.25) 0%, rgba(244, 67, 54, 0.15) 100%);
  color: #b71c1c;
  border: 3px solid #f44336;
  box-shadow: 
    0 8px 30px rgba(244, 67, 54, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-message.error::before {
  content: '❌';
}

/* WARNING - MÁS VISIBLE */
.form-message.warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.25) 0%, rgba(255, 193, 7, 0.15) 100%);
  color: #e65100;
  border: 3px solid #ffc107;
  box-shadow: 
    0 8px 30px rgba(255, 193, 7, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-message.warning::before {
  content: '⚠️';
}

/* === AVISO DE RATE LIMIT === */
.form-notice {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.6);
  text-align: center;
  margin-top: -0.5rem;
  display: none;
}

.form-notice.show {
  display: block;
}

.form-notice.warning {
  color: #ffd54f;
  font-weight: 500;
}

/* ========================================
   COLUMNA INFO DE CONTACTO
======================================== */

.contacto-grid__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}

/* === INFO CARDS === */
.info-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(163, 126, 73, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: rgba(163, 126, 73, 0.4);
  background: rgba(26, 26, 26, 0.95);
}

.info-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(163, 126, 73, 0.3);
}

.info-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: #FAFAF8;
  stroke-width: 2;
}

.info-card__content {
  flex: 1;
}

.info-card__content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FAFAF8;
  margin-bottom: 0.5rem;
}

.info-card__content p,
.info-card__content a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #D4C4A8;
  line-height: 1.6;
  margin: 0.25rem 0;
}

.info-card__content a {
  color: #C49A5A;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card__content a:hover {
  color: #A37E49;
}

.info-card__description {
  font-size: 0.85rem !important;
  color: rgba(212, 196, 168, 0.7) !important;
  font-style: italic;
}

/* === SOCIAL CARD === */
.social-card {
  padding: 1.75rem;
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(163, 126, 73, 0.2);
}

.social-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #C49A5A;
  margin-bottom: 1.25rem;
}

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

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(163, 126, 73, 0.1);
  border: 2px solid rgba(163, 126, 73, 0.3);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  background: linear-gradient(135deg, #A37E49, #977B49);
  border-color: #A37E49;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(163, 126, 73, 0.4);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: #C49A5A;
  transition: fill 0.2s ease;
}

.social-link:hover svg {
  fill: #FAFAF8;
}

