
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #f5f5f5;
    background-color: #050608;
    line-height: 1.6;
}

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

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

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 0.72rem;
    opacity: 0.7;
}

.main-nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.main-nav a {
    position: relative;
    padding-bottom: 0.15rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e2b36c, #f5f5f5);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.18rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #f5f5f5;
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(226,179,108,0.05), transparent 50%), 
                radial-gradient(circle at 100% 100%, rgba(28,116,91,0.2), transparent 55%),
                linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.9));
}

.hero-content {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.hero-text {
    max-width: 540px;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero-subnote {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.primary-btn {
    background: linear-gradient(135deg, #e2b36c, #f9e3b4);
    color: #1b1206;
    box-shadow: 0 10px 22px rgba(0,0,0,0.4);
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.5);
}

.secondary-btn {
    background: rgba(3, 94, 58, 0.4);
    border-color: rgba(229, 229, 229, 0.35);
}

.secondary-btn:hover {
    background: rgba(3, 94, 58, 0.7);
}

.ghost-btn {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.ghost-btn:hover {
    background: rgba(255,255,255,0.08);
}

.full-width {
    width: 100%;
}

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: radial-gradient(circle at top, rgba(226,179,108,0.03), transparent 55%);
}

.section-accent {
    background: linear-gradient(160deg, #06110d, #050608);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 0.98rem;
    opacity: 0.85;
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: start;
}

.card {
    background: radial-gradient(circle at 0 0, rgba(226,179,108,0.12), transparent 55%), rgba(7, 13, 11, 0.96);
    border-radius: 1.15rem;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 1.6rem;
    box-shadow: 0 18px 32px rgba(0,0,0,0.45);
}

.highlights-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.96rem;
}

.check-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.5rem;
    color: #e2b36c;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

.icon-list i {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,179,108,0.12);
    color: #f5f5f5;
}

.social-block p {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    font-size: 1.25rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
}

.social-links a:hover {
    background: rgba(255,255,255,0.18);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.experience-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-img {
    width: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.3rem 1.4rem 1.25rem;
}

.card-body h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.card-body p {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
}

.price-tag {
    font-weight: 700;
    color: #f4d08d;
}

.small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.05rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: saturate(1.05);
}

.gallery-item::after {
    content: "Ver foto";
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
    padding: 1.5rem;
}

.lightbox-content {
    position: relative;
    max-width: 940px;
    width: 100%;
}

.lightbox-img {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.06);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.social-embeds {
    display: grid;
    gap: 1.5rem;
}

.embed-card {
    background: radial-gradient(circle at top, rgba(226,179,108,0.1), transparent 55%), rgba(6,10,9,0.96);
    border-radius: 1.1rem;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.25rem 1.4rem;
}

.embed-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.02rem;
}

.embed-frame {
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.contact-list i {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(226,179,108,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: rgba(0,0,0,0.35);
    border-radius: 1.1rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 32px rgba(0,0,0,0.45);
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    opacity: 0.85;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.55);
    color: #f5f5f5;
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e2b36c;
    box-shadow: 0 0 0 1px rgba(226,179,108,0.3);
}

.form-note {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    opacity: 0.85;
}

.map-container {
    margin-top: 2.75rem;
}

.map-container h3 {
    margin-bottom: 0.35rem;
}

.map-container p {
    font-size: 0.9rem;
    max-width: 640px;
}

.main-footer {
    padding: 1.8rem 0 2rem;
    background: #030405;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

.footer-content {
    text-align: center;
    opacity: 0.9;
}

.footer-content a {
    color: #e2b36c;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.1rem;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 18px 35px rgba(0,0,0,0.6);
    z-index: 60;
}

.whatsapp-float:hover {
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(3, 6, 6, 0.96);
        padding: 0.7rem 1.2rem 1rem;
        border-radius: 0 0 0 1.1rem;
        min-width: 180px;
        border-left: 1px solid rgba(255,255,255,0.06);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        transform-origin: top right;
        transform: scaleY(0.9);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-top: 5.3rem;
    }
}

@media (max-width: 560px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .logo-title {
        font-size: 0.9rem;
    }

    .logo-subtitle {
        display: none;
    }

    .cards-grid {
        gap: 1.2rem;
    }
}
