/* ===== RESET & BASE ===== */

/* Benton Modern (Display - versão normal) */
@font-face {
    font-family: 'Benton Modern';
    src: url('../assets/fonts/BentonModDisp-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benton Modern';
    src: url('../assets/fonts/BentonModDisp-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Benton Display (SemiBold para títulos hero) */
@font-face {
    font-family: 'Benton Display';
    src: url('../assets/fonts/BentonModDisp-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benton Display';
    src: url('../assets/fonts/BentonModDisp-SemiboldIt.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Benton Condensed (para títulos de seções) */
@font-face {
    font-family: 'Benton Cond';
    src: url('../assets/fonts/BentonModDispCond-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benton Cond';
    src: url('../assets/fonts/BentonModDispCond-BoldIt.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Benton Cond';
    src: url('../assets/fonts/BentonModDispCond-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benton Cond';
    src: url('../assets/fonts/BentonModDispCond-RegularIt.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Benton Extra Condensed */
@font-face {
    font-family: 'Benton ExCond';
    src: url('../assets/fonts/BentonModDispExCond-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benton ExCond';
    src: url('../assets/fonts/BentonModDispExCond-BoldIt.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Gilroy */
@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Radomir%20Tinkov%20-%20Gilroy-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Radomir%20Tinkov%20-%20Gilroy-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Radomir%20Tinkov%20-%20Gilroy-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Radomir%20Tinkov%20-%20Gilroy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas na imagem PRAIA BERTIOGA */
    --primary-blue: #1a5f7a;
    --ocean-blue: #0077be;
    --accent-blue: #6B8E9F;
    --light-blue: #e6f3f8;
    --sand-beige: #f5f0e8;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-text: #666666;
    --gray-light: #f8f8f8;
    
    /* Tipografia */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    --font-titles: 'Gilroy', 'Montserrat', sans-serif;
    --font-benton: 'Benton Modern', Georgia, serif;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 100%; /* Ocupa toda a largura */
    margin: 0 auto;
    padding: 0 40px; /* Margem nas bordas aumentada para 40px */
}

/* Títulos usam Gilroy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titles);
    font-weight: 700;
}

h1 {
    font-size: 55px;
    line-height: 1.2;
}

h2 {
    font-size: 28px;
    line-height: 1.3;
}

h3 {
    font-size: 72px;
    line-height: 1.1;
}

h4 {
    font-size: 24px;
    line-height: 1.4;
}

h5 {
    font-size: 20px;
    line-height: 1.4;
}

h6 {
    font-size: 16px;
    line-height: 1.4;
}

/* ===== HEADER - Bootstrap Navbar Customizado ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 0;
    transition: all 0.3s ease;
}

.header .navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled .navbar {
    background: rgba(26, 95, 122, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .navbar-brand .logo-img {
    height: 50px;
}

.header .nav-link {
    color: #ffffff !important;
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1.5rem;
    margin: 0 8px;
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.header .nav-link:hover,
.header .nav-link.active {
    opacity: 0.8;
}

.header .nav-link:hover::after,
.header .nav-link.active::after {
    width: 60%;
}

.header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
}

.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION - Bootstrap Grid ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: visible;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05) 0%, rgba(26, 95, 122, 0.05) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 12;
}

.hero-content {
    min-height: calc(100vh - 200px);
    padding: 0 0 120px 0; /* Removido padding-top (era 100px) */
    align-items: flex-start !important;
}

/* LADO ESQUERDO - Texto */
.hero-text {
    color: var(--white);
    z-index: 1;
    padding-top: 80px;
}

.hero-label {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 600; /* SemiBold */
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-icon {
    width: 24px;
    height: auto;
    display: block;
    margin-bottom: 25px;
    margin-top: 8px;
}

.hero-title {
    font-family: 'Benton Display', 'Benton Modern', Georgia, serif;
    font-size: 53px;
    font-weight: 600; /* SemiBold */
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.hero-title-underline {
    font-family: 'Benton Display', 'Benton Modern', Georgia, serif;
    font-size: 53px;
    font-weight: 600; /* SemiBold */
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: 0.04em;
    color: #ffffff;
    padding-bottom: 20px;
    border-bottom: none;
    display: block;
    position: relative;
}

.hero-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px; /* Linha curta como no Figma */
    height: 2px;
    background: #ffffff;
}

.hero-features {
    margin-top: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 53px;
    font-weight: 300; /* Light - fonte fina */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
}

.feature-text-wellness {
    font-family: 'Gilroy', sans-serif;
    font-size: 40px;
    font-weight: 300; /* Light */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.15;
}

.feature-plus {
    font-family: 'Gilroy', sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.15;
}

.hero-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 18px 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* LADO DIREITO - Formulário (estilo glassmorphism) */
.hero-form-wrapper {
    z-index: 11;
    position: relative;
    padding-top: 80px; /* Alinhado com LANÇAMENTO */
}

.hero-form {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: 0;
}

.hero-form-title {
    display: none; /* Escondido conforme Figma */
}

/* Form groups COM ícones */
.form-group {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    gap: 15px;
}

.form-group .icon {
    width: 100px;
    padding-right: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    flex-shrink: 0;
}

/* Barra separadora "/" */
.form-group .icon::after {
    content: '/';
    font-family: 'Gilroy', sans-serif;
    font-size: 35px;
    color: rgba(89, 93, 116, 0.5);
    font-weight: 300;
    line-height: 1;
}

.form-group .icon img {
    width: 50px;
    height: 50px;
    opacity: 0.6;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(120, 130, 150, 0.3);
    color: #4a5568;
    padding: 15px 22px;
    border-radius: 50px;
    height: 52px;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex: 1;
    transition: all 0.3s ease;
    font-family: 'Gilroy', sans-serif;
}

.form-group input::placeholder {
    color: rgba(74, 85, 104, 0.7);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(120, 130, 150, 0.5);
}

/* Checkbox group e botão */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    color: rgba(74, 85, 104, 0.8);
    font-family: 'Gilroy', sans-serif;
    font-size: 9px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
    flex: 1;
    max-width: 50%;
}

/* Botão de envio */
.form-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background-color: #595D74;
    border-color: #595D74;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #4a4e62;
    border-color: #4a4e62;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(89, 93, 116, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-submit {
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 16px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    white-space: nowrap;
    width: auto;
    flex-shrink: 0;
    height: 56px;
    background-color: #5a6178;
    border: none;
    color: #ffffff;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* ===== VIDA EM FRENTE AO MAR SECTION ===== */
.vida-mar-section {
    position: relative;
    margin-top: -190px;
    padding: 50px 0 0;
    overflow: visible;
    margin-bottom: 0;
}

/* Removido full-bleed: herda o container global (1350px) */

.vida-mar-bg {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100% - 150px);
    pointer-events: none;
    z-index: 1;
    background-color: #6B8E9F;
}

.bg-azul {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vida-mar-image-wrapper {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 15;
    margin-top: 50px;
}

.fachada-title {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #FFFFFF;
    font-family: 'Gilroy', sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 20;
}

.predio-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    box-shadow: 0 35px 70px rgba(2, 24, 38, 0.35);
}

.predio-legenda {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: transparent;
    color: #ffffff;
    font-family: 'Gilroy', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 20;
}

.vida-mar-content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 80px;
}

.vida-mar-text {
    display: grid;
    grid-template-columns: 1fr auto 1.2fr;
    gap: 60px;
    align-items: flex-start;
    color: #ffffff;
}

.vida-mar-title {
    font-family: 'Benton Cond', 'Benton Modern', Georgia, serif;
    font-size: 73px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
}

.vida-mar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.vida-mar-icon img {
    width: 250px;
    height: auto;
    transform: rotate(-5deg);
}

.vida-mar-description {
    font-family: 'Benton Cond', 'Benton Modern', Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    text-align: left;
    padding-top: 0px;
}

.vida-mar-description p {
    margin-bottom: 0px;
    color: #ffffff;
}

.vida-mar-description p:last-child {
    margin-top: 32px;
    margin-bottom: 0;
    font-weight: 600;
}

.vida-mar-description strong {
    font-weight: 700;
}

/* ===== PROJETISTAS SECTION ===== */
.projetistas-section {
    background-color: #F2EAE4;
    padding: 80px 0 100px;
    position: relative;
    margin-top: 0;
}

.projetistas-title {
    font-family: 'Benton Cond', 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #595D74;
    margin-bottom: 40px;
    text-align: left;
}

/* Card de Projetista - Layout vertical */
.projetista-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.projetista-header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 35px;
    min-height: 328px;
}

.projetista-image {
    width: 236px;
    flex-shrink: 0;
}

.projetista-image img {
    width: 236px;
    height: 328px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.projetista-title-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
}

.projetista-label {
    font-family: 'Gilroy', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 5px;
    line-height: 1.5;
}

.projetista-name {
    font-family: 'Gilroy', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #595D74;
    margin-bottom: 0;
    line-height: 1.2;
}

.projetista-info {
    flex: 1;
}

.projetista-description {
    font-family: 'Benton Cond', 'Benton Modern', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #595D74;
    margin-bottom: 18px;
    text-align: left;
}

.projetista-description:last-child {
    margin-bottom: 0;
}

/* Card SEM IMAGEM (ex: Antônio Carlos) */
.projetista-card-no-image {
    display: flex;
    flex-direction: column;
}

/* Espaçador para alinhar com a altura das fotos (328px - altura do título) */
.projetista-spacer {
    height: 260px;
}

.projetista-card-no-image .projetista-title-block {
    margin-bottom: 35px;
}

.projetista-card-no-image .projetista-name {
    margin-bottom: 0;
}

/* ===== IMPLANTAÇÃO SECTION - Bootstrap Grid ===== */
.implantacao-section {
    padding: 100px 0 120px;
    background-color: #ffffff;
}

/* Removido .implantacao-content - agora usa Bootstrap row/col */

.implantacao-list h3 {
    font-family: 'Benton Cond', 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #595D74;
    margin-bottom: 40px;
}

/* list-unstyled do Bootstrap remove estilos padrão de lista */

.implantacao-items li {
    padding: 8px 0;
    font-family: 'Benton Modern', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    text-transform: uppercase;
    color: #595D74;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.implantacao-items li:hover,
.implantacao-items li.hover {
    color: #3d4055;
}

.item-number {
    font-weight: 600;
    margin-right: 10px;
    min-width: 30px;
    text-align: right;
    color: #595D74;
    line-height: 1.2; /* Ajuste fino para alinhar com o texto */
    margin-top: 2px; /* Pequeno ajuste ótico */
}
eeeeee
.item-with-icon {
    display: flex;
    align-items: center;
}

.implantacao-list-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-left: 10px;
    object-fit: contain;
}

.implantacao-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.implantacao-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

/* position-relative e img-fluid do Bootstrap controlam layout */
.planta img {
    /* width: 100% - fornecido por .img-fluid */
    /* height: auto - fornecido por .img-fluid */
    /* display: block - fornecido por .img-fluid */
    border-radius: 8px;
}

.bullet {
    position: absolute;
    color: #ffffff;
    background: #6B8E9F;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bullet:hover,
.bullet.hover {
    background: #595D74;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.implantacao-street {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(107, 142, 159, 0.9);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Benton Modern', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .vida-mar-section {
        margin-top: 0;
        padding: 0;
        background-color: #6B8E9F;
    }

    .vida-mar-bg {
        display: none;
    }

    .vida-mar-image-wrapper {
        margin-top: 0;
        padding-top: 30px;
    }

    .vida-mar-text {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .vida-mar-title {
        text-align: center;
    }

    .vida-mar-icon {
        display: none;
    }

    /* Projetistas e Implantação agora usam Bootstrap responsive grid */
}

@media (max-width: 768px) {
    .header .navbar-toggler {
        display: block;
    }
    
    .logo h1 {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .hero-form-wrapper {
        padding: 30px 20px;
    }

    /* ===== VIDA EM FRENTE AO MAR MOBILE ===== */
    .vida-mar-section {
        margin-top: -1px;
        padding: 0;
        overflow: visible;
        background-color: #6B8E9F;
        position: relative;
    }
    
    .vida-mar-section::before {
        content: '';
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 50px;
        background-color: #6B8E9F;
        z-index: 0;
    }
    
    .vida-mar-bg {
        display: none;
    }
    
    .vida-mar-image-wrapper {
        width: 90%;
        margin: 0 auto;
        padding-top: 20px;
        position: relative;
        z-index: 15;
    }
    
    .vida-mar-section .container {
        background-color: #6B8E9F;
        position: relative;
        z-index: 1;
    }
    
    .vida-mar-image-wrapper img,
    .predio-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .vida-mar-content {
        margin-top: 30px;
        padding-top: 20px;
        padding-bottom: 50px;
        position: relative;
        z-index: 2;
    }

    .vida-mar-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
    }

    .vida-mar-title {
        font-size: 38px;
        letter-spacing: 3px;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        line-height: 1.15;
    }

    .vida-mar-icon {
        display: none;
    }
    
    .predio-legenda {
        font-size: 8px;
        padding: 6px 10px;
        bottom: 10px;
        right: 10px;
        letter-spacing: 0.5px;
    }

    .vida-mar-description {
        font-size: 16px;
        text-align: center;
        padding: 0 20px;
        line-height: 1.7;
        width: 100%;
    }
    
    .vida-mar-description p {
        text-align: center;
        margin: 0 auto 15px;
    }

    /* ===== PROJETISTAS MOBILE ===== */
    .projetistas-section {
        padding: 50px 0 60px;
    }
    
    .projetistas-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .projetista-card {
        margin-bottom: 40px;
    }
    
    .projetista-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        min-height: auto;
    }
    
    .projetista-image {
        width: 280px;
        margin: 0 auto 5px;
    }
    
    .projetista-image img {
        width: 280px;
        height: 390px;
    }
    
    .projetista-spacer {
        display: none;
        height: 0;
    }

    .projetista-title-block {
        align-items: center;
        width: 100%;
        text-align: center;
        margin-top: 0;
        margin-bottom: 5px;
    }
    
    .projetista-label {
        text-align: center;
        margin-bottom: 2px;
    }
    
    .projetista-name {
        text-align: center;
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .projetista-description {
        text-align: center;
        font-size: 16px;
        padding: 0 10px;
        margin-top: 0;
    }

    /* Bullets responsivos */
    .bullet {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

/* ===== LAZER & BEM-ESTAR CAROUSEL (Full Width) ===== */
.lazer {
    padding: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.lazer .carousel-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    overflow: hidden;
}

.lazer .carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lazer .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.lazer .carousel-slide.active {
    opacity: 1;
}

.lazer .slide-title {
    position: absolute;
    padding: 40px 20px;
    color: white;
    font-size: 19px;
    font-weight: 600;
    color: #FFF;
    z-index: 10;
}

.lazer .carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 20;
}

.lazer .carousel-btn {
    background: none;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 0;
    cursor: pointer;
    pointer-events: all;
}

.lazer .carousel-btn::before {
    width: 40px;
    height: 40px;
    border-left: solid 2px #FFF;
    border-bottom: solid 2px #FFF;
    content: "";
    display: block;
    transform: translate(-50%, -50%);
    transform: rotate(45deg);
}

.lazer .carousel-btn.next::before {
    transform: rotate(225deg);
}

.lazer .carousel-btn:hover {
    transform: scale(1.1);
}

.lazer .carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    /* d-flex justify-content-center align-items-center do Bootstrap */
    gap: 1rem;
    z-index: 20;
}

.lazer .indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.lazer .indicator.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.lazer .carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    z-index: 20;
}

.lazer .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6B8E9F 0%, #1a5f7a 100%);
    width: 0;
    transition: width 0.1s linear;
}

@media (max-width: 768px) {
    .lazer {
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
    }
    
    .lazer .carousel-container {
        padding-bottom: 110%; /* Proporção mais alta no mobile */
        height: auto;
        margin-bottom: 3rem;
        overflow: visible;
    }
    
    .lazer .carousel-slide {
        background-size: cover;
        background-position: center center;
    }
    
    .lazer .slide-title {
        font-size: 12px;
        padding: 15px 10px;
    }
    
    .lazer .carousel-btn {
        width: 50px;
        height: 50px;
    }

    .lazer .carousel-btn::before {
        width: 30px;
        height: 30px;
    }
    
    .lazer .carousel-controls {
        display: none;
    }
    
    .lazer .carousel-indicators {
        bottom: -2.5rem;
        gap: 0.5rem;
    }
    
    .lazer .indicator {
        width: 10px;
        height: 10px;
        border: 1px solid rgba(107, 142, 159, 0.8);
    }
    
    .lazer .indicator.active {
        background: #6B8E9F;
        box-shadow: 0 0 10px rgba(107, 142, 159, 0.6);
    }
}

/* ===== PLANTAS & APARTAMENTOS SECTION ===== */
.plantas {
    padding: 100px 0;
    background: #FFFFFF;
    color: #333;
}

.plantas .container {
    margin: 0 auto;
    padding: 0 40px; /* Mesmo padding do container geral */
}

.plantas-header {
    margin-bottom: 50px;
    text-align: left;
}

.plantas-header .section-title {
    font-family: 'Benton Cond', 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #595D74;
    margin-bottom: 30px;
}

.plantas-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.plantas-tab {
    padding: 10px 25px;
    background: #FFF;
    border: solid 1px #8a9db0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #5a6a7a;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    letter-spacing: 1px;
}

.plantas-tab.active {
    background: #8a9db0;
    color: white;
    border-color: #8a9db0;
}

.plantas-tab:hover {
    background: #6a7a8a;
    border-color: #6a7a8a;
    color: white;
}

.plantas-info {
    margin-bottom: 30px;
}

.plantas-apartment-subtitle {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8a9db0;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    margin-top: 25px;
}

.plantas-apartment-title {
    font-size: 73px;
    font-family: 'Benton Cond', 'Benton Modern', Georgia, serif;
    font-weight: 400;
    color: #595D74;
    margin-top: 25px;
    margin-bottom: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.plantas-apartment-title .separator {
    font-weight: 200;
    color: #9aa3b0;
    margin: 0 15px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.plantas-carousel-container {
    position: relative;
    margin-bottom: 40px;
}

.plantas-carousel {
    position: relative;
    width: 100vw;
    aspect-ratio: 1854/1000;
    overflow: hidden;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.plantas-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.plantas-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
}

.plantas-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.plantas-slide-title {
    color: #FFFFFF;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 40px;
}

.plantas-carousel .plantas-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 20;
}

.plantas-carousel .plantas-carousel-btn {
    background: none;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 0;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.plantas-carousel .plantas-carousel-btn::before {
    width: 40px;
    height: 40px;
    border-left: solid 2px #6B8E9F;
    border-bottom: solid 2px #6B8E9F;
    content: "";
    display: block;
    transform: translate(-50%, -50%);
    transform: rotate(45deg);
}

.plantas-carousel .plantas-carousel-btn.next::before {
    transform: rotate(225deg);
}

.plantas-carousel .plantas-carousel-btn:hover {
    transform: scale(1.1);
}

.plantas-carousel .plantas-carousel-indicators {
    display: none;
}

.plantas-carousel .plantas-carousel-indicator {
    display: none;
}

.plantas-carousel .plantas-carousel-indicator.active {
    display: none;
}

/* Legenda das plantas */
.plantas-legenda {
    text-align: center;
    font-size: 9px;
    color: #666666;
    line-height: 1.4;
    padding: 20px 15px;
    max-width: 600px;
    margin: 20px auto 0;
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    .plantas {
        padding: 60px 0 40px;
    }
    
    .tab-content.active {
        display: block;
        overflow: visible;
    }
    
    .plantas-legenda {
        display: block;
        font-size: 8px;
        padding: 20px 15px;
        margin: 20px auto;
        max-width: 100%;
        color: #666666;
        background: #FFFFFF;
    }
    
    .plantas-carousel-container {
        margin-bottom: 20px !important;
        overflow: visible;
        position: relative;
    }
    
    .plantas-carousel .plantas-carousel-indicators {
        display: none;
    }
    
    .plantas-tabs {
        flex-direction: row;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .plantas-carousel {
        aspect-ratio: auto;
        height: 400px;
        padding-bottom: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        position: relative;
        overflow: visible;
    }

    .plantas-carousel-slide {
        aspect-ratio: auto;
        background-size: contain;
        background-position: center center;
    }
    
    /* Imagens do Living (segundo slide) - full width no mobile */
    .plantas-carousel-slide:nth-child(2) {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        background-size: cover;
        background-position: center center;
    }
    
    .plantas-tab {
        width: 100%;
        padding: 12px 15px;
        font-size: 1.2rem;
    }
    
    .plantas-apartment-title {
        font-size: 1.1rem;
        font-family: 'Benton Modern', sans-serif;
        font-weight: 600;
        letter-spacing: 3px;
    }

    .plantas-slide-title {
        font-size: 12px;
        padding-top: 5px;
    }
    
    .plantas-carousel .plantas-carousel-controls {
        display: flex;
        padding: 0 1rem;
    }
    
    .plantas-carousel .plantas-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .plantas-carousel .plantas-carousel-btn::before {
        width: 25px;
        height: 25px;
    }
    
    .plantas-carousel .plantas-carousel-indicators {
        bottom: -2.5rem;
        gap: 0.5rem;
    }
    
    .plantas-carousel .plantas-carousel-indicator {
        width: 10px;
        height: 10px;
        border: 1px solid rgba(107, 142, 159, 0.8);
    }
    
    .plantas-carousel .plantas-carousel-indicator.active {
        background: #6B8E9F;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(107, 142, 159, 0.6);
    }
}

/* ===== LAZER SECTION STYLES ===== */
.lazer-header {
    margin-bottom: 60px;
}

.lazer-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.lazer-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.lazer-carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.lazer-carousel-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.lazer-carousel-slide.active {
    display: block;
    opacity: 1;
}

.lazer-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lazer-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.lazer-slide-title {
    font-family: 'Gilroy', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.lazer-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.lazer-carousel-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6B8E9F;
}

.lazer-carousel-btn:hover {
    background: #6B8E9F;
    color: #FFFFFF;
    transform: scale(1.1);
}

.lazer-carousel-btn svg {
    width: 24px;
    height: 24px;
}

.lazer-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.lazer-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lazer-carousel-indicator.active {
    background: #FFFFFF;
    transform: scale(1.3);
}

.lazer-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .lazer-section {
        padding: 60px 0;
    }

    .lazer-carousel-wrapper {
        aspect-ratio: 4/3;
    }

    .lazer-slide-title {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .lazer-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .lazer-carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .lazer-carousel-controls {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-feature {
        font-size: 16px;
    }

    .lazer-slide-title {
        font-size: 14px;
    }

    .lazer-carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

/* ===== DIFERENCIAIS SECTION ===== */
.diferenciais-section {
    padding: 60px 0 80px;
    background-color: #F2EAE4;
}

.diferenciais-section .container {
    max-width: 1600px;
}

.diferenciais-title {
    font-family: 'Benton Cond', 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #595D74;
    margin-bottom: 40px;
    text-align: left;
}

.diferenciais-section .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.diferencial-card {
    background: #EAE0D8;
    border: 1px solid #C9A99C;
    border-radius: 12px;
    width: 100%;
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    border-color: #595D74;
    transform: translateY(-3px);
}

.diferencial-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.diferencial-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.diferencial-name {
    font-family: 'Gilroy', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #595D74;
    line-height: 1.6;
    margin: 0;
}

/* ===== LOCALIZAÇÃO SECTION ===== */
.localizacao-section {
    padding: 100px 0;
    background-image: url('../assets/images/backgroundazulfaixa.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.localizacao-title {
    font-family: 'Benton Cond', 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #595D74;
    margin-bottom: 30px;
    text-align: left;
}

.localizacao-subtitle {
    font-family: 'Benton Modern', Georgia, serif;
    font-size: 73px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    color: #595D74;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.localizacao-subtitle em {
    font-style: italic;
}

.localizacao-info {
    margin-top: 40px;
}

.info-item-main {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.info-icon-main {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

.info-title-main {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #595D74;
    margin: 0;
    letter-spacing: 1px;
}

.info-address {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #595D74;
    margin: 0 0 25px 0;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.localizacao-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.localizacao-list li {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #595D74;
    letter-spacing: 1px;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.localizacao-list .list-icon-img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    object-fit: contain;
}

.localizacao-list .list-icon-spacer {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.localizacao-map {
    width: 100%;
}

.localizacao-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.localizacao-divider {
    width: 100%;
    height: 2px;
    background: #595D74;
    margin: 30px 0 25px 0;
}

.localizacao-description {
    font-family: 'Benton Modern', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 20px 40px;
}

/* ===== CONTATO SECTION ===== */
.contato-section {
    position: relative;
    padding: 20px 0 0 0; /* Ajustado conforme pedido */
    min-height: 20px;
    display: block; /* Remove flex center */
    overflow: hidden;
}

.contato-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contato-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; /* Foca na parte de baixo da onda */
}

.contato-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.contato-title-main {
    font-family: 'Benton Cond', 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    margin-top: 20px; /* Ajuste fino para alinhar com o topo do form */
}

/* Ajustes específicos para o formulário na seção de contato */
/* O formulário usa a classe .hero-form para herdar os estilos base da hero */
.contato-form-custom {
    /* Posicionamento */
    max-width: 580px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 50px;
    margin-top: 0;
    /* Remove background do formulário na seção contato */
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
}

/* Estilos brancos para o formulário de contato */
.contato-form-custom .form-group .icon img {
    filter: brightness(0) invert(1); /* Ícones brancos */
    opacity: 1;
}

.contato-form-custom .form-group .icon::after {
    color: rgba(255, 255, 255, 0.6); /* Barra separadora branca */
}

.contato-form-custom input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff;
}

.contato-form-custom input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contato-form-custom input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9) !important;
}

.contato-form-custom .checkbox-label {
    color: rgba(255, 255, 255, 0.8);
}

.contato-form-custom .btn-submit {
    background: #ffffff;
    color: #5a6178;
    border: none;
}

.contato-form-custom .btn-submit:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contato-form-custom .btn-submit svg {
    stroke: #5a6178;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #A5B2C7;
    padding: 50px 0 30px;
}

.footer-label {
    font-family: 'Gilroy', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
    max-height: 60px;
    width: auto;
}

.footer-logo:hover {
    opacity: 1;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-family: 'Gilroy', sans-serif;
}

/* ===== RESPONSIVE ADDITIONS ===== */

/* Tablet - 992px */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-form {
        max-width: 400px;
        padding: 30px;
    }
    
    .conceito-title {
        font-size: 42px;
    }
    
    .projetistas-grid {
        gap: 30px;
    }
    
    .localizacao-subtitle {
        font-size: 55px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* ===== HEADER MOBILE ===== */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    /* ===== HERO MOBILE ===== */
    .hero {
        min-height: auto;
        padding: 80px 0 0;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
        min-height: auto;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .hero-content .col-lg-6:first-child {
        order: 1;
    }
    
    .hero-content .col-lg-6:last-child {
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 30px;
    }
    
    .hero-label {
        text-align: center;
        font-size: 20px;
    }
    
    .hero-icon {
        margin: 8px auto 25px;
        display: block;
    }
    
    .hero-title,
    .hero-title-underline {
        text-align: center;
        font-size: 36px;
    }
    
    .hero-title-underline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-features {
        align-items: center;
        text-align: center;
    }
    
    .feature-text {
        text-align: center;
        font-size: 36px;
    }
    
    /* ===== HERO FORM MOBILE ===== */
    .hero-form-wrapper {
        padding-top: 30px;
    }
    
    .hero-form {
        max-width: 100%;
        padding: 25px 15px;
        margin: 0 auto;
    }
    
    .form-group {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 12px;
        align-items: center;
    }
    
    .form-group .icon {
        width: auto;
        min-width: 50px;
        justify-content: center;
        gap: 6px;
        flex-shrink: 0;
        padding-right: 0;
    }
    
    .form-group .icon::after {
        display: block;
        font-size: 20px;
    }
    
    .form-group .icon img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .form-group input {
        flex: 1;
        min-width: 0;
        font-size: 10px;
        padding: 10px 12px;
        height: 42px;
        letter-spacing: 1px;
    }
    
    .checkbox-group,
    .form-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .checkbox-label {
        max-width: 100%;
        text-align: left;
        font-size: 7px;
        line-height: 1.4;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 12px;
        height: 48px;
    }
    
    /* ===== CONCEITO MOBILE ===== */
    .conceito {
        padding: 60px 0;
    }
    
    .conceito-label {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .conceito-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    /* ===== PROJETISTAS MOBILE ===== */
    .projetistas-section {
        padding: 60px 0;
    }
    
    .projetistas-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .projetistas-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .projetista-card {
        max-width: 100%;
    }
    
    .projetista-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        min-height: auto;
    }
    
    .projetista-spacer {
        display: none;
    }
    
    .projetista-image {
        width: 280px;
        height: 390px;
        margin: 0 auto 5px;
    }

    .projetista-title-block {
        align-items: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 5px;
    }
    
    .projetista-label {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: center;
        margin-bottom: 2px;
    }
    
    .projetista-name {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: center;
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .projetista-description {
        text-align: center;
        font-size: 16px;
        padding: 0 10px;
        margin-top: 0;
    }
    
    /* ===== IMPLANTAÇÃO MOBILE ===== */
    .implantacao-section {
        padding: 60px 0;
    }
    
    .implantacao-list h3 {
        font-size: 20px;
        text-align: center;
    }
    
    .implantacao-items {
        columns: 1 !important;
    }
    
    .implantacao-items li {
        font-size: 16px;
        padding: 10px 0;
        text-align: left;
        justify-content: flex-start;
    }
    
    .implantacao-image {
        margin-top: 40px;
    }
    
    /* Bullets menores no mobile */
    .bullet {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    /* ===== GALERIA/LAZER MOBILE ===== */
    .galeria-section {
        padding: 60px 0;
    }
    
    .galeria-section h2 {
        font-size: 20px;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption h5 {
        font-size: 14px;
    }
    
    /* ===== PLANTAS MOBILE ===== */
    .plantas {
        padding: 60px 0 40px;
    }
    
    .plantas .container {
        padding: 0 15px; /* Espaçamento lateral no mobile */
    }
    
    .plantas-header .section-title {
        font-size: 20px;
        text-align: center;
    }
    
    .plantas-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .plantas-tab {
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .plantas-apartment-subtitle {
        font-size: 11px;
        text-align: center;
        letter-spacing: 2px;
    }
    
    .plantas-apartment-title {
        font-size: 22px;
        letter-spacing: 1px;
        text-align: center;
        line-height: 1.4;
    }
    
    .plantas-apartment-title .separator {
        margin: 0 8px;
    }
    
    .plantas-carousel-container {
        height: auto;
        margin-bottom: 60px;
    }
    
    .plantas-legenda {
        display: block !important;
        visibility: visible !important;
        font-size: 8px;
        color: #666666;
        margin-top: 10px;
    }
    
    /* ===== DIFERENCIAIS MOBILE ===== */
    .diferenciais-section {
        padding: 60px 0 50px;
        margin-top: 40px;
    }
    
    .diferenciais-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .diferenciais-section .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 20px;
    }
    
    .diferenciais-section .col-lg-4,
    .diferenciais-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .diferencial-card {
        height: auto;
        min-height: 180px;
        padding: 30px 20px;
        margin-bottom: 0;
    }
    
    .diferencial-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .diferencial-name {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 1.5px;
    }
    
    /* ===== LOCALIZAÇÃO MOBILE ===== */
    .localizacao-section {
        padding: 60px 0;
    }
    
    .localizacao-title {
        font-size: 20px;
        text-align: center;
    }
    
    .localizacao-subtitle {
        font-size: 38px;
        text-align: center;
        line-height: 1.1;
    }
    
    .localizacao-info {
        text-align: center;
        margin-top: 30px;
    }
    
    .info-item-main {
        justify-content: center;
    }
    
    .info-address {
        text-align: center;
        font-size: 16px;
    }
    
    .localizacao-list {
        text-align: center;
    }
    
    .localizacao-list li {
        justify-content: center;
        font-size: 16px;
    }
    
    .localizacao-map {
        margin-top: 40px;
    }
    
    .localizacao-divider {
        margin: 50px 0 40px;
    }
    
    .localizacao-description {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.6;
    }
    
    /* ===== CONTATO MOBILE ===== */
    .contato-section {
        padding: 40px 0 0;
    }
    
    .contato-section .row {
        flex-direction: column;
    }
    
    .contato-title-main {
        font-size: 36px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .contato-form-custom {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .contato-form-custom .form-group {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }
    
    .contato-form-custom .form-group .icon {
        width: auto;
        min-width: 50px;
        justify-content: center;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .contato-form-custom .form-group .icon::after {
        display: block;
        font-size: 20px;
    }
    
    .contato-form-custom .form-group .icon img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .contato-form-custom .form-group input {
        flex: 1;
        min-width: 0;
        font-size: 10px;
        padding: 10px 12px;
        height: 42px;
    }
    
    .contato-form-custom .checkbox-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .contato-form-custom .checkbox-label {
        text-align: left;
    }
    
    .contato-form-custom .btn-submit {
        width: 100%;
    }
    
    /* ===== FOOTER MOBILE ===== */
    .footer {
        padding: 40px 0 25px;
        text-align: center;
    }
    
    .footer .row {
        text-align: center;
    }
    
    .footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .footer .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    .footer-label {
        font-size: 14px !important;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
    
    .footer-logo {
        height: 90px !important;
        margin: 10px auto;
        display: block;
    }
    
    .footer .d-flex {
        flex-direction: column;
        gap: 25px !important;
        align-items: center;
    }
    
    .footer p.small {
        font-size: 16px !important;
        line-height: 1.6;
        margin-top: 20px;
        padding: 0 15px;
    }
}

/* Mobile pequeno - 480px */
@media (max-width: 480px) {
    /* ===== CONTAINER MOBILE ===== */
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title-underline {
        font-size: 28px;
    }
    
    .feature-text {
        font-size: 28px;
    }
    
    .conceito-title {
        font-size: 26px;
    }
    
    /* VIDA EM FRENTE AO MAR - 480px */
    .vida-mar-section {
        margin-top: 0;
    }
    
    .vida-mar-bg {
        top: 150px;
        height: calc(100% - 50px);
    }
    
    .vida-mar-image-wrapper {
        width: 90%;
        margin-top: 15px;
    }
    
    .vida-mar-image-wrapper img,
    .predio-image {
        border-radius: 16px;
    }
    
    .vida-mar-title {
        font-size: 55px;
        letter-spacing: 2px;
    }
    
    .vida-mar-description {
        font-size: 16px;
    }
    
    /* PROJETISTAS - 480px */
    .projetista-image {
        width: 240px;
    }
    
    .projetista-image img {
        width: 240px;
        height: 335px;
    }
    
    .projetista-name {
        font-size: 16px;
    }
    
    .projetista-description {
        font-size: 16px;
    }
    
    /* IMPLANTAÇÃO - 480px */
    .implantacao-items li {
        font-size: 16px;
    }
    
    .item-number {
        min-width: 25px;
    }
    
    /* LOCALIZAÇÃO - 480px */
    .localizacao-subtitle {
        font-size: 26px;
    }
    
    /* DIFERENCIAIS - 480px */
    .diferencial-card {
        min-height: 160px;
        padding: 25px 15px;
    }
    
    .diferencial-icon {
        width: 50px;
        height: 50px;
    }
    
    .diferencial-name {
        font-size: 16px;
    }
    
    /* PLANTAS - 480px */
    .plantas .container {
        padding: 0 10px;
    }
    
    .plantas-tab {
        padding: 8px 15px;
        font-size: 10px;
    }
    
    .plantas-carousel-container {
        height: 280px;
    }
    
    /* CARROSSEL LAZER - 480px */
    .lazer .carousel-container {
        height: 400px;
    }
    
    .carousel-item {
        height: 250px;
    }
    
    /* CONTATO - 480px */
    .contato-title-main {
        font-size: 32px;
        text-align: center;
    }
    
    /* FOOTER - 480px */
    .footer .d-flex {
        flex-direction: column;
        gap: 20px !important;
    }
    
    .footer-logo {
        height: 80px !important;
    }
    
    .footer-label {
        font-size: 12px !important;
    }
}

/* Mobile muito pequeno - 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title,
    .hero-title-underline {
        font-size: 24px;
    }
    
    .feature-text {
        font-size: 24px;
    }
    
    .hero-label {
        font-size: 16px;
    }
    
    .vida-mar-title {
        font-size: 28px;
    }
    
    .vida-mar-description {
        font-size: 16px;
    }
    
    .projetista-image {
        width: 200px;
    }
    
    .projetista-image img {
        width: 200px;
        height: 280px;
    }
    
    .plantas-tab {
        font-size: 9px;
        padding: 6px 10px;
    }
    
    .plantas-apartment-title {
        font-size: 16px;
    }
    
    .diferencial-card {
        min-height: 150px;
        padding: 20px 15px;
    }
    
    .diferencial-name {
        font-size: 16px;
    }
    
    .localizacao-subtitle {
        font-size: 22px;
    }
    
    .contato-title-main {
        font-size: 28px;
    }
    
    .lazer .carousel-container {
        height: 350px;
    }
    
    .plantas-carousel {
        height: 380px;
    }
}

/* ===== ANIMAÇÕES ===== */

/* Scroll Reveal - elementos que aparecem ao entrar na viewport */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes para efeito cascata */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Ripple Effect nos botões */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Parallax base */
.parallax-bg {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Hero Parallax */
.hero-background {
    will-change: transform;
}

/* Vida Mar Parallax */
.vida-mar-image-wrapper {
    will-change: transform;
}

/* Fade in animation para hero content */
.hero-text .hero-label,
.hero-text .hero-icon,
.hero-text .hero-title,
.hero-text .hero-title-underline,
.hero-text .hero-features {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-text .hero-label { animation-delay: 0.2s; }
.hero-text .hero-icon { animation-delay: 0.4s; }
.hero-text .hero-title { animation-delay: 0.6s; }
.hero-text .hero-title-underline { animation-delay: 0.8s; }
.hero-text .hero-features { animation-delay: 1s; }

.hero-form {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll para todo o site */
html {
    scroll-behavior: smooth;
}
