/* Declarações de fontes locais */
@font-face {
    font-family: 'Myriad Pro';
    src: url('font/MYRIADPRO-REGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('font/MyriadPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('font/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('font/MYRIADPRO-SEMIBOLDIT.OTF') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('font/MYRIADPRO-BOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('font/MYRIADPRO-BOLDIT.OTF') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Myriad Pro Cond';
    src: url('font/MYRIADPRO-COND.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro Cond';
    src: url('font/MYRIADPRO-CONDIT.OTF') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Myriad Pro Cond';
    src: url('font/MYRIADPRO-BOLDCOND.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro Cond';
    src: url('font/MYRIADPRO-BOLDCONDIT.OTF') format('opentype');
    font-weight: 700;
    font-style: italic;
}

body {
    font-family: 'Myriad Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('img/bg.jpg');
    background-size: auto;          /* Mantém o tamanho original da imagem */
    background-position: top left;  /* Começa do canto superior esquerdo */
    background-repeat: repeat;      /* Repete a imagem em ambas direções */
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Overlay escuro opcional para melhorar legibilidade */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Ajuste a opacidade conforme necessário */
    pointer-events: none;
    z-index: 0;
}
.nexus {
    background-image: url('img/LogoNexus710.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}
.lyber {
    background-image: url('img/logoLiber.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}
.lumini {
    background-image: url('img/Logolumini.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}

.auster {
    background-image: url('img/LogoAuster.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}

.reserva-22 {
    background-image: url('img/LogoReserva22.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}

.mykonos {
    background-image: url('img/LogoMykonos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}

.granreserva {
    background-image: url('img/LogoGranReserva.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}

.celebrare {
    background-image: url('img/LogoCelebrare.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}

.reservaorla {
    background-image: url('img/LogoReservaOrla.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    margin: 0 auto;
    margin-top: 20px;
}

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   PRIMEIRA SEÇÃO - HERO
   ======================================== */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.left-content {
    padding-right: 40px;
}

/* Container para logo e título alinhados */
.logo-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Logo Dia B */
.logo-container {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: block;
    width: 250px;
    height: 250px;
    background-image: url('img/logo-dia-b.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

.dia-box {
    background: transparent;
    border: 3px solid #00d9ff;
    color: #00d9ff;
    padding: 8px 20px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    margin-right: -15px;
    z-index: 2;
    position: relative;
}

.b-letter {
    font-size: 110px;
    font-weight: 700;
    color: #ff00a0;
    text-shadow: 0 0 30px #ff00a0;
    line-height: 0.8;
    margin-left: -5px;
}

/* Títulos */
.hero-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 1px;
    margin: 0;
}

.hero-title .highlight {
    color: #00d9ff;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #ffffff;
    padding-left: 100px;
}

.hero-description {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    padding-left: 100px;
}

.text-cyan {
    color: #00d9ff;
    font-weight: 600;
}

/* Formulário */
.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Formulário com elemento decorativo externo */
.form-wrapper {
    background: #000000;
    border-radius: 20px;
    padding: 100px 40px 50px 40px; /* Aumentado padding-top para dar espaço ao elemento */
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(0, 217, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: visible; /* Importante: permite que elementos filhos saiam dos limites */
}

/* Elemento decorativo posicionado acima e fora do formulário */
.form-wrapper::before {
    content: '';
    position: absolute;
    top: -90px; /* Posicionado acima do formulário */
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background-image: url('img/elemento01.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 10;
    
    /* Efeito de glow azul ciano */
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8)) 
            drop-shadow(0 0 40px rgba(0, 217, 255, 0.5))
            drop-shadow(0 0 60px rgba(0, 217, 255, 0.3));
}

.benefits-waves::before {
    content: '';
    position: absolute;
    top: -40px; /* Posicionado acima do formulário */
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background-image: url('img/elemento01.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 0;
    
    /* Efeito de glow azul ciano */
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8)) 
            drop-shadow(0 0 40px rgba(0, 217, 255, 0.5))
            drop-shadow(0 0 60px rgba(0, 217, 255, 0.3));
}

/* Alternativa: Se você quiser o elemento como div separado (adicionar no HTML) */
.waves-decoration-form {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background-image: url('img/elemento01.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 10;
    
    /* Efeito de glow azul ciano */
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8)) 
            drop-shadow(0 0 40px rgba(0, 217, 255, 0.5))
            drop-shadow(0 0 60px rgba(0, 217, 255, 0.3));
}

/* Ajuste no container pai para garantir que o overflow seja visível */
.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 60px; /* Espaço extra para o elemento decorativo */
}

#lead-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-group label {
    flex: 0 0 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: right;
}

.form-group input {
    flex: 1;
    background: rgba(60, 60, 60, 0.5);
    border: none;
    padding: 12px 15px;
    color: #00d9ff;
    font-size: 14px;
    border-radius: 4px;
}

.form-group input::placeholder {
    color: rgba(0, 217, 255, 0.4);
}

.form-group input:focus {
    outline: none;
    background: rgba(60, 60, 60, 0.8);
}

.cta-button {
    background: linear-gradient(135deg, #5e1284, #9920d5);
    color: #ffffff;
    border: none;
    padding: 8px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 0, 160, 0.4);
    border-style: solid;
    border-width: 2px;
    border-color: #e5b7fd;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 160, 0.6);
}

#lead-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-group label {
    flex: 0 0 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: right;
}

.form-group input {
    flex: 1;
    background: rgba(60, 60, 60, 0.5);
    border: none;
    padding: 12px 15px;
    color: #00d9ff;
    font-size: 14px;
    border-radius: 4px;
}

.form-group input::placeholder {
    color: rgba(0, 217, 255, 0.4);
}

.form-group input:focus {
    outline: none;
    background: rgba(60, 60, 60, 0.8);
}

.cta-button {
    background: linear-gradient(135deg, #5e1284, #9920d5);
    color: #ffffff;
    border: none;
    padding: 8px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 0, 160, 0.4);
    border-style: solid;
    border-width: 2px;
    border-color: #e5b7fd;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 160, 0.6);
}

/* ========================================
   SEGUNDA SEÇÃO - SOBRE
   ======================================== */
.about-section {
    display: flex;
    align-items: center;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.neon-line-top {
    width: 300px;
    height: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), #e5b7fd);
    margin: 0 auto 60px;
    box-shadow: 0px 0px 30px 7px #9920d5;
}

.about-title {
    font-size: 28px;
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #ffffff;
    padding: 0px 100px;
}
strong {
    font-weight: 700;

}

.about-description {
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 0px 110px;
}

.about-description strong {
    font-weight: 700;
    color: #ffffff;
}

.black-friday-text {
    font-size: 15px;
    color: #00d9ff;
    font-weight: 600;
    margin-bottom: 50px;
}

.date-box {
    display: inline-block;
    padding: 20px 20px;
    border: 3px solid #e1a9cc;
    border-radius: 20px;
    background: #000000;
    margin-bottom: 60px;
    box-shadow: 0 0 30px rgba(255, 0, 160, 0.5);
}

.date-box span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.location-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.location-icon {
    width: 60px;
    height: 80px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 0, 160, 0.5));
}

.location-icon svg {
    width: 100%;
    height: 100%;
}

.location-line {
    height: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.location-line.left {
    right: 50%;
    width: 300px;
    background: linear-gradient(to left, #ff00a0, transparent);
    margin-right: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), #e5b7fd);
    box-shadow: 0px 0px 30px 7px #9920d5;
}

.location-line.right {
    left: 50%;
    right: 0;
    width: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), #e5b7fd);
    box-shadow: 0px 0px 30px 7px #9920d5;
    margin-left: 40px;
}

/* ========================================
   TERCEIRA SEÇÃO - EMPREENDIMENTOS
   ======================================== */
.properties-section {
    padding: 30px 0 60px;
}

.properties-content {
    text-align: center;
}

.properties-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.properties-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 4px;
    margin-top: 10px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

/* Slide individual */
.property-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

/* Card do empreendimento */
.property-card {
    background: transparent;
    border-radius: 20px;
    overflow: visible;
}

/* Container da imagem */
.card-image-container {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
}

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

/* Box de informações */
.card-info-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    padding: 12px 15px;
    border-radius: 8px;
    text-align: left;
    z-index: 5;
}

.info-size {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.info-light {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.info-rooms {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
    font-weight: 400;
    font-style: italic;
}

/* Ícone Waves */
.waves-icon {
    position: absolute;
    bottom: -25px;
    left: 15px;
    width: 50px;
    height: 60px;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.8)) 
            drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.waves-icon svg {
    width: 100%;
    height: 100%;
}

/* Bordas neon nos cantos */
.corner-border {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 3;
}

.corner-border.top-left {
    top: 0;
    left: 0;
    border-top: 3px solid #00d9ff;
    border-left: 3px solid #00d9ff;
    border-top-left-radius: 20px;
    box-shadow: 
        -2px -2px 15px rgba(0, 217, 255, 0.6),
        inset 2px 2px 10px rgba(0, 217, 255, 0.3);
}

.corner-border.top-right {
    top: 0;
    right: 0;
    border-top: 3px solid #00d9ff;
    border-right: 3px solid #00d9ff;
    border-top-right-radius: 20px;
    box-shadow: 
        2px -2px 15px rgba(0, 217, 255, 0.6),
        inset -2px 2px 10px rgba(0, 217, 255, 0.3);
}

.corner-border.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 3px solid #00d9ff;
    border-left: 3px solid #00d9ff;
    border-bottom-left-radius: 20px;
    box-shadow: 
        -2px 2px 15px rgba(0, 217, 255, 0.6),
        inset 2px -2px 10px rgba(0, 217, 255, 0.3);
}

.corner-border.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #00d9ff;
    border-right: 3px solid #00d9ff;
    border-bottom-right-radius: 20px;
    box-shadow: 
        2px 2px 15px rgba(0, 217, 255, 0.6),
        inset -2px -2px 10px rgba(0, 217, 255, 0.3);
}

/* Bordas magenta */
.corner-border.magenta.top-left {
    border-top-color: #ff00a0;
    border-left-color: #ff00a0;
    box-shadow: 
        -2px -2px 15px rgba(255, 0, 160, 0.6),
        inset 2px 2px 10px rgba(255, 0, 160, 0.3);
}

.corner-border.magenta.top-right {
    border-top-color: #ff00a0;
    border-right-color: #ff00a0;
    box-shadow: 
        2px -2px 15px rgba(255, 0, 160, 0.6),
        inset -2px 2px 10px rgba(255, 0, 160, 0.3);
}

.corner-border.magenta.bottom-left {
    border-bottom-color: #ff00a0;
    border-left-color: #ff00a0;
    box-shadow: 
        -2px 2px 15px rgba(255, 0, 160, 0.6),
        inset 2px -2px 10px rgba(255, 0, 160, 0.3);
}

.corner-border.magenta.bottom-right {
    border-bottom-color: #ff00a0;
    border-right-color: #ff00a0;
    box-shadow: 
        2px 2px 15px rgba(255, 0, 160, 0.6),
        inset -2px -2px 10px rgba(255, 0, 160, 0.3);
}

/* Nome do empreendimento */
.card-name {
    padding: 25px 20px 20px;
    text-align: center;
}

.name-prefix {
    display: block;
    font-size: 12px;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    font-weight: 400;
}

.name-main {
    display: block;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    text-transform: uppercase;
}

.nexus-x {
    color: #00d9ff;
    font-size: 28px;
    margin-right: 8px;
    font-weight: 300;
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.8));
}

.nexus-name {
    text-transform: lowercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.name-number {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Botões do Carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: #000000;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

/* Linha neon inferior */
.neon-line-bottom {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff00a0, #ff00a0, transparent);
    margin-top: 40px;
    box-shadow: 0 0 20px rgba(255, 0, 160, 0.8),
                0 0 40px rgba(255, 0, 160, 0.5);
}

/* ========================================
   RESPONSIVIDADE DO CAROUSEL
   ======================================== */
@media (max-width: 1024px) {
    .carousel-container {
        padding: 0 50px;
    }
    
    .property-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .carousel-track {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 15px;
    }
    
    .property-slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 50px;
    }
    
    .carousel-track {
        gap: 0;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .card-image-container {
        height: 350px;
    }
    
    .waves-icon {
        bottom: -30px;
        left: 10px;
        width: 60px;
        height: 70px;
    }
    
    .card-name {
        padding: 35px 20px 20px;
    }
    
    .name-main {
        font-size: 28px;
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .properties-title {
        font-size: 18px;
    }
    
    .properties-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .property-slide {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
    
    .card-image-container {
        height: 300px;
    }
    
    .card-info-box {
        padding: 10px 12px;
    }
    
    .info-size {
        font-size: 14px;
    }
    
    .info-rooms {
        font-size: 11px;
    }
    
    .name-main {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .corner-border {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   QUARTA SEÇÃO - BENEFÍCIOS
   ======================================== */
.benefits-section {
    padding: 100px 0;
    position: relative;
}

.benefits-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px 60px;
    align-items: center;
}

.benefits-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding: 0px 70px 70px 70px;
    line-height: 1.6em;
}

.benefits-title .text-cyan {
    color: #00d9ff;
    font-weight: 600;
}

.benefits-right {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
}

.benefits-waves {
    position: absolute;
    top: -30px;
    right: 0;
    width: 60px;
    height: 80px;
    z-index: 2;
}

.benefits-waves svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px #00d9ff);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    font-family: "Montserrat", sans-serif;
    z-index: 10;
    position: relative;
}

.benefit-card {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 3px solid #ff00a0;
    transition: all 0.3s ease;
}

.benefit-card.white {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 30px rgba(255, 0, 160, 0.4);
}

.benefit-card.black {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 0, 160, 0.4);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 160, 0.6);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    margin: 0;
}

.benefit-card p {
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.8;
    line-height: 1.4;
}

.benefits-cta {
    text-align: left;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.btn-participate {
    background: transparent;
    color: #ffffff;
    border: 3px solid #e1a9cc;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(255, 0, 160, 0.5);
    margin-left: 70px;
}

.btn-participate:hover {
    background: #ff00a0;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 160, 0.6);
}
.brasal-logo {
    display: block;
    width: 150px;
    height: 79px;
    background-image: url('img/logo-brasal.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .left-content {
        padding-right: 0;
        text-align: center;
    }
    
    /* Ajustes para o logo e título alinhados */
    .logo-title-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    /* Benefits section - mantém layout lado a lado em tablet */
    .benefits-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px 40px;
    }
    
    .benefits-title {
        text-align: left;
    }
    
    .benefits-cta {
        text-align: left;
    }
}

@media (max-width: 768px) {
    /* Ajustes para o logo e título alinhados em tablets */
    .logo-title-wrapper {
        gap: 30px;
    }
    
    .logo {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .dia-box {
        font-size: 32px;
        padding: 6px 16px;
    }
    
    .b-letter {
        font-size: 80px;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .form-group {
        align-items: stretch;
        gap: 8px;
    }
    
    .form-group label {
        text-align: left;
    }
    
    .about-title {
        font-size: 22px;
        letter-spacing: 4px;
    }
    
    /* Benefits section mobile - MODIFICADO */
    .benefits-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .benefits-title {
        text-align: center;
        order: 1;
    }
    
    .benefits-right {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        position: relative;
    }
    
    .benefits-waves {
        display: block;
        position: absolute;
        top: -60px;
        right: -10px;
        width: 50px;
        height: 65px;
    }
    
    .benefits-cta {
        text-align: center;
        margin-top: 20px;
        order: 3;
    }
    
    /* MODIFICADO: Manter grid 2x2 em mobile com cards quadrados */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .benefit-card {
        aspect-ratio: 1 / 1;
        padding: 15px;
    }
    
    .benefit-card h3 {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .benefit-card p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    /* Ajustes para o logo e título alinhados */
    .logo-title-wrapper {
        align-items: flex-start;
        gap: 20px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 26px;
        padding-left: 0px;
    }
    .hero-description {
    padding-left: 0px;
    font-size: 14px;
    padding: 0px 20px;
    }
    
    .property-card {
        width: 100%;
        max-width: 340px;
    }
    
    /* Benefits section mobile 480px - MODIFICADO */
    .benefits-right {
        max-width: 320px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .benefit-card {
        aspect-ratio: 1 / 1;
        padding: 12px 8px;
        border-radius: 15px;
    }
    
    .benefit-card h3 {
        font-size: 12px;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }
    
    .benefit-card p {
        font-size: 9px;
        margin-top: 8px;
    }
}

/* ========================================
   QUINTA SEÇÃO - MAPA/LOCALIZAÇÕES
   ======================================== */
.map-section {
    min-height: 400px;
    background: #000000;
    display: flex;
    align-items: stretch;
    overflow: hidden; /* CORREÇÃO: Previne overflow horizontal */
}

.map-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* CORREÇÃO: Previne overflow horizontal */
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

/* Lado esquerdo - Localizações */
.locations-side {
    background: #000000;
    padding: 60px 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.location-bullet {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    margin-top: -5px;
}

.location-text h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.location-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Lado direito - Mapa */
.map-side {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    overflow: hidden; /* CORREÇÃO: Previne overflow horizontal */
}

/* CORREÇÃO: Tornar iframe do Google Maps responsivo */
.map-side iframe {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-title {
    font-size: 72px;
    font-weight: 300;
    color: #000000;
    letter-spacing: 20px;
    text-transform: uppercase;
}

/* Responsividade para seção Mapa */
@media (max-width: 1024px) {
    .locations-side {
        padding: 50px 60px;
    }
    
    .map-title {
        font-size: 60px;
        letter-spacing: 15px;
    }
}

@media (max-width: 768px) {
    .map-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .locations-side {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .map-side {
        min-height: 300px;
    }
    
    /* CORREÇÃO: Altura do iframe em tablet */
    .map-side iframe {
        min-height: 300px;
    }
    
    .map-title {
        font-size: 48px;
        letter-spacing: 10px;
    }
    
    .location-text h3 {
        font-size: 16px;
    }
    
    .location-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .locations-side {
        padding: 30px 20px; /* CORREÇÃO: Reduzido padding lateral de 80px para 20px */
        gap: 25px;
    }
    
    .location-item {
        gap: 15px;
    }
    
    .location-bullet {
        font-size: 20px;
    }
    
    .location-text h3 {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .location-text p {
        font-size: 12px;
    }
    
    .map-side {
        min-height: 250px;
    }
    
    /* CORREÇÃO: Altura do iframe em mobile */
    .map-side iframe {
        min-height: 250px;
    }
    
    .map-title {
        font-size: 36px;
        letter-spacing: 8px;
    }
}

/* ========================================
   SEXTA SEÇÃO - FOOTER/RODAPÉ
   ======================================== */
.footer-section {
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Textura de pontos no background */
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

/* Logo Dia B no footer */
.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.dia-box-footer {
    background: transparent;
    border: 3px solid #00d9ff;
    color: #00d9ff;
    padding: 6px 18px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(0, 217, 255, 0.8),
        0 0 40px rgba(0, 217, 255, 0.5);
    margin-right: -12px;
    z-index: 2;
    position: relative;
    animation: pulse-cyan-footer 2s ease-in-out infinite;
}

.b-letter-footer {
    font-size: 90px;
    font-weight: 700;
    color: #ff00a0;
    text-shadow: 
        0 0 30px #ff00a0,
        0 0 60px #ff00a0,
        0 0 90px rgba(255, 0, 160, 0.5);
    line-height: 0.8;
    margin-left: -5px;
    filter: drop-shadow(0 0 20px #ff00a0);
    animation: pulse-magenta-footer 2s ease-in-out infinite;
}

@keyframes pulse-cyan-footer {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(0, 217, 255, 0.8),
            0 0 40px rgba(0, 217, 255, 0.5);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(0, 217, 255, 1),
            0 0 60px rgba(0, 217, 255, 0.8);
    }
}

@keyframes pulse-magenta-footer {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 20px #ff00a0);
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 30px #ff00a0);
    }
}

/* Tagline */
.footer-tagline p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-tagline .highlight-cyan {
    color: #00d9ff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Contato */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

.contact-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff00a0;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 0, 160, 0.3),
        inset 0 0 15px rgba(255, 0, 160, 0.1);
}

.contact-button:hover {
    background: rgba(255, 0, 160, 0.1);
    box-shadow: 
        0 0 30px rgba(255, 0, 160, 0.5),
        inset 0 0 20px rgba(255, 0, 160, 0.2);
    transform: translateY(-2px);
}

.phone-number {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Logo Brasal */
.brasal-logo-footer {
    margin: 30px 0;
    width: 200px;
    height: 60px;
    opacity: 0.9;
}

.brasal-logo-footer svg {
    width: 100%;
    height: 100%;
}

/* Disclaimer */
.footer-disclaimer {
    max-width: 800px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.footer-disclaimer p {
    font-size: 10px;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 200;
}

/* Responsividade Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0px 30px;
    }
    
    .dia-box-footer {
        font-size: 28px;
        padding: 5px 14px;
    }
    
    .b-letter-footer {
        font-size: 70px;
    }
    
    .footer-tagline p {
        font-size: 16px;
    }
    
    .contact-button {
        font-size: 12px;
        padding: 10px 24px;
    }
    
    .phone-number {
        font-size: 18px;
    }
    
    .footer-disclaimer p {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .dia-box-footer {
        font-size: 24px;
        padding: 4px 12px;
    }
    
    .b-letter-footer {
        font-size: 60px;
    }
    
    .footer-tagline p {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .brasal-logo-footer {
        width: 160px;
        height: 48px;
    }
}
@media (max-width: 768px) {
    .logo-title-wrapper {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .logo-container {
        flex-shrink: 0;
        min-width: 80px;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .hero-title {
        font-size: 18px;
        line-height: 1.1;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
        height: 200px;
    }
    
    .hero-title {
        text-align: left;
        font-size: 22px;
    }
}
/* Responsividade do Formulário */
@media (max-width: 768px) {
    .form-group label {
        flex: 0 0 auto;
        min-width: 80px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    #lead-form {
        gap: 15px;
    }
    
    .form-group label {
        flex: 0 0 auto;
        min-width: 60px;
        font-size: 11px;
        letter-spacing: 0.5px;
        padding-top: 10px;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .form-wrapper {
        padding: 80px 20px 40px 20px;
    }
    .cta-button {
    font-size: 10px;
}
    .location-line.left {
    right: 50%;
    left: 0;
    width: 150px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    margin-right: 40px;
}
.location-line.right {
    left: 50%;
    right: 0;
    width: 150px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    margin-left: 40px;
}
.benefits-title {
    font-size: 20px;
    padding: 0px 30px 80px 30px;
}
.btn-participate {
    padding: 10px 50px;
    font-size: 14px;
    border: 3px solid #e1a9cc;
    box-shadow: 0 0 30px rgba(255, 0, 160, 0.5);
    margin-left: 0px;
}
.about-description {
    padding: 0px 0px;
}
.about-title {
    padding: 0px 0px;
}
span.properties-subtitle {
    font-size: 20px;
}
.benefits-section {
    padding: 0px 0px 60px 0px;
}

}
