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

:root {
    --yellow: #F2E500;
    --yellow2: #EDB901;
    --teal: #008080;
    --dark: #2B2B2B;
    --dark2: #1E1E1E;
    --mid: #3D3D3D;
    --light-bg: #F5F5F0;
    --white: #FFFFFF;
    --gray: #888;
    --font-display: 'acumin-pro', sans-serif;
    --font-body: 'segoe-ui', sans-serif;
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

/* HEADER */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #1E1E1E !important;
    border-bottom: 2px solid rgb(232, 199, 10);
}

.site-header .btn-primary:hover {
    border-color: white;
    color: white;
}

.site-header .navbar {
    min-height: var(--header-height);
    padding: 0;
    background-color: #1E1E1E;
}

.site-header .header-container {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    height: var(--header-height);
    flex-shrink: 0;
    text-decoration: none;
}

.logo {
    display: block;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-header .navbar-toggler {
    border: 0;
    padding: 0.35rem 0.5rem;
    box-shadow: none;
}

.site-header .navbar-toggler:focus {
    box-shadow: none;
}

.site-header .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.site-header .navbar-collapse {
    justify-content: center;
}

.header-menu {
    gap: 2rem;
    align-items: center;
}

.header-menu .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    border-bottom: none !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.75rem 0;
    transition: color 0.2s ease;
}

.header-menu .nav-link:hover {
    color: var(--white) !important;
}

.header-cta,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: var(--white);
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.header-cta:hover,
.btn-primary:hover {
    background: #158e87;
    color: var(--white);
}

/* HERO */
#hero {
    min-height: calc(100vh - var(--header-height));
    background: var(--dark2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#hero::after {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -60px;
    width: 280px;
    height: 280px;
    border: 12px solid var(--yellow);
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

.hero-left {
    padding: 70px 60px 70px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 18px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4em;
    font-weight: 200;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--teal);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 40px;
}

.hero-form {
    background: #262623;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 30px 32px;
    max-width: 550px;
}

.hero-form .form-check-input {
    width: 20px;
    height: 20px;
    padding: 0;
    margin-right: 10px;
}

.hero-form h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 20px;
}

.hero-form input {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 13px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.2s;
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hero-form input:focus {
    border-color: var(--teal);
}

.hero-form .form-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    margin: 12px 0 16px;
    text-align: center;
}

.btn-submit {
    width: 100%;
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 14px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #158e87;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right .photo-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(160deg, #3d5a6b 0%, #1e3040 50%, #0f2030 100%);
    position: relative;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
    background: linear-gradient(145deg, #3a5a6e 0%, #1c3345 60%, #0d1f2d 100%);
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--dark2) 0%, transparent 30%);
}

/* SECTION DESCUBRA */
#descubra {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.descubra-left {
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

.section-badge {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 5px 14px;
    margin-bottom: 20px;
    max-width: fit-content;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 18px;
}

.section-title .yellow {
    color: var(--yellow);
}

.section-title .teal {
    color: var(--teal);
}

.section-body {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.feature-text strong {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.feature-text span {
    font-size: 16px;
    line-height: 24px;
    display: block;
    color: #666;
}

.descubra-right {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #1a4a3a 0%, #0d2e22 100%);
}

.descubra-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    mix-blend-mode: luminosity;
}

.descubra-photo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #1a5040 0%, #0a2820 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA */
#cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 90px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    isolation: isolate;
}

#cta-section::after {
    content: '';
    position: absolute;
    right: 100px;
    bottom: -150px;
    width: 300px;
    height: 300px;
    border: 14px solid var(--yellow);
    border-radius: 50%;
    opacity: 1;
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content .section-label {
    color: var(--yellow);
}

.cta-content .section-title {
    color: var(--white);
}

.cta-content .section-body {
    color: rgba(255, 255, 255, 0.65);
}

.cta-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 360px;
    background: linear-gradient(145deg, #2a6050, #153025);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* UBATUBA */
#ubatuba {
    background: var(--dark2);
    padding: 90px 80px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#ubatuba::before {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    border: 12px solid var(--yellow);
    border-radius: 50%;
    opacity: 1;
    z-index: -1;
}

.ubatuba-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ubatuba-header .section-title {
    color: var(--white);
}

.ubatuba-header .section-body {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    text-align: center;
}

.ubatuba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
}

.ubatuba-card {
    background: #262623;
    padding: 40px 36px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

.ubatuba-card:hover {
    border-color: var(--teal);
}

.ubatuba-card-icon {
    width: 48px;
    height: 48px;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ubatuba-card-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.ubatuba-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.ubatuba-card p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 1);
}

/* SOBRE */
#sobre {
    background: var(--light-bg);
    padding: 90px 80px;
}

.sobre-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-left .section-label {
    color: var(--yellow2);
}

.sobre-left .section-body {
    color: #555;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
    margin-top: 40px;
}

.stat-item {
    background: var(--white);
    padding: 28px 20px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
}

.sobre-visual {
    background: var(--dark2);
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.sobre-visual-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2B2B2B 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.sobre-logo-mark {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-logo-mark span {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 36px;
    color: var(--dark2);
}

.sobre-logo-text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.sobre-visual::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    border: 10px solid var(--yellow);
    border-radius: 50%;
    opacity: 1;
}

/* FOOTER */
footer {
    background: var(--dark2) !important;
    padding: 40px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.footer-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-mark span {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 16px;
    color: var(--dark2);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    margin-left: 6px;
    margin-bottom: 11px;
}

.footer-divider {
    width: 1px;
    height: 90px;
    margin: 24px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-caixa {
    height: 43px;
    width: 120px;
    overflow: hidden;
    display: block;
}

.footer-caixa img {
    height: 43px !important;
    width: 120px !important;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 24px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.7;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ILLUSTRATION */
.photo-scene {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    background: linear-gradient(155deg, #1f4a5a 0%, #0e2333 60%, #071520 100%);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.photo-scene img{
	    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(26, 158, 150, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(232, 198, 10, 0.08) 0%, transparent 50%);
}

.photo-scene-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.photo-scene-tag {
    background: rgba(232, 198, 10, 0.15);
    border: 1px solid rgba(232, 198, 10, 0.3);
    color: var(--yellow);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 12px;
}

.photo-scene-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.photo-scene-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.building-svg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 85%;
    opacity: 0.35;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
    .hero-left {
        padding: 60px 30px 60px 50px;
    }

    #cta-section,
    .sobre-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 991.98px) {
    :root {
        --header-height: 68px;
    }

    body {
        padding-top: var(--header-height);
    }

    .site-header .header-container {
        min-height: var(--header-height);
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-logo {
        height: var(--header-height);
    }

    .logo {
        max-height: 40px;
    }

    .site-header .navbar-collapse {
        background: var(--dark2);
        margin-top: 0;
        padding: 1rem 0 0;
    }

    .header-menu {
        gap: 0;
        align-items: flex-start;
    }

    .header-menu .nav-item {
        width: 100%;
    }

    .header-menu .nav-link {
        width: 100%;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
#cta-section::after {
    content: '';
    position: absolute;
    right: 70%;
    bottom: -30%;
    width: 300px;
    height: 300px;
    border: 14px solid var(--yellow);
    border-radius: 50%;
    opacity: 1;
    z-index: -1;
}
    #hero,
    #descubra {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .descubra-right {
        min-height: 300px;
        display: none;
    }

    .cta-image {
        display: none;
    }

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

    #ubatuba,
    #sobre,
    #cta-section {
        padding: 60px 30px;
    }

    .descubra-left,
    .hero-left {
        padding: 50px 30px;
    }

    footer {
        padding: 30px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

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

    .hero-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .section-title {
        font-size: clamp(28px, 8vw, 40px);
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: initial !important;
        flex-grow: initial;
    }
}