:root {
    /* Paleta Bege e Branco */
    --bege-light: rgb(245, 241, 235);
    --bege-medium: rgb(232, 227, 219);
    --bege-dark: rgb(201, 185, 155);
    --bege-accent: rgb(184, 160, 130);
    --white: rgb(255, 255, 255);
    --light-gray: rgb(248, 249, 250);
    
    /* Cores principais */
    --primary-color: rgb(201, 185, 155);
    --primary-dark: rgb(184, 160, 130);
    --secondary-color: rgb(184, 160, 130);
    --success-color: rgb(201, 185, 155);
    --dark-color: rgb(58, 58, 58);
    
    /* Cor dourada para destaques */
    --gold-color: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    
    /* Gradientes bege */
    --gradient-primary: linear-gradient(135deg, rgb(232, 227, 219) 0%, rgb(201, 185, 155) 100%);
    --gradient-blue: linear-gradient(135deg, rgb(245, 241, 235) 0%, rgb(232, 227, 219) 50%, rgb(201, 185, 155) 100%);
    --gradient-success: linear-gradient(135deg, rgb(201, 185, 155) 0%, rgb(184, 160, 130) 100%);
    
    /* Sombras suaves */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 0.95rem;
    /* Mobile First - estilos base para mobile */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

.display-3 {
    font-size: 1.75rem;
}

.display-4 {
    font-size: 1.5rem;
}

.display-5 {
    font-size: 1.25rem;
}

.lead {
    font-size: 1rem;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    color: rgb(58, 58, 58) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: rgb(201, 185, 155);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    transform: translateX(-50%) scaleX(1);
}

.btn-whatsapp-nav {
    background: var(--gradient-success);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 185, 155, 0.4);
}

.hero-section {
    background: linear-gradient(135deg, rgb(245, 241, 235) 0%, rgb(232, 227, 219) 50%, rgb(255, 255, 255) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 30px;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}

.hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.hero-section .row {
    align-items: stretch;
    min-height: auto;
    padding-top: 0.5rem;
}

.hero-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section .col-lg-6:first-child {
    padding-right: 1rem;
    padding-top: 0.5rem;
}

.hero-section .col-lg-6:last-child {
    padding-left: 1rem;
}

.hero-image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 185, 155, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(201, 185, 155, 0.3);
    margin-bottom: 0.75rem;
    margin-top: 0;
    animation: slideInLeft 0.8s ease-out;
}

.badge-text {
    color: rgb(58, 58, 58);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
    margin-bottom: 1rem !important;
}

.text-gradient {
    background: linear-gradient(135deg, rgb(201, 185, 155) 0%, rgb(184, 160, 130) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    animation: fadeInUp 1.2s ease-out;
    margin-bottom: 1.5rem !important;
}

.hero-features {
    animation: fadeInUp 1.4s ease-out;
    margin-bottom: 1.5rem !important;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: rgb(58, 58, 58);
    margin-bottom: 0.5rem !important;
}

.feature-item:hover {
    background: rgba(255,255,255,0.8);
    transform: translateX(10px);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-success);
    border-radius: 50%;
    font-size: 1.5rem;
    color: rgb(58, 58, 58);
    flex-shrink: 0;
}

.hero-buttons {
    animation: fadeInUp 1.6s ease-out;
}

.btn-hero-primary {
    background: var(--gradient-success);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 185, 155, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.75rem;
    margin-right: 0.75rem;
    color: rgb(58, 58, 58);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 185, 155, 0.4);
    color: rgb(58, 58, 58);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(201, 185, 155, 0.5);
    color: rgb(58, 58, 58);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    color: rgb(58, 58, 58);
    border-color: rgba(201, 185, 155, 0.8);
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out;
    padding: 20px;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 500px;
    aspect-ratio: 4/5;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(245,241,235,0.1) 100%);
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.5rem;
    color: rgb(201, 185, 155);
}

.badge-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    color: rgb(58, 58, 58);
    font-size: 2rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    display: block;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 185, 155, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stats-section {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.stat-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(201, 185, 155) 0%, rgb(184, 160, 130) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.about-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
}

.stat-box-about {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(201, 185, 155, 0.2);
}

.stat-box-about:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 185, 155, 0.4);
}

.stat-icon-about {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgb(245, 241, 235) 0%, rgb(232, 227, 219) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgb(201, 185, 155);
}

.stat-number-about {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(201, 185, 155) 0%, rgb(184, 160, 130) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.about-section .row {
    align-items: stretch;
}

.about-section .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.about-image-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-success);
    color: rgb(58, 58, 58);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Tag dourada para seção de destaque */
.empreendimento-destaque .section-tag {
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.about-image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    height: 100%;
}

.about-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-image-frame:hover .about-image {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.about-badge i {
    font-size: 2.5rem;
    color: rgb(201, 185, 155);
}

.about-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.about-badge small {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.highlight-box-modern {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.highlight-box-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgb(201, 185, 155);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(232, 227, 219) 0%, rgb(201, 185, 155) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: rgb(58, 58, 58);
}

.form-section {
    background: linear-gradient(135deg, rgb(245, 241, 235) 0%, rgb(232, 227, 219) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.form-wrapper {
    position: relative;
    z-index: 1;
}

.form-header {
    color: rgb(58, 58, 58);
}

.form-header h2 {
    color: rgb(58, 58, 58);
}

.form-header .text-muted {
    color: rgba(58, 58, 58, 0.7) !important;
}

.form-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 1.5px solid #e9ecef;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: rgb(201, 185, 155);
    box-shadow: 0 0 0 0.2rem rgba(201, 185, 155, 0.15);
}

.btn-form-submit {
    background: linear-gradient(135deg, rgb(232, 227, 219) 0%, rgb(201, 185, 155) 100%);
    border: none;
    border-radius: 8px;
    color: rgb(58, 58, 58);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 185, 155, 0.4);
    color: rgb(58, 58, 58);
}

.properties-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.property-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.badge-new {
    background: var(--gradient-success);
    color: rgb(58, 58, 58);
}

.badge-featured {
    background: linear-gradient(135deg, rgb(232, 227, 219) 0%, rgb(201, 185, 155) 100%);
    color: rgb(58, 58, 58);
}

.badge-sale {
    background: linear-gradient(135deg, rgb(201, 185, 155) 0%, rgb(184, 160, 130) 100%);
    color: rgb(58, 58, 58);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 185, 155, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.btn-overlay {
    background: rgb(58, 58, 58);
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.property-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-location {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.property-features span {
    color: var(--secondary-color);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.property-description {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.property-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(201, 185, 155) 0%, rgb(184, 160, 130) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-property-whatsapp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-success);
    border: none;
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-property-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(201, 185, 155, 0.4);
    color: white;
}

.testimonials-section {
    background: white;
    padding: 5rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgb(201, 185, 155);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    color: rgb(201, 185, 155);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--secondary-color);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-quote {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(201, 185, 155, 0.2);
    line-height: 1;
}

.faq-section {
    padding: 3rem 0;
}

.faq-section .accordion-button {
    background: white;
    color: var(--dark-color);
    border: none;
    box-shadow: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(245, 241, 235, 0.5) 0%, rgba(232, 227, 219, 0.5) 100%);
    color: rgb(201, 185, 155);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-body {
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.faq-section .accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
}

.motivos-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
}

.motivo-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.motivo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgb(201, 185, 155);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgb(232, 227, 219) 0%, rgb(201, 185, 155) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgb(58, 58, 58);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.icon-wrapper i {
    display: block !important;
    line-height: 1;
    visibility: visible !important;
    opacity: 1 !important;
    color: rgb(58, 58, 58) !important;
    font-size: inherit;
    width: 1em;
    height: 1em;
}

.icon-wrapper i::before {
    display: inline-block;
    font-family: "bootstrap-icons" !important;
}

.icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.areas-section {
    background: linear-gradient(135deg, rgb(232, 227, 219) 0%, rgb(201, 185, 155) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.areas-section .container {
    position: relative;
    z-index: 1;
}

.area-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.3);
}

.area-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: white;
}

.area-card i {
    color: rgb(58, 58, 58);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cta-section {
    background: linear-gradient(135deg, rgb(245, 241, 235) 0%, rgb(232, 227, 219) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.btn-cta-primary {
    background: var(--gradient-success);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 185, 155, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.75rem;
    margin-right: 0.75rem;
    color: rgb(58, 58, 58);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 185, 155, 0.4);
    color: rgb(58, 58, 58);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(201, 185, 155, 0.5);
    color: rgb(58, 58, 58);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    color: rgb(58, 58, 58);
    border-color: rgba(201, 185, 155, 0.8);
}

.cta-features {
    margin-top: 3rem;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgb(58, 58, 58);
    font-weight: 500;
}

.cta-feature-item i {
    font-size: 1.5rem;
    color: rgb(201, 185, 155);
}

footer {
    background: #1a1a1a;
    padding: 3rem 0 1.5rem;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: rgb(201, 185, 155) !important;
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-cta-primary,
.btn-cta-secondary {
    width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 1rem 30px;
    }
    
    .hero-section .row {
        padding-top: 0.25rem;
    }
    
    .hero-section .col-lg-6:first-child {
        padding-top: 0.25rem;
        padding-right: 0;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem !important;
    }
    
    .hero-features {
        margin-bottom: 1rem !important;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 1rem;
    }
    
    .icon-wrapper {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-section .row {
        min-height: auto;
    }
    
    .form-section {
        padding: 3rem 0;
    }
    
    .form-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-control, .form-select {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .btn-form-submit {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) {
    .form-section {
        padding: 4rem 0;
    }
    
    .form-card {
        padding: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
    }
    
    .display-3 {
        font-size: 3rem;
    }
    
    .display-4 {
        font-size: 2.25rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

.building-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15) !important;
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.25rem;
        line-height: 1.2;
    }
    
    .display-3 {
        font-size: 3.5rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Estilos para o Condomínio Império da Mata */
.empreendimento-destaque {
    position: relative;
}

/* Cor dourada para elementos de destaque */
.text-gold {
    color: var(--gold-color) !important;
}

.bg-gold {
    background-color: var(--gold-color) !important;
}

.badge-featured {
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%) !important;
    color: white !important;
}

.hero-badge .badge-text {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 134, 11, 0.15) 100%);
    border: 1px solid var(--gold-color);
}

.stat-number-about,
.fs-2.fw-bold.text-primary,
.fs-3.fw-bold.text-primary {
    color: var(--gold-color) !important;
}

.bi-star-fill.text-warning,
.bi-trophy-fill.text-warning {
    color: var(--gold-color) !important;
}

.floating-badge {
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp-empreendimento {
    background: #25D366 !important;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-empreendimento:hover {
    background: #20ba5a !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.btn-whatsapp-empreendimento:active {
    transform: translateY(-1px);
}

.empreendimento-gallery img {
    transition: transform 0.3s ease;
}

.empreendimento-gallery img:hover {
    transform: scale(1.05);
}

/* Estilos para o vídeo em destaque */
.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .video-wrapper {
        padding-top: 56.25%; /* 16:9 aspect ratio */
    }
    
    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    /* Ajustes para o card informativo no mobile */
    .empreendimento-destaque .row.g-4 > div {
        margin-bottom: 1rem;
    }
}