/* ==================== Reset e Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2b2b2b;
    line-height: 1.9;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== Header ==================== */
.header {
    background-color: #1a3a2e;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.6px;
    transition: opacity 0.25s, color 0.25s;
}

.nav-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 12px;
    }
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: auto;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    display: flex;
    overflow: hidden;
    background: #000;
}

.slide {
    position: relative;
    display: none;
    width: 100%;
    min-height: 600px;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    right: 5%;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    max-width: 90%;
    z-index: 2;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    margin: 8px 0;
    font-weight: 300;
}

.btn-hero {
    margin-top: 20px;
    padding: 12px 35px;
    background-color: #1a3a2e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background-color: #0f1f1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    width: 35px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .slide {
        min-height: 400px;
    }

    .slide img {
        height: 400px;
    }

    .slide-content {
        bottom: 5%;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .slide {
        min-height: 300px;
    }

    .slide img {
        height: 300px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 8px 20px;
        font-size: 12px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }
}

/* ==================== Section Title ==================== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #2e2e2e;
    font-weight: 400;
    letter-spacing: 0.8px;
}

/* ==================== Projeto Section ==================== */
.projeto {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.projeto-content {
    display: flex;
    justify-content: center;
}

.projeto-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

/* Full-bleed: faz a imagem ocupar toda a largura até as paredes */
.projeto-content.full-bleed {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

/* ==================== Info Section ==================== */
.info-section {
    background-color: #1a3a2e;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.info-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 300;
}

.info-text p {
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        gap: 20px;
    }

    .info-logo {
        height: 60px;
    }

    .info-text h3 {
        font-size: 24px;
    }

    .info-text p {
        font-size: 18px;
    }
}

/* ==================== Diferenciais Section ==================== */
.diferenciais {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.diferenciais-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
}

.diferenciais-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.diferenciais-list li {
    padding-left: 30px;
    position: relative;
    color: #444;
    font-weight: 300;
}

.diferenciais-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #1a3a2e;
}

@media (max-width: 768px) {
    .diferenciais-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .diferenciais-content {
        padding: 20px;
    }
}

/* ==================== Apartamentos Section ==================== */
.apartamentos {
    padding: 60px 20px;
    background-color: #f5f5f5;
    max-width: 1400px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 30px;
    border: 2px solid #1a3a2e;
    background-color: white;
    color: #1a3a2e;
    cursor: pointer;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.25s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.4px;
}

.tab-button.active {
    background-color: #c41e3a;
    color: white;
    border-color: #c41e3a;
}

.tab-button:hover {
    background-color: #1a3a2e;
    color: white;
}

.tab-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.gallery {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 500px;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.thumbnail:hover {
    border-color: #1a3a2e;
}

@media (max-width: 768px) {
    .tab-content {
        padding: 20px;
    }

    .gallery-image {
        max-height: 300px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-book {
    padding: 15px 40px;
    background-color: white;
    color: #c41e3a;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-content h3 {
        font-size: 24px;
    }
}

/* ==================== Ficha Técnica Accordion (Custom) ==================== */
.ficha-tecnica {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.ficha-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ficha-accordion {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ficha-accordion-item {
    border-bottom: 1px solid #e8e8e8;
}

.ficha-accordion-item:last-child {
    border-bottom: none;
}

.ficha-accordion-btn {
    width: 100%;
    padding: 20px 25px;
    background-color: #f9f9f9;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a3a2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ficha-accordion-btn:hover {
    background-color: #f0f0f0;
}

.ficha-accordion-btn.active {
    background-color: #1a3a2e;
    color: white;
}

.ficha-icon {
    font-size: 20px;
    min-width: 25px;
}

.ficha-title {
    flex: 1;
}

.ficha-toggle {
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
}

.ficha-accordion-btn.active .ficha-toggle {
    transform: rotate(45deg);
}

.ficha-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ficha-accordion-content.active {
    max-height: 500px;
}

.ficha-accordion-body {
    padding: 25px;
    background-color: white;
    line-height: 2;
    color: #333;
    font-size: 14px;
    font-weight: 300;
}

.ficha-accordion-body strong {
    color: #1a3a2e;
    font-weight: 600;
    display: block;
    margin-top: 12px;
    margin-bottom: 2px;
}

.ficha-accordion-body p {
    margin: 0;
}

@media (max-width: 768px) {
    .ficha-accordion-btn {
        padding: 15px 18px;
        font-size: 14px;
        gap: 12px;
    }

    .ficha-accordion-body {
        padding: 20px 18px;
        font-size: 13px;
    }

    .ficha-icon {
        font-size: 18px;
    }
}

/* ==================== Cadastro Section ==================== */
.cadastro-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.cadastro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.cadastro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a3a2e;
    margin-bottom: 15px;
    font-weight: 400;
}

.cadastro-content > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cadastro-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a3a2e;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3a2e;
    box-shadow: 0 0 0 3px rgba(26, 58, 46, 0.1);
    background-color: #f9fafb;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.form-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a3a2e;
}

.btn-submit {
    width: 100%;
    padding: 14px 30px;
    background-color: #1a3a2e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0f1f1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cadastro-download {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-box {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #c41e3a;
}

.download-box i {
    font-size: 48px;
    color: #c41e3a;
    margin-bottom: 15px;
}

.download-box h3 {
    font-size: 18px;
    color: #1a3a2e;
    margin-bottom: 10px;
    font-weight: 600;
}

.download-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-download {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c41e3a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download:hover {
    background-color: #a01726;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

@media (max-width: 1024px) {
    .cadastro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cadastro-download {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .cadastro-content h2 {
        font-size: 28px;
    }

    .cadastro-form {
        padding: 25px 20px;
    }

    .download-box {
        padding: 30px 20px;
    }

    .download-box i {
        font-size: 40px;
    }

    .download-box h3 {
        font-size: 16px;
    }
}

/* ==================== Footer ==================== */
.footer {
    background-color: #1a3a2e;
    color: #e8e8e8;
    padding: 40px 20px 20px;
    font-weight: 300;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e6e6e6;
    font-size: 15px;
}

.footer-section img {
    height: 20px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==================== WhatsApp Button ==================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-button img {
        width: 25px;
        height: 25px;
    }
}

/* ==================== Scrollbar ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a3a2e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d1f1a;
}

/* ==================== WhatsApp Float Button ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, filter 0.2s ease;
    object-fit: cover;
}

.whatsapp-icon-img:hover {
    transform: scale(1.1);
    filter: brightness(0.9);
}

@media (max-width: 600px) {
    .whatsapp-icon-img {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}

/* ==================== EZTEC Bubble Button ==================== */
.bolha-eztec {
    position: fixed;
    top: 30%;
    right: 0;
    background-color: #1a3a2e;
    color: #fff;
    padding: 20px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 90%, 95% 100%, 0 100%);
    box-shadow: -4px 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: flutuar 2s ease-in-out infinite alternate;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bolha-eztec:hover {
    background-color: #0f1f1a;
    transform: scale(1.03);
    color: #fff;
}

@keyframes flutuar {
    from {
        transform: translateY(-5px);
    }
    to {
        transform: translateY(5px);
    }
}

@media (max-width: 768px) {
    .bolha-eztec {
        font-size: 1rem;
        padding: 16px 20px;
        top: 35%;
    }
}

@media (max-width: 480px) {
    .bolha-eztec {
        font-size: 0.95rem;
        padding: 14px 18px;
        top: 38%;
    }
}
