@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caveat";
    src: url("../fonts/Caveat,Inter/Caveat/static/Caveat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caveat";
    src: url("../fonts/Caveat,Inter/Caveat/static/Caveat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f6f1e7;
    --bg-soft: #fbf8f2;
    
    --paper: #fffdf8;
    --paper-2: #fffaf1;
    --text: #17324f;
    --text-soft: #4f6781;
    --line: rgba(23, 50, 79, 0.12);
    --line-strong: rgba(23, 50, 79, 0.22);

    --blue-900: #12385d;
    --blue-800: #0f5fa8;
    --blue-700: #1a76c7;
    --blue-600: #2a8de0;
    --blue-100: #eaf5ff;

    --sand: #efe4d2;
    --sand-2: #e6d8c1;

    --orange: #ff9f43;
    --orange-2: #ffb15f;

    --green: #29b35f;
    --green-2: #35c96b;
    --green-3: #239a52;

    --shadow-sm: 0 6px 18px rgba(16, 47, 80, 0.08);
    --shadow-md: 0 18px 40px rgba(16, 47, 80, 0.14);
    --shadow-lg: 0 28px 70px rgba(16, 47, 80, 0.20);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --container: 1200px;
    --header-h: 84px;

    --section-space: 46px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
	background:
	    radial-gradient(circle at top right, rgba(42, 141, 224, 0.035), transparent 30%),
	    radial-gradient(circle at bottom left, rgba(255, 159, 67, 0.03), transparent 30%),
	    linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
    padding: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4,
figure {
    margin: 0;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section {
    padding: var(--section-space) 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-head p {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(18, 56, 93, 0.08);
    box-shadow: var(--shadow-sm);
    color: var(--blue-800);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

h1,
h2,
h3 {
    letter-spacing: -0.03em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.9rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
    box-shadow: var(--shadow-sm);
}

.btn.btn-whatsapp {
	flex-direction: row;
} 

.btn-whatsapp img {
	width: 20px;
	height: 20px;	
	display: inline;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-large {
    min-height: 60px;
    padding: 0 28px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-whatsapp {
    background: linear-gradient(180deg, var(--green-2) 0%, var(--green) 100%);
    color: #fff;
    box-shadow: 0 14px 26px rgba(41, 179, 95, 0.28);
}
.btn-whatsapp small {
	display: block;	
}

.btn-whatsapp:hover {
    background: linear-gradient(180deg, #3fd675 0%, #26af5a 100%);
    box-shadow: 0 18px 30px rgba(41, 179, 95, 0.34);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(18, 56, 93, 0.10);
    color: var(--blue-900);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: #fff;
    border-color: rgba(18, 56, 93, 0.18);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-h);
    background: rgba(255, 252, 247, 0.74);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(18, 56, 93, 0.08);
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--blue-900);
    flex-shrink: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
}

.brand-mark img {
    width: 64px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.1rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: color 0.18s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-600), var(--orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav a:hover {
    color: var(--blue-900);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 56, 93, 0.08);
    box-shadow: var(--shadow-sm);
}

.lang-btn {
    min-width: 42px;
    height: 38px;
    padding: 7px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
    text-align: center;
}
.lang-btn:hover {
	text-decoration: underline;
}

.lang-btn:hover {
    color: var(--blue-900);
}

.lang-btn.is-active {
    background: linear-gradient(180deg, var(--blue-700), var(--blue-800));
    color: #fff;
    box-shadow: 0 8px 16px rgba(15, 95, 168, 0.22);
}

.btn-header {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.93rem;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(18, 56, 93, 0.08);
    box-shadow: var(--shadow-sm);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-900);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.hero {
    position: relative;
    min-height: min(920px, calc(100svh - var(--header-h)));
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(16, 63, 108, 0.36), rgba(16, 63, 108, 0.22)),
        linear-gradient(180deg, #8fd0ff 0%, #4aa4e6 38%, #1480c8 100%);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 37, 63, 0.70) 0%, rgba(9, 37, 63, 0.52) 36%, rgba(9, 37, 63, 0.18) 62%, rgba(9, 37, 63, 0.04) 100%),
        linear-gradient(180deg, rgba(10, 49, 80, 0.18), rgba(10, 49, 80, 0.30));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: min(720px, calc(100svh - var(--header-h)));
    padding: 68px 0 90px;
}

.hero-copy {
    max-width: 760px;
    color: #fff;
}

.hero-copy .eyebrow {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.16);
    box-shadow: none;
}

.hero-copy h1 {
    margin-top: 22px;
    text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.hero-subtitle {
    max-width: 740px;
    margin-top: 18px;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.45;
    color: rgba(255,255,255,0.94);
    text-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.quick-facts {
    position: relative;
    z-index: 2;
    margin-top: -42px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.fact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 110px;
    padding: 22px 22px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(18, 56, 93, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.fact-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(42, 141, 224, 0.10), rgba(255, 159, 67, 0.12));
    border: 1px solid rgba(18, 56, 93, 0.06);
}

.fact-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.fact-card h2 {
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 700;
}

.experience {
    padding-top: 82px;
}

.polaroid-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 30px;
}

.polaroid {
    width: 260px;
    padding: 14px 14px 54px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.polaroid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.polaroid figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
    font-family: "Caveat", cursive;
    font-size: 26px;
    color: #17324f;
}

.polaroid-1 { transform: rotate(-5deg); }
.polaroid-2 { transform: rotate(4deg); }
.polaroid-3 { transform: rotate(-3deg); }
.polaroid-4 { transform: rotate(5deg); }

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.how-it-works {
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 18px 18px 22px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,241,0.94));
    border: 1px solid rgba(18, 56, 93, 0.08);
    box-shadow: var(--shadow-md);
}

.step-image {
    overflow: hidden;
    border-radius: 22px;
    margin-bottom: 18px;
}

.step-image img {
    width: 100%;
    aspect-ratio: 1.15 / 1;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--blue-700), var(--blue-800));
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 14px 26px rgba(15, 95, 168, 0.24);
}

.step-card p {
    margin-top: 10px;
    color: var(--text-soft);
}

.pricing {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px 30px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,249,239,0.94));
    border: 1px solid rgba(18, 56, 93, 0.08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--blue-700), var(--orange));
}

.price-card-featured {
    transform: scale(1.03);
    border-color: rgba(15, 95, 168, 0.16);
    box-shadow: 0 24px 60px rgba(16, 47, 80, 0.18);
}

.price-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--orange), var(--orange-2));
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 24px rgba(255, 159, 67, 0.24);
}

.price-card-top p {
    margin-top: 10px;
    color: var(--text-soft);
}

.price-value {
    margin-top: 28px;
}

.price-amount {
    display: inline-block;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--blue-900);
}

.price-features {
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
}

.price-features li {
    position: relative;
    padding-left: 28px;
    color: var(--text-soft);
}

.price-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green-2), var(--green));
    box-shadow: 0 6px 12px rgba(41, 179, 95, 0.18);
    transform: translateY(-50%);
}

.pickup-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.pickup-copy {
    padding: 12px 0;
}

.pickup-copy h2 {
    margin-top: 14px;
}

.pickup-copy p {
    margin-top: 16px;
    max-width: 620px;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.pickup-copy .btn {
    margin-top: 26px;
}

.pickup-media {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
    min-height: 100%;
}

.pickup-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 62, 109, 0.10), rgba(13, 62, 109, 0.02));
    pointer-events: none;
}

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

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 22px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(18, 56, 93, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    display: block;
    padding: 24px 64px 24px 24px;
    font-weight: 700;
    font-size: 1.04rem;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before,
.faq-item summary::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-900);
    transform: translateY(-50%);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-item summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.faq-item p {
    padding: 0 24px 24px;
    color: var(--text-soft);
}

.final-cta {
    padding-top: 24px;
}

.final-cta-box {
    position: relative;
    text-align: center;
    padding: 56px 28px;
    border-radius: 36px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 52%, #3ba4ef 100%);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.final-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
    pointer-events: none;
}

.final-cta-box .section-kicker {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.16);
    color: #fff;
    box-shadow: none;
}

.final-cta-box h2 {
    margin-top: 18px;
}

.final-cta-box p {
    max-width: 680px;
    margin: 18px auto 0;
    color: rgba(255,255,255,0.92);
    font-size: 1.08rem;
}

.final-cta-box .btn {
    margin-top: 28px;
}

.site-footer {
    padding: 44px 0 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 26px;
    padding-top: 28px;
    border-top: 1px solid rgba(18, 56, 93, 0.08);
}

.brand-footer .brand-mark {
    width: 48px;
    height: 48px;
}

.footer-brand p,
.footer-contact ul,
.footer-links ul {
    margin-top: 16px;
    color: var(--text-soft);
}

.footer-contact h3,
.footer-links h3 {
    font-size: 1.06rem;
}

.footer-contact ul,
.footer-links ul {
    display: grid;
    gap: 10px;
}

.footer-contact a,
.footer-links a {
    color: var(--text-soft);
    transition: color 0.16s ease;
    text-decoration: underline;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--blue-800);
}

@media (max-width: 1180px) {
    :root {
        --section-space: 82px;
    }

    .main-nav {
        gap: 18px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        min-height: 760px;
    }

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

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

    .pickup-layout {
        grid-template-columns: 1fr;
    }

    .pickup-media img {
        aspect-ratio: 1.7 / 1;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    :root {
        --header-h: 74px;
        --section-space: 74px;
    }


	.brand {
        flex: 1; 
        min-width: 0;
    }
    
    .brand-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    

    .header-inner {
        gap: 8px;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 252, 247, 0.96);
        border: 1px solid rgba(18, 56, 93, 0.08);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(12px);
    }
    

    .main-nav a {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .main-nav a::after {
        display: none;
    }
    

    body.nav-open .main-nav {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-actions .btn-header {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        min-height: 700px;
        padding: 54px 0 70px;
    }


    .hero-copy {
        width: 100%;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(9, 37, 63, 0.58) 0%, rgba(9, 37, 63, 0.44) 34%, rgba(9, 37, 63, 0.34) 100%);
    }

    .polaroid-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .polaroid,
    .polaroid-1,
    .polaroid-2,
    .polaroid-3,
    .polaroid-4,
    .polaroid-5 {
        grid-column: auto;
        margin-top: 0;
    }

    .polaroid-1 {
        transform: rotate(-3deg);
    }

    .polaroid-2 {
        transform: rotate(2deg);
    }

    .polaroid-3 {
        transform: rotate(-2deg);
    }

    .polaroid-4 {
        transform: rotate(3deg);
    }

    .polaroid-5 {
        transform: rotate(-2deg);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .price-card-featured {
        transform: none;
    }
}

@media (max-width: 720px) {
    :root {
        --section-space: 62px;
    }

    .container {
        width: min(100% - 20px, var(--container));
    }

    .header-inner {
        gap: 12px;
    }


   .brand-text {
        font-size: 0.9em;
    }
     
    .hero-copy {
        width: 100%;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        min-height: 620px;
        padding: 42px 0 56px;
    }

    .hero-copy h1 {
        margin-top: 16px;
    }

    .hero-subtitle {
        margin-top: 14px;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
   
  
    .hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-points li {
        justify-content: center;
        text-align: center;
    }

    .quick-facts {
        margin-top: -24px;
    }

    .facts-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .fact-card {
        min-height: 92px;
        padding: 18px;
    }

    .section-head {
        margin-bottom: 34px;
    }

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

    .polaroid,
    .polaroid-1,
    .polaroid-2,
    .polaroid-3,
    .polaroid-4,
    .polaroid-5 {
        transform: none;
    }

    .polaroid figcaption {
        font-size: 1.6rem;
    }

    .step-card,
    .price-card {
        border-radius: 24px;
    }

    .price-card {
        padding: 28px 22px 24px;
    }

    .price-badge {
        top: 14px;
        right: 14px;
    }

    .pickup-media {
        border-radius: 26px;
    }

    .pickup-media img {
        aspect-ratio: 1.2 / 1;
    }

    .faq-item summary {
        padding: 20px 54px 20px 18px;
    }

    .faq-item p {
        padding: 0 18px 18px;
    }

    .final-cta-box {
        padding: 42px 20px;
        border-radius: 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }


    .nav-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        min-height: 560px;
    }

    .eyebrow,
    .section-kicker {
        min-height: 32px;
        padding: 6px 12px;
        font-size: 0.74rem;
    }

    .btn,
    .btn-large {
        min-height: 52px;
        padding: 0 20px;
        font-size: 0.95rem;
    }

    .fact-card h2 {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 2.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}


.hero-cta .whatsapp {
	text-align: center;
}
.hero-cta .prices {
	text-align: center;
}



.boat-grid {
    display: grid;
    gap: 34px;
}

.boat-card {
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,249,239,0.93));
    border: 1px solid rgba(18, 56, 93, 0.08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.boat-card-main {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: center;
}

.boat-card-copy h3 {
    margin-top: 10px;
}

.boat-card-copy p {
    margin-top: 14px;
    max-width: 620px;
    color: var(--text-soft);
}

.boat-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--blue-700), var(--blue-800));
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 24px rgba(15, 95, 168, 0.20);
}

.boat-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.boat-meta li {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 95, 168, 0.08);
    color: var(--blue-900);
    font-weight: 600;
}

.boat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.boat-polaroids {
    position: relative;
    min-height: 350px;
}

.boat-polaroids .polaroid {
    position: absolute;
    width: 200px;
    padding: 12px 12px 48px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.boat-polaroids .polaroid:hover {
	z-index: 12345;
}

.boat-polaroids .polaroid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.boat-polaroids .polaroid figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
    font-family: "Caveat", cursive;
    font-size: 26px;
    color: var(--blue-900);
}

.boat-polaroids .polaroid-1 {
    top: 10px;
    left: 0;
    transform: rotate(-7deg);
    z-index: 1;
}

.boat-polaroids .polaroid-2 {
    top: 0;
    right: 24px;
    transform: rotate(6deg);
    z-index: 3;
}

.boat-polaroids .polaroid-3 {
    bottom: 0;
    left: 110px;
    transform: rotate(-4deg);
    z-index: 2;
}

@media (max-width: 1100px) {
    .boat-card-main {
        grid-template-columns: 1fr;
    }

    .boat-polaroids {
        min-height: 320px;
        max-width: 470px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .boat-card {
        padding: 20px;
        border-radius: 24px;
    }

    .boat-actions .btn {
        width: 100%;
    }

    .boat-polaroids {
        min-height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .boat-polaroids .polaroid {
        position: relative;
        width: min(100%, 240px);
    }

    .boat-polaroids .polaroid-1,
    .boat-polaroids .polaroid-2,
    .boat-polaroids .polaroid-3 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .boat-polaroids .polaroid-1 {
        transform: rotate(-4deg);
    }

    .boat-polaroids .polaroid-2 {
        transform: rotate(3deg);
    }

    .boat-polaroids .polaroid-3 {
        transform: rotate(-2deg);
    }
}

@media (max-width: 400px) {
    .brand-text {
        display: none;
    }
}

.main-nav.show {
 	display: flex;
}


svg {
	visibility: visible !important;
} 
