/* sections.css - Estilos específicos das seções */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 0;
    width: 100%;
}

.hero-stats .container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #1a4d8c;
}

.stat-label {
    font-size: 14px;
    color: #333;
}

/* CLG Prime */
.clg-prime {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.prime-header {
    text-align: center;
    margin-bottom: 50px;
}

.prime-header h2 {
    font-size: 42px;
    color: #1a4d8c;
    margin-bottom: 15px;
}

.prime-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.prime-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.prime-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.prime-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Imóveis em Destaque */
.imoveis-destaque {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a4d8c;
    margin-bottom: 15px;
}

.imoveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.imovel-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.imovel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.imovel-image {
    position: relative;
    overflow: hidden;
}

.imovel-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.imovel-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f39c12;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.imovel-info {
    padding: 20px;
}

.imovel-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 15px;
}

/* Sobre */
.sobre {
    padding: 80px 0;
    background: #ffffff;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-text h2 {
    font-size: 42px;
    color: #1a4d8c;
    margin-bottom: 10px;
}

.sobre-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    flex: 1;
}

.feature i {
    font-size: 30px;
    color: #f39c12;
    margin-bottom: 10px;
}

/* Missão, Valores, Objetivos */
.missoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.missao-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a4d8c 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 40px;
    color: #ffffff;
}

/* Contato */
.contato-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contato-info-wrapper {
    display: grid;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a4d8c, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: #ffffff;
}

.contato-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
}

.btn-submit {
    background: linear-gradient(135deg, #1a4d8c, #2c3e50);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

/* Tablet */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .prime-content,
    .sobre-content,
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2,
    .prime-header h2,
    .sobre-text h2 {
        font-size: 32px;
    }
    
    .prime-text h3 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contato-form-wrapper {
        padding: 25px 20px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .imoveis-grid {
        grid-template-columns: 1fr;
    }
    
    .missoes-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .contato-info-wrapper {
        grid-template-columns: 1fr;
    }
}