/* 
   Alliance Administração de Condomínios
   Main Stylesheet
   Created: June 2025
*/

/* ===== Global Styles ===== */
:root {
    --primary-color: #0056b3;
    --secondary-color: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --gray-color: #2a2c2e;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-family: 'Montserrat', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px; /* Ajustado para o tamanho do cabeçalho fixo */
}

@media (max-width: 991.98px) {
    body {
        padding-top: 75px;
        /* Menor padding para dispositivos móveis */
    }

    .page-header {
        padding: 3rem 0 2rem!important; /* Aumentado para evitar sobreposição com o cabeçalho fixo */
    }
    .page-heading h1 {
        font-size: 2rem!important;
        margin-bottom: 0.5rem!important;
    }    


    .hero {
        padding-top: 0px!important;
    }

    .hero h1 {
        font-size: 2.5rem!important;
        font-weight: 500!important;
        margin-bottom: 1.2rem!important;
    }

    .hero h2 {
        font-size: 1.5rem!important;
        font-weight: 300!important;
        margin-bottom: 2rem!important;
    }

    .hero-buttons .btn {
        margin: 0 0.5rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 10px!important;
    }    

    .process-timeline::before {
        background-color: transparent!important;
    }

    .logo {
        height: 62px!important;
    }    

}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #003d7a;
}

.btn {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #003d7a;
    border-color: #003d7a;
}

.btn-outline-light:hover {
    color: var(--primary-color);
}

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

.section-title h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* ===== Navigation ===== */
#mainNav {
    padding: 1rem 0;
    transition: var(--transition);
    background-image: url('../images/header-background-color-image.jpg');
    background-repeat: repeat;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#mainNav .navbar-brand {
    font-weight: 800;
    color: white;
}

.logo {
    height: 70px;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: white;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f8f9fa;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

.navbar-nav .client-area {
    color: white;
    border-radius: 5px;
}

.navbar-nav .client-area:hover {
    background-color: #003d7a;
    color: white;
}

.navbar-toggler {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler i {
    color: white;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    background: url('../images/imagem-para-fundo-administradora-trabalhando-bem-estar.jpg') no-repeat center center;
    background-size: cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 95px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
}

/* ===== Pillars Section ===== */
.pillars {
    background-color: white;
}

.pillar-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #b93500;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--gray-color);
}

/* ===== Services Section ===== */
.services {
    background-color: #f9f9f9;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #b93500;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-color);
}

/* ===== App Section ===== */
.app-section {
    background-color: white;
}

.app-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.app-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.app-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

.app-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
}

.app-mockup {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background-color: #f9f9f9;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-text p {
    position: relative;
    padding: 0 20px;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text p::before {
    top: -10px;
    left: 0;
}

.testimonial-text p::after {
    bottom: -20px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray-color);
    margin: 0;
}

/* ===== Contact CTA Section ===== */
.contact-cta {
    background: linear-gradient(rgba(57, 96, 135, 0.9), rgba(0, 0, 0, 0.9)), url('../images/stats-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 4rem 0;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-cta .btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.contact-cta .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-5px);
}

/* ===== Footer ===== */
.footer {
    background-image: url('../images/header-background-color-image.jpg');
    background-repeat: repeat;
    color: white;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    margin-bottom: 1rem;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

hr {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #003d7a;
    color: white;
    transform: translateY(-5px);
}

/* ===== Page Header ===== */
.page-header {
    position: relative;
    background: url('../images/page-header-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0 4rem; /* Aumentado para evitar sobreposição com o cabeçalho fixo */
    color: white;
    text-align: center;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-heading {
    position: relative;
    z-index: 2;
}

.page-heading h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-heading .subheading {
    font-size: 1.5rem;
    font-weight: 300;
}

/* ===== About Section ===== */
.about-section img {
    transition: var(--transition);
}

.about-section img:hover {
    transform: scale(1.02);
}

/* ===== MVV Section ===== */
.mvv-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #b93500;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--gray-color);
}

.mvv-card ul {
    list-style: none;
    padding-left: 0;
    color: var(--gray-color);
}

.mvv-card ul li {
    margin-bottom: 0.5rem;
}

/* ===== Team Section ===== */
.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: var(--dark-color);
    margin: 0 5px;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(rgba(57, 96, 135, 0.9), rgba(0, 0, 0, 0.9)), url('../images/stats-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 4rem 0;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== Differentials Section ===== */
.differential-card {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.differential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.differential-icon {
    font-size: 2.5rem;
    color: #b93500;
    margin-right: 1.5rem;
    min-width: 60px;
    text-align: center;
}

.differential-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.differential-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== Service Detail ===== */
.service-detail {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 5rem;
    color: #b93500;
    background-color: rgba(0, 86, 179, 0.1);
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: #b93500;
}

.service-detail:hover .service-icon-large {
    background-color: #b93500;
    color: white;
    transform: rotateY(360deg);
    transition: transform 1s ease, background-color 0.3s ease, color 0.3s ease;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.75rem;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== App Highlight Section ===== */
.app-features-detailed {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.app-features-detailed li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: #b93500;
    margin-right: 1rem;
    min-width: 40px;
    text-align: center;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== App Screenshots Grid ===== */
.app-screenshot-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-screenshot-grid img:hover {
    transform: scale(1.05);
}

/* ===== Process Timeline ===== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 55%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #b93500;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: #b93500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.5);
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 400px;
    box-shadow: var(--box-shadow);
    margin-left: 2rem;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== FAQ Section ===== */
.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    background-color: white;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(0, 86, 179, 0.05);
}

.accordion-button:focus {
    border-color: rgba(0, 86, 179, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
}

/* ===== Contact Info Section ===== */
.contact-info-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #b93500;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--gray-color);
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    border-radius: 10px;
}

.form-label {
    font-weight: 500;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: rgba(0, 86, 179, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

/* ===== Map Section ===== */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Social Media Section ===== */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 5fr);
    gap: 1rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 10px;
    color: white;
    text-align: center;
    transition: var(--transition);
}

.social-item:hover {
    transform: translateY(-10px);
    color: white;
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-name {
    font-weight: 600;
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.linkedin {
    background-color: #0077b5;
}

.youtube {
    background-color: #ff0000;
}

.whatsapp {
    background-color: #25d366;
}

/* ===== App Download Section ===== */
.app-download-section {
    background-color: #f8f9fa;
}

.qr-code-img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* ===== Responsive Styles ===== */
@media (max-width: 991.98px) {
    .page-heading h1 {
        font-size: 2.5rem;
    }
    
    .page-heading .subheading {
        font-size: 1.3rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 9rem 0 3rem; /* Ajustado para dispositivos móveis */
    }
    
    .page-heading h1 {
        font-size: 2.5rem;
    }
    
    .page-heading .subheading {
        font-size: 1.2rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
    }
    
    .timeline-number {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Dropdown Menu Styles ===== */
.dropdown-menu {
    background-image: url('../images/header-background-color-image.jpg');
    background-repeat: repeat;
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}


.btn-primary {
    background-color: #b34000;
    border-color: var(--primary-color);
}
.btn {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: var(--transition);
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #fd590d;
    --bs-btn-border-color: #fd6d0d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}