
.experience-grid .experience-card .card-image {
 /* ... otros estilos ... */
 min-height: 250px; /* Ajusta este valor a la altura que definiste para .card-image4 */
 overflow: hidden; /* Asegúrate de que el contenido que exceda no se muestre */
}

.experience-grid .experience-card .card-image img {
 width: 100%;
 height: 100%;
 object-fit: cover; /* O contain, según prefieras */
 display: block;
}/* Estilos para el contenedor específico de la imagen del sándwich */
.experience-grid .experience-card .card-image4 {
  /* Puedes ajustar el ancho o la altura según el diseño deseado para esta tarjeta */
  width: 100%; /* Asegura que ocupe todo el ancho disponible en su columna de la cuadrícula */
  height: 250px; /* Una altura fija que consideres adecuada para esta imagen, ajústala si es necesario */
  overflow: hidden; /* Importante para recortar cualquier parte sobrante si usas 'cover' */
  position: relative; /* Necesario para el overlay */
}

/* Estilos para la imagen dentro de ese contenedor específico */
.experience-grid .experience-card .card-image4 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* **Esto es clave para que la imagen llene el espacio sin distorsionarse y se vea "completa" aunque se recorte un poco.** Si quieres que toda la imagen sea visible sin importar espacios en blanco, usa 'contain'. */
  display: block; /* Elimina el espacio extra que los navegadores añaden debajo de las imágenes */
}

/* Estilos para el overlay dentro de ese contenedor específico */
.experience-grid .experience-card .card-image4 .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Ejemplo de un color de overlay */
  /* Añade aquí cualquier otro estilo para tu overlay, como transiciones para efectos hover */
}

/* Opcional: Si tus .card-image generales tienen otros estilos y quieres que .card-image4 los herede o los sobrescriba parcialmente */
/* Por ejemplo, si tus card-image tienen un border-radius, también querrías que card-image4 lo tuviera */
.experience-grid .experience-card .card-image4 {
  border-radius: 8px; /* O el mismo border-radius que tus otros .card-image */
  /* ... otros estilos comunes si aplican ... */
}
/* Reset y Tipografía */
:root {
  --gold: #c8a97e;
--gold-dark: #b8986a;
    --gold-light: rgba(200, 169, 126, 0.15);
    --gold-medium: rgba(200, 169, 126, 0.3);

    --text-dark: #2a2a2a;
  --text-medium: #555555;
    --text-light: #f8f8f8;
  --bg-light: #ffffff;
  --bg-light-accent: #f9f9f9;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
   font-family: 'Lora', 'Playfair Display', serif;
  color: var(--vino-profundo);
  background-color: var(--crema-calida);
  line-height: 1.7;
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-family: 'Handlee', cursive;
  color: var(--text-medium);
}

.text-gold {
  color: var(--gold);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  background-color: #faf8f8; /* Negro sofisticado */
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(200, 169, 126, 0.2); /* Línea dorada sutil */
}
.navbar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar .logo:hover {
    background: rgba(255,255,255,0.9) !important;
}

.navbar .logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Berkshire Swash', cursive;
    font-size: 1.5rem;
    margin-left: 10px;
}

.logo-subtext {
    display: block;
    font-family: 'Handlee', cursive;
    font-size: 0.8rem;
}

/* Cuando el navbar tiene scroll */
.navbar.scrolled .logo {
     padding: 8px 0;
  background-color: rgba(26, 26, 26, 0.98); /* Negro sólido */
  backdrop-filter: blur(5px); /* Efecto vidrio esmerilado */
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Contenedor del logo mejorado */
.logo {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
x   

.logo img {
  height: 60px;
  transition: var(--transition);
}

.logo-text {
  font-family: 'Berkshire Swash', cursive;
  font-size: 1.8rem;
  margin-left: 10px;
  color: var(--text-dark);
}

.logo-subtext {
  display: block;
  font-family: 'Handlee', cursive;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-btn {
  background-color: var(--gold);
  color: white !important;
  padding: 8px 20px;
  border-radius: 30px;
  transition: var(--transition);
}

.nav-btn:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
}

.nav-btn:after {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
/* Hero Section Rediseñada */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #111;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* Efecto de contraste mejorado */
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Degradado más profesional */
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.5) 60%, 
        rgba(0, 0, 0, 0.7) 100%
    );
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    padding: 0 20px;
    opacity: 0; /* Inicialmente oculto para animación */
    transform: translateY(30px);
    animation: fadeInUp 1s 0.5s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.text-gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--gold);
    color: white;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.arrow-down {
    width: 15px;
    height: 15px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: 5px auto 0;
    animation: bounce 2s infinite;
}

/* Animaciones */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-5px);
    }
    60% {
        transform: rotate(45deg) translateY(-3px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
/* Secciones comunes */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Sección Nuestra Historia */
.about-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-light-accent);
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Estilos para la imagen */
.about-image {
    position: relative;
    perspective: 1000px;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
    transform: scale(1.05);
    will-change: transform;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(200,169,126,0.05) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.gold-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="20" cy="20" r="1" fill="%23c8a97e" opacity="0.6"/><circle cx="50" cy="30" r="1" fill="%23c8a97e" opacity="0.4"/><circle cx="80" cy="20" r="1.5" fill="%23c8a97e" opacity="0.7"/><circle cx="30" cy="70" r="1" fill="%23c8a97e" opacity="0.5"/><circle cx="70" cy="80" r="1" fill="%23c8a97e" opacity="0.3"/><circle cx="90" cy="60" r="1.5" fill="%23c8a97e" opacity="0.8"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

/* Estilos para el contenido */
.about-content {
    position: relative;
}

.title-animate {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.title-animate::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: var(--transition-slow);
}

.about-content:hover .title-animate::after {
    width: 100%;
}

.text-reveal {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.text-reveal p {
    font-size: 1.1rem;
    line-height: 1.8;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition-slow);
}

/* Highlight box mejorado */
.highlight-box {
    position: relative;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--gold);
    overflow: hidden;
    transition: var(--transition-fast);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-slow);
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.highlight-box:hover::before {
    opacity: 1;
}

.gold-reveal {
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    transform: translateX(-20px);
    opacity: 0;
    transition: var(--transition-slow);
}

.highlight-content {
    position: relative;
    z-index: 2;
}

/* Elemento decorativo flotante */
.floating-bread {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 80px;
    height: 80px;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.floating-bread img {
    width: 100%;
    height: auto;
    opacity: 0.7;
}

/* Decoración de sección */
.history-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    overflow: hidden;
}

.history-decoration svg {
    width: 100%;
    height: 100%;
}

/* Animaciones */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Efectos cuando la sección es visible */
.about-section.in-view .reveal-image {
    transform: scale(1);
}

.about-section.in-view .text-reveal p {
    transform: translateY(0);
    opacity: 1;
}

.about-section.in-view .gold-reveal {
    transform: translateX(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .floating-bread {
        right: 0;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .highlight-box {
        padding: 20px;
    }
}
/* Sección Cocina Rioplatense */
.cuisine-section {
  position: relative;
  background-color: var(--bg-light);
}

.cuisine-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.03);
}

.cuisine-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.cuisine-header {
  text-align: center;
  margin-bottom: 50px;
}

.cuisine-header h2 {
  font-size: 2.5rem;
}

.cuisine-header p {
  font-size: 1.2rem;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.cuisine-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cuisine-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cuisine-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.cuisine-content {
  padding: 25px;
}

.cuisine-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--gold-dark);
}

.cuisine-content p {
  font-size: 1rem;
}

/* Sección Experiencia Gastronómica */
.experience {
  background-color: var(--bg-light-accent);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.experience-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.card-image1 {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card-image1 video {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.experience-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-content p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.card-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.2rem;
}

/* Sección Ubicación */
.location-section {
  background-color: var(--bg-light);
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.location-header {
  text-align: center;
  margin-bottom: 50px;
}

.location-header h2 {
  font-size: 2.5rem;
}

.location-header p {
  font-size: 1.2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--gold-dark);
}

.location-info p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.location-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.location-item p, .location-item a {
  color: var(--text-medium);
  text-decoration: none;
  transition: var(--transition);
}

.location-item a:hover {
  color: var(--gold);
}

/* Sección Contacto */
.contact-section {
  position: relative;
  background-color: var(--bg-light-accent);
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.03);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--gold-dark);
}

.contact-text p, .contact-text a {
  color: var(--text-medium);
  text-decoration: none;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--gold);
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Handlee', cursive;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--gold);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 80px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--gold);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.footer-col p {
  color: #bbb;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #999;
}

/* Efectos y animaciones */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .logo img {
  height: 50px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-light);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  section {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}