@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');
:root {
    --primary: #111112;
    --secondary: #d64411;
    --text: #fff;
    --navbar-bg: #18181a;
    --footer-bg: #18181a;
    --section-bg: #151516;
    --card-bg: rgba(19,19,19,0.215);
    --divider: #d6441122;
    --accent: #fff1ed;
    --border-radius: 18px;
    --shadow: 0 8px 32px rgba(27,11,12,0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--primary);
    color: var(--text);
    font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #232323 #111112;
}
body::-webkit-scrollbar {
    width: 10px;
    background: #111112;
}
body::-webkit-scrollbar-thumb {
    background: #232323;
    border-radius: 8px;
    border: 2px solid #111112;
}
body::-webkit-scrollbar-thumb:hover {
    background: #333;
}
.navbar {
    width: 100vw; height: 64px; background: var(--navbar-bg);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 1.5px solid var(--divider); box-shadow: 0 2px 12px #0002;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.navbar-logo { font-family: 'Montserrat',sans-serif; font-size: 2rem; font-weight: 900; color: var(--secondary); letter-spacing: 1px; user-select: none; }
.navbar-links { display: flex; gap: 2rem; }
.navbar-link { color: #fff; text-decoration: none; font-family: 'Montserrat',sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; transition: color 0.2s; position: relative; padding: 4px 0; }
.navbar-link::after { content: ''; display: block; width: 0; height: 2px; background: var(--secondary); transition: width 0.2s; border-radius: 2px; margin-top: 2px; }
.navbar-link:hover { color: var(--secondary); }
.navbar-link:hover::after { width: 100%; }
.navbar-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; cursor: pointer; z-index: 200; margin-left: 30px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1.5px solid var(--divider); box-shadow: 0 2px 8px #0003; transition: background 0.2s, box-shadow 0.2s; }
.navbar-hamburger span { display: block; width: 26px; height: 3.5px; margin: 4px 0; background: var(--secondary); border-radius: 2px; transition: 0.3s; }
.navbar-mobile-menu { display: none; position: fixed; top: 55px; right: 0; left: auto; width: 70vw; max-width: 320px; background: var(--primary); box-shadow: -2px 0 16px #0005; border-left: 1.5px solid var(--divider); z-index: 150; flex-direction: column; padding: 2rem 1.5rem; gap: 2rem; animation: fadeIn 0.3s; visibility: hidden; opacity: 0; pointer-events: none; align-items: flex-end; transition: opacity 0.2s, visibility 0.2s; }
.navbar-mobile-menu.open { display: flex; visibility: visible; opacity: 1; pointer-events: auto; }
.navbar-mobile-link { color: #fff; text-decoration: none; font-family: 'Montserrat',sans-serif; font-size: 1.3rem; font-weight: 700; letter-spacing: 0.5px; transition: color 0.2s; margin-bottom: 1.2rem; text-align: right; width: 100%; padding-right: 12px; }
.navbar-mobile-link:hover { color: var(--secondary); }
.hero { width: 100vw; min-height: 100vh; background: var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-top: 64px; position: relative; overflow: hidden; }
.hero-content { z-index: 2; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; padding: 2rem 1rem 3rem 1rem; text-align: center; animation: fadeIn 1.2s; }
.hero h1 { font-size: 2.7rem; font-family: 'Montserrat',sans-serif; font-weight: 900; color: var(--secondary); margin-bottom: 0.7rem; letter-spacing: 2px; text-shadow: 0 2px 12px #0008; animation: fadeInDown 1.2s; }
.hero p { font-size: 1.2rem; color: #fff; opacity: 0.85; font-weight: 500; margin-bottom: 2.2rem; animation: fadeIn 1.5s; }
.hero-btns { display: flex; gap: 1.2rem; margin-top: 1.5rem; animation: fadeIn 2s; justify-content: center; }
.hero-btn { padding: 1rem 2.2rem; border: none; border-radius: 30px; font-size: 1.1rem; font-family: 'Montserrat',sans-serif; font-weight: 700; color: #fff; background: var(--secondary); cursor: pointer; transition: background 0.3s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(214,68,17,0.15); text-decoration: none; outline: none; letter-spacing: 1px; }
.hero-btn:hover { background: #b3360d; transform: translateY(-3px) scale(1.04); }
.hero-bg-anim { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero-bg-anim span { position: absolute; border-radius: 50%; opacity: 0.13; animation: floatBg 7s infinite alternate cubic-bezier(.68,-0.55,.27,1.55); }
.hero-bg-anim .circle1 { width: 220px; height: 220px; background: var(--secondary); left: 5vw; top: 10vh; animation-delay: 0s; }
.hero-bg-anim .circle2 { width: 120px; height: 120px; background: #fff; right: 8vw; top: 60vh; opacity: 0.07; animation-delay: 2s; }
.hero-bg-anim .circle3 { width: 80px; height: 80px; background: var(--secondary); left: 60vw; top: 70vh; opacity: 0.09; animation-delay: 1.5s; }
.hero-bg-anim .circle4 { width: 60px; height: 60px; background: #fff; left: 80vw; top: 20vh; opacity: 0.06; animation-delay: 3s; }
@keyframes floatBg { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-30px) scale(1.08); } }
section { width: 100vw; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0; box-sizing: border-box; position: relative; scroll-snap-align: start; text-align: center; overflow: hidden; background: var(--section-bg); }
.section-content { background: var(--card-bg); border-radius: var(--border-radius); box-shadow: 0 8px 32px 0 rgba(214,68,17,0.07), 0 2px 16px rgba(27,11,12,0.13); width: 90vw; max-width: 1100px; min-width: 260px; min-height: 180px; padding: 2.2rem 2.2rem 1.5rem 2.2rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1.5px solid var(--divider); border-bottom: 2.5px solid #7a2105; box-shadow: 0 0 0 0 rgba(122,33,5,0.10), 0 8px 32px 0 rgba(214,68,17,0.07), 0 2px 16px rgba(27,11,12,0.13); position: relative; overflow: hidden; opacity: 0; transform: translateY(40px) scale(0.98); animation: sectionFadeIn 1.1s cubic-bezier(.68,-0.55,.27,1.55) forwards; }
@keyframes sectionFadeIn { 0% { opacity: 0; box-shadow: 0 0 0 0 rgba(122,33,5,0.10), 0 8px 32px 0 rgba(214,68,17,0.07), 0 2px 16px rgba(27,11,12,0.13); transform: translateY(40px) scale(0.98); } 60% { opacity: 1; box-shadow: 0 0 12px 0 rgba(122,33,5,0.13), 0 8px 32px 0 rgba(214,68,17,0.07), 0 2px 16px rgba(27,11,12,0.13); transform: translateY(-8px) scale(1.03); } 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(122,33,5,0.10), 0 8px 32px 0 rgba(214,68,17,0.07), 0 2px 16px rgba(27,11,12,0.13); transform: translateY(0) scale(1); } }
.section-content::before { content: ''; position: absolute; left: -40px; top: -40px; width: 120px; height: 120px; background: var(--secondary); opacity: 0.08; border-radius: 50%; z-index: 0; animation: floatBg 8s infinite alternate-reverse; }
.section-content::after { content: ''; position: absolute; right: -30px; bottom: -30px; width: 80px; height: 80px; background: #fff; opacity: 0.04; border-radius: 50%; z-index: 0; animation: floatBg 10s infinite alternate; }
.section-title { font-family: 'Montserrat',sans-serif; color: var(--secondary); font-size: 1.7rem; font-weight: 800; margin-bottom: 1.1rem; letter-spacing: 1px; text-align: center; text-shadow: 0 2px 8px #0003; animation: fadeInDown 1.2s; }
.section-desc { font-family: 'Roboto',sans-serif; font-size: 1.1rem; color: #fff; opacity: 0.9; margin-bottom: 1.2rem; text-align: center; max-width: 500px; animation: fadeIn 1.5s; }
.servicios-list { list-style: none; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; width: 100%; margin-bottom: 1.5rem; margin-top: 1.2rem; }
.servicio-card { background: var(--accent); color: var(--primary); padding: 1.5rem 2.8rem; border-radius: 18px; font-weight: 700; font-size: 1.25rem; box-shadow: 0 2px 12px rgba(214,68,17,0.10); border: 1.5px solid #fff3; min-width: 260px; max-width: 340px; flex: 1 1 320px; display: flex; flex-direction: column; align-items: center; transition: transform 0.2s, box-shadow 0.2s; animation: floatIn 1.2s cubic-bezier(.68,-0.55,.27,1.55); margin-bottom: 0.5rem; text-align: center; margin-left: auto; margin-right: auto; }
.servicio-card:hover { transform: scale(1.04); background: #ffe2d7; box-shadow: 0 8px 32px rgba(214,68,17,0.13); }
.servicio-nombre { font-family: 'Montserrat',sans-serif; font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--secondary); }
.servicio-desc { font-family: 'Roboto',sans-serif; font-size: 1rem; font-weight: 400; color: var(--primary); margin-bottom: 0.5rem; }
.servicio-precio { font-size: 1.05rem; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; }
.servicio-lugares { font-size: 1.05rem; color: #7a3a2a; font-weight: 600; margin-top: 0.2rem; margin-bottom: 0.2rem; }
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; justify-items: center; width: 100%; margin-bottom: 2rem; animation: floatIn 1.5s cubic-bezier(.68,-0.55,.27,1.55); }
.galeria-grid img {
  width: 100%;
  max-width: 420px;
  min-width: 220px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(27,11,12,0.18);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
        object-fit: fill;
  object-position: center;
  aspect-ratio: 4/3;
  height: 100%;
  display: block;
  background: #fff;
  cursor: pointer;
  border: 1.5px solid var(--divider);
  filter: drop-shadow(0 2px 8px #0002);
}
.galeria-grid img:hover { transform: scale(1.04) rotate(-1deg); box-shadow: 0 8px 32px rgba(214,68,17,0.18); border-color: var(--secondary); filter: drop-shadow(0 8px 24px #d6441140); }
.floating-btns { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 16px; z-index: 1000; }
.floating-btn { width: 54px; height: 54px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(214,68,17,0.18); transition: background 0.2s, transform 0.2s; cursor: pointer; border: none; outline: none; text-decoration: none; }
.floating-btn:hover { background: #b3360d; transform: scale(1.08); }
.floating-btn svg { width: 28px; height: 28px; fill: #fff; display: block; }
.footer { width: 100vw; background: var(--footer-bg); color: #fff; text-align: center; padding: 2rem 1rem 1rem 1rem; font-size: 1.1rem; opacity: 0.8; border-top: 2px solid var(--divider); margin-top: 0; animation: fadeIn 2s; }
@media (max-width: 900px) {
    .navbar { padding: 0 1rem; }
    .section-content { max-width: 98vw; min-width: 0; width: 96vw; padding: 1.5rem 0.7rem 1.2rem 0.7rem; }
    .galeria-grid img { max-width: 98vw; min-width: 120px;         object-fit: fill; }
    .galeria-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .servicios-list { flex-direction: column; align-items: center; gap: 1.2rem; }
}
@media (max-width: 700px) {
    .navbar-links { gap: 1rem; }
    .hero h1 { font-size: 1.5rem; }
    .section-title { font-size: 1.1rem; }
    .section-content { max-width: 99vw; min-width: 0; width: 99vw; padding: 1.1rem 5vw 1rem 5vw; }
    .galeria-grid img { max-width: 98vw; min-width: 120px; }
    .galeria-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .servicios-list { flex-direction: column; align-items: center; gap: 1.2rem; }
    .servicio-card {
        object-fit: fill;
        min-width: 140px;
        max-width: 99vw;
        min-height: 100px;
        max-height: 150px;
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .hero p, .servicio-desc, .servicio-precio, .servicio-lugares, .footer { font-size: 0.98rem; }
    .navbar-mobile-menu { top: 55px; }
}
@media (max-width: 600px) {
    .navbar { height: 54px; padding: 0 0.5rem; }
    .navbar-logo { font-size: 1.1rem; }
    .navbar-links { display: none; }
    .navbar-hamburger { display: flex; margin-left: auto; }
    .section-content { max-width: 99vw; min-width: 0; width: 99vw; padding: 1rem 5vw 0.8rem 5vw; }
    .galeria-grid img { max-width: 98vw; min-width: 120px; }
    .galeria-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .servicios-list { flex-direction: column; align-items: center; gap: 1.2rem; }
    .servicio-card {
        min-width: 120px;
                object-fit: fill;
        max-width: 99vw;
        font-size: 0.98rem;
        padding: 0.5rem 0.7rem;
    }
}
@media (max-width: 1100px) and (min-width: 701px) {
    .navbar { padding: 0 1.2rem; height: 60px; }
    .navbar-logo { font-size: 1.5rem; }
    .navbar-links { gap: 1.5rem; font-size: 1.15rem; }
    .section-content { max-width: 98vw; min-width: 0; width: 98vw; padding: 2.5rem 4vw 2.2rem 4vw; font-size: 1.18rem; }
    .section-title { font-size: 2rem; }
    .galeria-grid { gap: 1.5rem; }
    .servicio-card { min-width: 200px; max-width: 340px; font-size: 1.18rem;         object-fit: fill;}
    .footer { font-size: 1.1rem; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatIn { 0% { opacity: 0; transform: translateY(60px) scale(0.98); } 60% { opacity: 1; transform: translateY(-8px) scale(1.03); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
