/* ===== VARIABLES ===== */
:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #fbbf24 100%);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: #1a1a1a;
    color: white;
    position: relative;
}

.footer-brand h4 {
    color: white;
    font-weight: 600;
}

.footer-brand p {
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    font-weight: 500;
}

.footer-contato .contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contato .contato-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.footer-contato .contato-item i {
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.footer-contato .contato-item i.text-success {
    color: #10b981;
}

.footer-contato .contato-item i.text-primary {
    color: #3b82f6;
}

.footer-contato .contato-item i.text-info {
    color: #06b6d4;
}

.footer-contato .contato-item i.text-warning {
    color: #f59e0b;
}

.footer-contato .contato-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-contato .contato-item a:hover {
    color: var(--secondary-color);
}

.footer-contato .contato-item span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.footer-social .social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-links-small {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links-small a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 400;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.footer-links-small a:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer p.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-social {
        text-align: center;
    }
    
    .footer-links-small {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ===== MODAL STYLES ===== */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.modal-body {
    padding: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.form-control::placeholder {
    color: #94a3b8;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/* Modal animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* ===== TYPOGRAPHY ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .text-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-white) !important;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-secondary);
    border: none;
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ===== MOCKUP DEVICE ===== */
.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mockup-device {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.mockup-device::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.mockup-header {
    height: 60px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.mockup-content {
    padding: 20px;
}

.mockup-hero {
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.mockup-properties {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-property {
    height: 80px;
    background: var(--border-color);
    border-radius: 8px;
}

/* ===== SOBRE SECTION ===== */
.sobre-section {
    background: var(--bg-light);
    position: relative;
}

.sobre-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card {
    position: absolute;
    background: var(--text-white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    z-index: 2;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
    z-index: 2;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 2s;
    z-index: 2;
}

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

/* ===== BENEFICIOS SECTION ===== */
.beneficios-section {
    background: var(--text-white);
}

.beneficio-card {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.beneficio-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.beneficio-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.beneficio-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Garantir que os cards sejam exibidos lado a lado em telas grandes */
@media (min-width: 992px) {
    .beneficios-section .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .beneficios-section .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* ===== EXEMPLOS SECTION ===== */
.exemplos-section {
    background: var(--bg-light);
}

.exemplo-card {
    background: var(--text-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

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

.exemplo-image {
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    flex-shrink: 0;
}

.mockup-preview {
    width: 200px;
    height: 150px;
    background: var(--text-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.preview-header {
    height: 20px;
    background: var(--gradient-primary);
}

.preview-content {
    padding: 10px;
}

.preview-hero {
    height: 30px;
    background: var(--border-color);
    border-radius: 4px;
    margin-bottom: 10px;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.preview-item {
    height: 20px;
    background: var(--border-color);
    border-radius: 3px;
}

.mockup-preview.modern .preview-hero {
    background: var(--accent-color);
}

.mockup-preview.modern .preview-item {
    background: var(--accent-color);
    opacity: 0.7;
}

.mockup-preview.premium .preview-hero {
    background: var(--secondary-color);
}

.mockup-preview.premium .preview-item {
    background: var(--secondary-color);
    opacity: 0.7;
}

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

.exemplo-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.exemplo-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== CONTATO SECTION ===== */
.contato-section {
    background: var(--text-white);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contato-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.contato-item h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contato-item p {
    color: var(--text-light);
    margin: 0;
}

.form-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-card h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}



/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--text-white);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mockup-device {
        width: 250px;
        height: 500px;
    }
    
    .sobre-image {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .image-container {
        min-height: 300px;
    }
    
    .floating-card {
        position: relative;
        margin-bottom: 1rem;
        z-index: 1;
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .beneficio-card {
        min-height: 280px;
    }
    
    .exemplo-card {
        min-height: 380px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
    
    .mockup-device {
        width: 200px;
        height: 400px;
    }
    
    .beneficio-card {
        padding: 1.5rem;
        min-height: 250px;
        margin-bottom: 1rem;
    }
    
    .exemplo-card {
        min-height: 350px;
        margin-bottom: 1rem;
    }
    
    .exemplo-image {
        height: 200px;
        padding: 1.5rem;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
    }
    
    .sobre-image {
        min-height: 250px;
        margin-top: 1.5rem;
    }
    
    .image-container {
        min-height: 250px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .mockup-device {
        width: 180px;
        height: 360px;
    }
    
    .beneficio-card {
        min-height: 220px;
        padding: 1rem;
    }
    
    .exemplo-card {
        min-height: 300px;
    }
    
    .exemplo-image {
        height: 180px;
        padding: 1rem;
    }
    
    .exemplo-content {
        padding: 1rem;
    }
    
    .sobre-image {
        min-height: 200px;
        margin-top: 1rem;
    }
    
    .image-container {
        min-height: 200px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .beneficio-card {
        min-height: 200px;
        padding: 0.75rem;
    }
    
    .exemplo-card {
        min-height: 280px;
    }
    
    .exemplo-image {
        height: 160px;
        padding: 0.75rem;
    }
    
    .exemplo-content {
        padding: 0.75rem;
    }
    
    .beneficio-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .beneficio-icon i {
        font-size: 1.5rem;
    }
}

/* ===== UTILITIES ===== */
.min-vh-100 {
    min-height: 100vh;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.g-4 {
    gap: 1.5rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-padding-top: 80px;
} 

/* ===== LOGO STYLES ===== */
.navbar-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Torna o logo branco */
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-brand h4 img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Torna o logo branco */
    transition: all 0.3s ease;
}

.footer-brand h4:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 35px;
    }
    
    .footer-brand h4 img {
        height: 30px;
    }
} 