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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #123047;
    background-color: #f5fbff;
    line-height: 1.6;
}

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

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-block img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo-text h1 {
    font-size: 1.1rem;
    font-weight: 700;
}

.logo-text p {
    font-size: 0.8rem;
    color: #4b6479;
}

.main-nav {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

.main-nav a {
    padding: 6px 8px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    background: #0f9bd7;
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* Hero */
.hero {
    position: relative;
    color: #fff;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(3, 40, 79, 0.86), rgba(0, 144, 190, 0.78));
}

.hero-content {
    position: relative;
    padding: 80px 16px 60px;
    max-width: 640px;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
    background: #ffd15c;
    color: #123047;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.35);
}

.btn.secondary {
    background: rgba(18, 48, 71, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn.secondary:hover {
    background: rgba(3, 19, 35, 0.7);
}

.btn.outline {
    border: 1px solid #0f9bd7;
    color: #0f9bd7;
    background: #fff;
}

.btn.outline:hover {
    background: #0f9bd7;
    color: #fff;
}

.btn.small {
    padding: 8px 14px;
    font-size: 0.8rem;
}

.btn.full {
    width: 100%;
}

.section {
    padding: 60px 0;
}

.section.alt {
    background: #e9f6ff;
}

.section-title {
    text-align: center;
    margin-bottom: 32px;
}

.section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.section-title p {
    color: #4b6479;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(15, 155, 215, 0.08);
    border: 1px solid rgba(15, 155, 215, 0.12);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.card p {
    font-size: 0.95rem;
    color: #4b6479;
}

.highlight {
    margin-top: 30px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 155, 215, 0.08), rgba(255, 209, 92, 0.18));
    border: 1px dashed rgba(15, 155, 215, 0.4);
    text-align: center;
}

.highlight h3 {
    margin-bottom: 5px;
}

.highlight p {
    font-size: 0.95rem;
    color: #2b4761;
}

.traslados-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
}

.traslados-text p {
    color: #364d63;
    margin-bottom: 10px;
}

.icon-list {
    list-style: none;
    margin: 12px 0 16px;
}

.icon-list li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.note {
    font-size: 0.85rem;
    color: #4b6479;
}

.traslados-main-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    margin-bottom: 10px;
}

.traslados-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.traslados-thumbs img {
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: center;
}

.image-frame {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.gallery-item::after {
    content: "Ampliar";
    position: absolute;
    inset: auto 10px 10px auto;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -32px;
    right: 0;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* Video */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

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

/* Facebook */
.fb-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    background: #fff;
}

/* Contact */
.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 155, 215, 0.12);
    border: 1px solid rgba(15, 155, 215, 0.18);
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #365068;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #c3d8e6;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f9bd7;
    box-shadow: 0 0 0 2px rgba(15, 155, 215, 0.15);
}

.main-footer {
    background: #082031;
    color: #c5d5e5;
    padding: 18px 0;
    margin-top: 30px;
    font-size: 0.85rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

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

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    z-index: 1500;
}

.wa-icon {
    font-size: 1.6rem;
}

/* Utilities */
.cta-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

    .traslados-layout,
    .two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background: #ffffff;
        padding: 10px 16px 14px;
        border-radius: 0 0 0 16px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .header-content {
        padding: 8px 0;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .grid-3,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}
