        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #2c3e50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #1a252f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-primary {
            background-color: #027985;
        }
        
        .btn-primary:hover {
            background-color: #027a85b6;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
        }
        .logo img{
          width: 150px;
        }
        .logo span {
            color: #027985;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #027985;
        }
        
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80') no-repeat center center/cover;
            height: 100vh;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        /* Construtoras Section */
        .construtoras {
            background-color: #e9e9e9;
        }
        
        .construtoras h2 {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .construtoras-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }
        
        .construtoras-grid img {
            max-width: 80%;
        }
        
        
        
        /* Galeria de Imóveis */
        .galeria h2 {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .imoveis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .imovel-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .imovel-card:hover {
            transform: translateY(-10px);
        }
        
        .imovel-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .imovel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .imovel-card:hover .imovel-overlay {
            transform: translateY(0);
        }
        
        .imovel-overlay h3 {
            margin-bottom: 5px;
        }
        
        .imovel-overlay p {
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
        }
        
        .modal-content {
            position: relative;
            margin: auto;
            padding: 20px;
            width: 90%;
            max-width: 1200px;
        }
        
        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1000;
        }
        
        .modal-slides {
            display: none;
            text-align: center;
        }
        
        .modal-img {
            max-height: 80vh;
            max-width: 100%;
        }
        
        .modal-prev, .modal-next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -50px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            transition: 0.3s;
            user-select: none;
        }
        
        .modal-next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        
        .modal-prev {
            left: 0;
            border-radius: 0 3px 3px 0;
        }
        
        .modal-prev:hover, .modal-next:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        .modal-caption {
            text-align: center;
            color: white;
            padding: 10px 0;
        }
        
        /* Depoimentos */
        .depoimentos {
            background-color: #f9f9f9;
        }
        
        .depoimentos h2 {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .video-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .video-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Sobre Mim */
        .sobre {
            
            gap: 50px;
            
        }
        
        .sobre .container{
            align-items: center;
            margin: 0 auto;
            display: flex;
            gap: 50px;
        }
        
        .sobre-img img {
            width: 400px;
            border-radius: 25px;
            
        }
        
        .sobre-content h2 {
            margin-bottom: 20px;
        }
        
        .sobre-content p {
            margin-bottom: 15px;
        }

        
        .destaques {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .destaque-item {
            display: flex;
            align-items: center;
        }
        
        .destaque-icon {
            background-color: #027985;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        /* CTA Final */
        .cta-final {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .cta-final h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-final p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #027985;
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #027985;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: #027985;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Responsivo */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
            margin: 15px 0;
            }

            
            .mobile-menu {
                display: block;
                z-index: 1000;
            }
        }
        /* Estilos para o menu mobile */
        .nav-links {
        transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 100px; /* Ajuste conforme a altura do seu header */
            left: 0;
            width: 100%;
            background: #fff;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            transform: translateY(-150%);
            opacity: 0;
            z-index: 1000;
        }
    
        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
        }
        
        .nav-links li {
            margin: 15px 0;
        }

        .sobre .container{
            display: block;
            overflow: hidden;
            width: 100%;
        }
        .sobre-img img{
            width: 100%;
        }
        .hero-content{
            padding-top: 80px;
        }
        }


        /*botão wtt*/
footer .logo-footer img{
  width: 200px;
}

#div-fixa{
  position: fixed;
  bottom: 10px;
  margin: 0 20px;
  cursor: pointer;  
  right: 80px; /* Adiciona esta linha */
  z-index: 999999999999999;
}
#div-fixa img{
  width: 50px;
  height: 50px;
}

#div-fixa a .flex-itens{
  display: flex;
  align-items:center;
  border: #800020;
}

#div-fixa a .flex-itens span{
  display: block;
  font-weight: bold;
  margin-left: 50px;


}
#div-fixa a{
  text-decoration: none;
  
}

.flutuar{
  z-index: 10000;
  animation-name: flutuar2;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


@keyframes flutuar2{
  form{
    transform: translate3d(0, 0, 0);
    filter: brightness(100%);
  }
  to{
    transform: translate3d(0, -8px, 0);
    filter: brightness(140%);

  }
}