/* === PLAYER DE MÚSICA NO HEADER === */
.music-player {
    position: fixed;
    top: 100px; /* Abaixo do header */
    right: 30px;
    z-index: 1000;
}

.music-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.music-toggle:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.music-toggle.playing {
    background: var(--secondary-color);
}

/* Ajuste para mobile */
@media (max-width: 767px) {
    .music-player {
        top: 90px;
        right: 20px;
    }
    
    .music-toggle {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* Social links - cores oficiais */
.social-links a {
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
}

/* Instagram (gradiente oficial) */
.social-links a .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* WhatsApp (verde oficial) */
.social-links a .fa-whatsapp {
    color: #25D366;
}


/* --- RESET BÁSICO E CONFIGURAÇÕES GLOBAIS --- */
:root {
    --primary-color: #3957FF;
    --secondary-color:#ef6d15;
    --dark-color: #1B1B1B;
    --light-color: #ffffff;
    --text-color: #7A7A7A;
    --text-color-light: #a5a5a5;
    --bg-dark: #161616;
    --bg-light-gray: #f8f9fa;
    --font-family: 'Roboto', sans-serif;
    --container-width: 1140px;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.container-narrow {
    max-width: 867px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 700;
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 52px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.1em;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}


/* --- BOTÕES --- */
.btn {
    display: inline-block;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color:#ef6d15;
    color: var(--light-color);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: var(--light-color);
    box-shadow: 0px 12px 39px 0px rgba(0,0,0,0.16);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.btn-light {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}
.btn-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* --- WHATSAPP FLOAT --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: var(--transition);
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #128C7E;
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8); }
            100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
        }

/* --- CABEÇALHO --- */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    height: 90px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ef6d15;
    bottom: -2px;
    left: 0;
    transition: var(--transition);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

/* --- SEÇÃO HERO --- */
.hero-section {
    background-image: url('https://id-preview--0b49e746-084e-4def-a08e-573fa9d41666.lovable.app/assets/hero-condominium-CLudUkDP.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--light-color);
    padding: 220px 0 200px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .subtitle {
    color: var(--light-color);
    letter-spacing: 10px;
}

.hero-section .main-title {
    font-size: 75px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.9em;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    min-height: 1.8em; /* To avoid layout shift */
}

#typed-headline::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-section .hero-description {
    max-width: 530px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.8);
    font-size: 22px;
    font-weight: 300;
}

/* --- DIVISOR DE FORMA --- */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.shape-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 36px;
}
.shape-divider .shape-fill {
    fill: var(--light-color);
}

/* --- SEÇÃO START (CARDS) --- */
.start-section {
    padding: 0;
    margin-top: -120px;
    position: relative;
    z-index: 2;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card {
    background: var(--light-color);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.13);
    border-radius: 20px;
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-10px);
}
.card-icon {
    font-size: 55px;
    color: var(--primary-color);
    background: var(--light-color);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.card .card-icon .fa-dribbble,
.card .card-icon .fa-code,
.card .card-icon .fa-instagram {
    animation: wobble-vertical 1.5s infinite;
}

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

.card h3 {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.card p {
    font-size: 18px;
    font-weight: 300;
}

/* Estilos para os links dos cards */
.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card-link:hover {
    color: inherit;
}

.card:hover .card-link {
    transform: translateY(-10px);
}

/* --- SEÇÃO SOBRE --- */
.about-section {
    padding: 120px 0;
}
.about-section p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 2rem;
}
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- SEÇÃO PARALLAX --- */
.parallax-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0;
    position: relative;
    color: var(--light-color);
}

.parallax-1 { background-image: url('https://rifetheme.com/wp-content/uploads/2018/02/rife-free19.jpg'); }
.parallax-2 { background-image: url('https://rifetheme.com/wp-content/uploads/2018/02/rife-free21.jpg'); }

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.parallax-section .container {
    position: relative;
    z-index: 1;
}

.parallax-title {
    font-size: 51px;
    font-weight: 400;
    line-height: 1.1em;
    letter-spacing: -2px;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.55);
    color: var(--light-color);
}

.parallax-title.large {
    font-size: 52px;
    font-weight: bold;
    text-transform: uppercase;
}

.parallax-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6.7px;
    color: var(--light-color);
}

.shape-divider-bottom-negative {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.shape-divider-bottom-negative svg {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
}

.shape-divider-bottom-negative .shape-fill {
    fill: var(--light-color);
}

/* --- SEÇÃO DESTAQUES --- */
.features-section {
    padding: 120px 0;
    background: var(--bg-light-gray);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}
.feature-item img {
    width: 100px;
    height: 100px;
}
.feature-text h4 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.feature-text p {
    color: #999999;
}
.feature-text sup {
    color: var(--secondary-color);
    font-weight: bold;
}

/* --- SEÇÃO BLOG --- */
.blog-section {
    padding: 0;
    margin-top: -200px;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.post-card {
    background: var(--light-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}
.post-content {
    padding: 30px;
}
.post-date {
    font-size: 12px;
    color: var(--text-color-light);
}
.post-content h3 {
    margin: 10px 0;
}
.read-more {
    font-weight: bold;
}

/* --- SEÇÃO ESTATÍSTICAS --- */
.stats-section {
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat-item img {
    margin-bottom: -10px;
}
.stat-number {
    font-size: 70px;
    font-weight: 500;
    letter-spacing: -5px;
    color: var(--dark-color);
}
.stat-title {
    color: var(--text-color-light);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- SEÇÃO CLIENTES (DEPOIMENTOS) --- */
.clients-section {
    padding: 90px 0;
    background: var(--bg-light-gray);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.testimonial-card {
    padding: 30px 40px;
    border-radius: 4px;
    transition: var(--transition);
    background: var(--light-color);
}
.testimonial-card:hover {
    box-shadow: 0px 0px 56px 0px rgba(0,0,0,0.2);
    border-bottom: 4px solid var(--dark-color);
}
.testimonial-card p {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.client-details h5 {
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}
.client-details span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 8.5px;
    color: rgba(0,0,0,0.5);
}

/* --- SEÇÃO CTA --- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(30deg, #3957ff 0%, #f2295b 100%);
    color: var(--light-color);
    transition: background 0.6s;
}
.cta-section:hover {
    background: linear-gradient(190deg, #3957ff 0%, #f2295b 100%);
}
.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cta-content h2 {
    color: var(--light-color);
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.1em;
    letter-spacing: -1px;
    text-shadow: 0px 5px 22px rgba(0,0,0,0.33);
}

/* --- RODAPÉ --- */
.site-footer {
    background: var(--dark-color);
    color: var(--text-color-light);
    padding: 80px 0 0;
}
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333;
}
.widget h4 {
    color: var(--light-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
}
.widget ul {
    list-style: none;
}
.widget ul li {
    margin-bottom: 10px;
}
.widget ul a {
    color: var(--text-color-light);
}
.widget ul a:hover, .widget p a:hover {
    color: var(--light-color);
}
.footer-logo {
    max-width: 171px;
    margin-top: 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}
.social-links a {
    color: var(--light-color);
    font-size: 18px;
    margin-right: 15px;
}
.social-links a:hover {
    color: var(--secondary-color);
}
.footer-bottom p {
    font-size: 14px;
}
.footer-bottom p a {
    color: var(--light-color);
    font-weight: bold;
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .section-title { font-size: 38px; }
    .hero-section .main-title { font-size: 58px; }
    .cards-grid, .posts-grid, .stats-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-content { flex-direction: column; text-align: center; }
    .start-section { margin-top: -100px; padding: 0 15px; }
    .blog-section { margin-top: -180px; }
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--light-color);
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .main-nav.active { display: block; }
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    .main-nav ul li { width: 100%; text-align: center; }
    .main-nav ul li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    .main-nav a:not(.btn)::after { display: none; }
    .mobile-menu-toggle { display: block; }
}

@media (max-width: 767px) {
    .section-title { font-size: 32px; }
    .hero-section .main-title { font-size: 39px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
    .button-group a { width: 100%; }
}

/* --- Estilos para os novos ícones da seção de features --- */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 32px;
    color: var(--light-color);
}

.feature-item:hover .feature-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(57, 87, 255, 0.05);
}

.feature-text h4 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.feature-text sup {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 10px;
}

/* --- Correção e melhoria para a seção de Dicas --- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.post-card {
    background: var(--light-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-date {
    font-size: 12px;
    color: var(--text-color-light);
    margin-bottom: 8px;
}

.post-content h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.3;
    color: var(--dark-color);
    flex-grow: 1;
}

.post-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.read-more {
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* === PLAYER DE MÚSICA NO HEADER === */
.music-player {
    position: fixed;
    top: 100px; /* Abaixo do header */
    right: 30px;
    z-index: 1000;
}

.music-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background:#29455a;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.music-toggle:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.music-toggle.playing {
    background: var(--secondary-color);
}

/* Ajuste para mobile */
@media (max-width: 767px) {
    .music-player {
        top: 90px;
        right: 20px;
    }
    
    .music-toggle {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* --- RESET BÁSICO E CONFIGURAÇÕES GLOBAIS --- */
:root {
    --primary-color: #3957FF;
    --secondary-color:#ef6d15;
    --dark-color: #1B1B1B;
    --light-color: #ffffff;
    --text-color: #7A7A7A;
    --text-color-light: #a5a5a5;
    --bg-dark: #161616;
    --bg-light-gray: #f8f9fa;
    --font-family: 'Roboto', sans-serif;
    --container-width: 1140px;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.container-narrow {
    max-width: 867px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 700;
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 52px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.1em;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}


/* --- BOTÕES --- */
.btn {
    display: inline-block;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color:#29455a;
    color: var(--light-color);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color:#ef6d15;
    color: var(--light-color);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background-color: #29455a;
    color: var(--light-color);
    box-shadow: 0px 12px 39px 0px rgba(0,0,0,0.16);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.btn-light {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}
.btn-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* --- WHATSAPP FLOAT --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: var(--transition);
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #128C7E;
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8); }
            100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
        }

/* --- CABEÇALHO --- */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    height: 90px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ef6d15;
    bottom: -2px;
    left: 0;
    transition: var(--transition);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

/* --- SEÇÃO HERO --- */
.hero-section {
    background-image: url('https://id-preview--0b49e746-084e-4def-a08e-573fa9d41666.lovable.app/assets/hero-condominium-CLudUkDP.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--light-color);
    padding: 220px 0 200px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .subtitle {
    color: var(--light-color);
    letter-spacing: 10px;
}

.hero-section .main-title {
    font-size: 75px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.9em;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    min-height: 1.8em; /* To avoid layout shift */
}

#typed-headline::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-section .hero-description {
    max-width: 530px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-weight: 300;
}

/* --- DIVISOR DE FORMA --- */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.shape-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 36px;
}
.shape-divider .shape-fill {
    fill: var(--light-color);
}

/* --- SEÇÃO START (CARDS) --- */
.start-section {
    padding: 0;
    margin-top: -120px;
    position: relative;
    z-index: 2;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card {
    background: var(--light-color);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.13);
    border-radius: 20px;
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-10px);
}
.card-icon {
    font-size: 55px;
    color: var(--primary-color);
    background: var(--light-color);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.card .card-icon .fa-dribbble,
.card .card-icon .fa-code,
.card .card-icon .fa-instagram {
    animation: wobble-vertical 1.5s infinite;
}

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

.card h3 {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.card p {
    font-size: 18px;
    font-weight: 300;
}

/* Estilos para os links dos cards */
.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card-link:hover {
    color: inherit;
}

.card:hover .card-link {
    transform: translateY(-10px);
}

/* --- SEÇÃO SOBRE --- */
.about-section {
    padding: 120px 0;
}
.about-section p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 2rem;
}
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- SEÇÃO PARALLAX --- */
.parallax-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0;
    position: relative;
    color: var(--light-color);
}


.parallax-2 { background-image: url('https://id-preview--0b49e746-084e-4def-a08e-573fa9d41666.lovable.app/assets/hero-condominium-CLudUkDP.jpg'); }

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.parallax-section .container {
    position: relative;
    z-index: 1;
}

.parallax-title {
    font-size: 51px;
    font-weight: 400;
    line-height: 1.1em;
    letter-spacing: -2px;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.55);
    color: var(--light-color);
}

.parallax-title.large {
    font-size: 52px;
    font-weight: bold;
    text-transform: uppercase;
}

.parallax-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6.7px;
    color: var(--light-color);
}

.shape-divider-bottom-negative {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.shape-divider-bottom-negative svg {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
}

.shape-divider-bottom-negative .shape-fill {
    fill: var(--light-color);
}

/* --- SEÇÃO DESTAQUES --- */
.features-section {
    padding: 120px 0;
    background: var(--bg-light-gray);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}
.feature-item img {
    width: 100px;
    height: 100px;
}
.feature-text h4 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.feature-text p {
    color: #999999;
}
.feature-text sup {
    color: var(--secondary-color);
    font-weight: bold;
}

/* --- SEÇÃO BLOG --- */
.blog-section {
    padding: 0;
    margin-top: -200px;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.post-card {
    background: var(--light-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}
.post-content {
    padding: 30px;
}
.post-date {
    font-size: 12px;
    color: var(--text-color-light);
}
.post-content h3 {
    margin: 10px 0;
}
.read-more {
    font-weight: bold;
}

/* --- SEÇÃO ESTATÍSTICAS --- */
.stats-section {
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat-item img {
    margin-bottom: -10px;
}
.stat-number {
    font-size: 70px;
    font-weight: 500;
    letter-spacing: -5px;
    color: var(--dark-color);
}
.stat-title {
    color: var(--text-color-light);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- SEÇÃO CLIENTES (DEPOIMENTOS) --- */
.clients-section {
    padding: 90px 0;
    background: var(--bg-light-gray);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.testimonial-card {
    padding: 30px 40px;
    border-radius: 4px;
    transition: var(--transition);
    background: var(--light-color);
}
.testimonial-card:hover {
    box-shadow: 0px 0px 56px 0px rgba(0,0,0,0.2);
    border-bottom: 4px solid var(--dark-color);
}
.testimonial-card p {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.client-details h5 {
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}
.client-details span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 8.5px;
    color: rgba(0,0,0,0.5);
}

/* --- SEÇÃO CTA --- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(30deg, #3957ff 0%, #f2295b 100%);
    color: var(--light-color);
    transition: background 0.6s;
}
.cta-section:hover {
    background: linear-gradient(190deg, #3957ff 0%, #f2295b 100%);
}
.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cta-content h2 {
    color: var(--light-color);
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.1em;
    letter-spacing: -1px;
    text-shadow: 0px 5px 22px rgba(0,0,0,0.33);
}

/* --- RODAPÉ --- */
.site-footer {
    background: var(--dark-color);
    color: var(--text-color-light);
    padding: 80px 0 0;
}
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333;
}
.widget h4 {
    color: var(--light-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
}
.widget ul {
    list-style: none;
}
.widget ul li {
    margin-bottom: 10px;
}
.widget ul a {
    color: var(--text-color-light);
}
.widget ul a:hover, .widget p a:hover {
    color: var(--light-color);
}
.footer-logo {
    max-width: 171px;
    margin-top: 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}
.social-links a {
    color: var(--light-color);
    font-size: 18px;
    margin-right: 15px;
}
.social-links a:hover {
    color: var(--secondary-color);
}
.footer-bottom p {
    font-size: 14px;
}
.footer-bottom p a {
    color: var(--light-color);
    font-weight: bold;
}

/* --- Estilos para os novos ícones da seção de features --- */
.feature-icon {
    width: 80px;
    height: 80px;
    background:#29455a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 32px;
    color: var(--light-color);
}

.feature-item:hover .feature-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(57, 87, 255, 0.05);
}

.feature-text h4 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.feature-text sup {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 10px;
}

/* --- Correção e melhoria para a seção de Dicas --- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.post-card {
    background: var(--light-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-date {
    font-size: 12px;
    color: var(--text-color-light);
    margin-bottom: 8px;
}

.post-content h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.3;
    color: var(--dark-color);
    flex-grow: 1;
}

.post-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.read-more {
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* ====================================================== */
/* INÍCIO DO NOVO CÓDIGO CSS - SEÇÃO DE PARCEIROS */
/* ====================================================== */
.partners-section {
    padding: 80px 0;
    background-color: var(--light-color); 
}

.partners-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--text-color-light);
    margin-bottom: 4rem;
}

.logos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
    mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 80px; /* Espaçamento entre os logos */
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.logos-slide img {
    height: 75px; /* Altura fixa para todos os logos */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logos-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ====================================================== */
/* FIM DO NOVO CÓDIGO CSS - SEÇÃO DE PARCEIROS */
/* ====================================================== */


/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .section-title { font-size: 38px; }
    .hero-section .main-title { font-size: 58px; }
    .cards-grid, .posts-grid, .stats-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-content { flex-direction: column; text-align: center; }
    .start-section { margin-top: -100px; padding: 0 15px; }
    .blog-section { margin-top: -180px; }
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--light-color);
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .main-nav.active { display: block; }
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    .main-nav ul li { width: 100%; text-align: center; }
    .main-nav ul li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    .main-nav a:not(.btn)::after { display: none; }
    .mobile-menu-toggle { display: block; }
}

@media (max-width: 767px) {
    .section-title { font-size: 32px; }
    .hero-section .main-title { font-size: 39px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
    .button-group a { width: 100%; }
}


/* --- Ajustes responsivos para Dicas --- */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 180px;
    }
    
    .post-content {
        padding: 20px;
    }
}

/* --- Ajustes responsivos --- */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 180px;
    }
    
    .post-content {
        padding: 20px;
    }
}

