* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 0;
}

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #14b8a6;
    --accent: #f97316;
    --accent-soft: #fed7aa;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --light: #fff7ed;
    --soft-blue: #e0f2fe;
    --soft-green: #ccfbf1;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #16a34a;
    --danger: #dc2626;
    --shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
    --radius: 24px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 24%),
        var(--light);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
strong,
li,
div {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

main {
    padding-top: 82px;
}

.section {
    padding: 90px 0;
}

.section-small {
    padding: 60px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    color: var(--primary-dark);
    background: var(--soft-blue);
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-label::before {
    content: "✦";
    color: var(--accent);
}

.section-header h1,
.section-header h2 {
    color: var(--dark);
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.section-header h1 {
    font-size: clamp(36px, 5vw, 62px);
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.section-header p {
    color: var(--muted);
    font-size: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    transition: 0.22s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(14, 165, 233, 0.24);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(14, 165, 233, 0.32);
}

.btn-outline {
    color: var(--primary-dark);
    background: var(--white);
    border-color: rgba(14, 165, 233, 0.35);
}

.btn-outline:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-light:hover {
    transform: translateY(-3px);
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: 0.22s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.header-container {
    height: 82px;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    height: 80%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    max-height: 100%;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 800;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-dark);
    background: var(--soft-blue);
}

.main-nav .nav-cta {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: var(--white);
    margin-left: 8px;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.main-nav .nav-cta:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 14px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 900;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 95px;
    background:
        radial-gradient(circle at 8% 8%, rgba(20, 184, 166, 0.20), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(249, 115, 22, 0.20), transparent 26%),
        linear-gradient(135deg, #eff6ff 0%, #fff7ed 52%, #ecfeff 100%);
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    background: rgba(249, 115, 22, 0.18);
    border-radius: 999px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 54px;
}

.hero-content h1 {
    color: var(--dark);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    margin-bottom: 22px;
    letter-spacing: -0.055em;
}

.hero-content p {
    color: var(--muted);
    font-size: 19px;
    margin-bottom: 30px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 640px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--soft-shadow);
}

.hero-stat strong {
    display: block;
    color: var(--dark);
    font-size: 27px;
    line-height: 1;
    margin-bottom: 7px;
}

.hero-stat span {
    color: var(--muted);
    font-size: 14px;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.hero-image-card img {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    left: -24px;
    bottom: 34px;
    width: min(270px, 80%);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.floating-card strong {
    display: block;
    color: var(--dark);
    margin-bottom: 6px;
}

.floating-card p {
    color: var(--muted);
    font-size: 14px;
}

/* GRIDS AND CARDS */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--soft-shadow);
}

.card::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -42px;
    width: 120px;
    height: 120px;
    background: var(--soft-blue);
    border-radius: 999px;
}

.card h3 {
    position: relative;
    color: var(--dark);
    margin-bottom: 10px;
}

.card p {
    position: relative;
    color: var(--muted);
}

.package-card,
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: 0.22s ease;
}

.package-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.package-image,
.service-image {
    height: 230px;
    background: var(--soft-blue);
    overflow: hidden;
}

.package-image img,
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.package-card:hover .package-image img,
.service-card:hover .service-image img {
    transform: scale(1.06);
}

.package-body,
.service-body {
    padding: 24px;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.package-meta span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--soft-green);
    color: #0f766e;
    font-size: 13px;
    font-weight: 800;
}

.package-body h3,
.service-body h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 22px;
}

.package-body p,
.service-body p {
    color: var(--muted);
    margin-bottom: 16px;
}

.package-price,
.service-price {
    display: block;
    color: var(--accent);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 18px;
}

.package-features,
.service-features {
    list-style: none;
    margin-bottom: 22px;
}

.package-features li,
.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text);
}

.package-features li::before,
.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
}

/* CTA */

.cta-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 26%),
        linear-gradient(135deg, var(--primary-dark), var(--secondary));
    color: var(--white);
    border-radius: 36px;
    padding: 62px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
}

.cta-section::after {
    content: "✈";
    position: absolute;
    right: 36px;
    bottom: -8px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.12);
    transform: rotate(-12deg);
}

.cta-section h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.cta-section p {
    position: relative;
    z-index: 1;
    color: #dffafe;
    max-width: 700px;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 54px;
    align-items: center;
}

.about-image {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    padding: 8px;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
}

.about-content h1,
.about-content h2 {
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

.about-content h1 {
    font-size: clamp(36px, 5vw, 56px);
}

.about-content h2 {
    font-size: clamp(30px, 4vw, 44px);
}

.about-content p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 17px;
}

.value-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.value-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--soft-shadow);
}

.value-item h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.contact-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--soft-shadow);
}

.contact-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
    color: var(--muted);
}

.form-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
    max-width: 100%;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--dark);
    font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select,
.checkout-page-section input,
.checkout-page-section textarea,
.checkout-page-section select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 15px;
    background: var(--white);
    color: var(--text);
    outline: none;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.13);
}

/* CHECKOUT */

.checkout-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
}

.checkout-page-section .form-card,
.checkout-page-section .form-grid,
.checkout-page-section .form-group {
    min-width: 0;
    max-width: 100%;
}

#service-selector,
#payment-method {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#product-container {
    max-width: 100%;
}

.item {
    max-width: 100%;
}

.product-data {
    min-width: 0;
}

.product-name {
    overflow-wrap: break-word;
}

#total-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

#custom-amount {
    background: var(--white);
    color: var(--accent);
    border: 1px solid var(--border);
}

.order-summary {
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.24), transparent 32%),
        linear-gradient(180deg, #0f172a, #082f49);
    color: var(--white);
    border-radius: 28px;
    padding: 32px;
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow);
}

.order-summary h3 {
    margin-bottom: 20px;
    font-size: 25px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    flex-wrap: wrap;
}

.summary-row span {
    color: #bae6fd;
}

.summary-row strong {
    color: var(--white);
    text-align: right;
    max-width: 100%;
}

.summary-total {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 23px;
    font-weight: 900;
    flex-wrap: wrap;
}

.payment-note {
    margin-top: 20px;
    color: #bae6fd;
    font-size: 14px;
}

/* SUCCESS */

.success-box {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow);
}

.success-icon {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: var(--soft-green);
    color: var(--success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
}

.success-box h1 {
    color: var(--dark);
    margin-bottom: 12px;
    font-size: clamp(32px, 4vw, 48px);
}

.success-box p {
    color: var(--muted);
    margin-bottom: 26px;
}

/* FOOTER */

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.15), transparent 28%),
        #020617;
    color: var(--white);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 34px;
    padding: 72px 0;
}

.footer-logo img {
    display: block;
    height: 58px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.footer-brand p {
    color: #94a3b8;
    margin: 18px 0;
    max-width: 420px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials a,
.footer-column a,
.footer-whatsapp,
.footer-legal a {
    color: #cbd5e1;
    transition: 0.2s ease;
}

.footer-socials a:hover,
.footer-column a:hover,
.footer-whatsapp:hover,
.footer-legal a:hover {
    color: var(--white);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: var(--white);
}

.footer-column p {
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-inner {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #94a3b8;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .mobile-menu-button {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 88px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 14px;
        box-shadow: var(--shadow);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .checkout-grid,
    .cta-section {
        grid-template-columns: 1fr;
    }

    .hero-image-card img,
    .about-image img {
        height: 390px;
    }

    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    main {
        padding-top: 68px;
    }

    .section {
        padding: 64px 0;
    }

    .section-small {
        padding: 46px 0;
    }

    .site-header .header-container,
    .header-container {
        height: 68px;
        min-height: 68px;
    }

    .logo {
        height: 76%;
    }

    .logo img {
        height: 100%;
        max-height: 100%;
        max-width: 150px;
    }

    .main-nav {
        top: 76px;
    }

    .hero {
        padding: 76px 0 64px;
    }

    .hero-stats,
    .grid-3,
    .grid-4,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-card {
        transform: none;
    }

    .hero-image-card img,
    .about-image img {
        height: 300px;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .cta-section {
        padding: 36px 24px;
        border-radius: 26px;
    }

    .form-card,
    .order-summary,
    .success-box {
        padding: 24px;
    }

    .item {
        grid-template-columns: 1fr !important;
    }

    .item img {
        width: 100% !important;
        height: auto !important;
        max-height: 260px;
    }

    #total-amount {
        flex-direction: column;
        align-items: flex-start !important;
    }

    #custom-amount {
        width: 100%;
        max-width: 100% !important;
        text-align: left !important;
    }

    #service-selector,
    #payment-method {
        font-size: 14px;
        padding-right: 36px;
    }

    .footer-logo img {
        max-width: 170px;
        height: auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }
}