/* Estilos Globais */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-color: #f8f9fa;
    --light-color: #f8f9fa;
    --dark-color: #000000;
    --background-color: #000000;
    --card-bg-color: #121212;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --modern-font: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    color: #e7dfdf;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-family: var(--modern-font);
    font-size: 4rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* Cards com Informações Técnicas */
.features {
    background-color: var(--background-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.feature-card .icon {
    margin-bottom: 20px;
}

.feature-card .icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    color: var(--light-color);
    margin-bottom: 10px;
}

/* Carrossel de Imagens */
.gallery {
    background-color: var(--background-color);
}

.swiper {
    width: 100%;
    height: 500px;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.gallery-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

/* Formulário */
.contact {
    background-color: var(--background-color);
}

.form-container {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    padding: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--light-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    color: var(--light-color);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
}

.radio-group input {
    width: auto;
    margin-right: 8px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 30px;
}

.submit-button:hover {
    background-color: #c0392b;
}

#form-success {
    text-align: center;
    padding: 30px;
    color: var(--light-color);
}

.whatsapp-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-top: 20px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Mapa de Localização */
.location {
    text-align: center;
    background-color: var(--background-color);
}

.location p {
    color: var(--light-color);
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
    transform: scale(0.95);
}

.map-container.visible {
    opacity: 1;
    transform: scale(1);
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Rodapé com Informações do Corretor */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.broker-info {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.broker-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 30px;
}

.broker-details h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.broker-details p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-link {
    background-color: #25D366;
    color: white;
}

.instagram-link {
    background-color: #E1306C;
    color: white;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link img {
    width: 20px;
    height: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .broker-info {
        flex-direction: column;
        text-align: center;
    }
    
    .broker-img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .swiper {
        height: 350px;
    }
    
    .hero-text {
        padding: 30px;
    }
} 