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

:root {
    /* Cores baseadas na logo - AJUSTE ESTAS CORES CONFORME A LOGO */
    /* Cores padrão: Verde esmeralda e dourado (elegante para consultoria) */
    --primary-color: #2d8659;
    --primary-dark: #1f5d3f;
    --primary-light: #4da375;
    --secondary-color: #d4af37;
    --secondary-dark: #b8941f;
    --secondary-light: #e5c158;
    
    /* Cores neutras */
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #153d2a);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), #9a7016);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--gray-900);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SERVIÇOS ===== */
.servicos {
    padding: 100px 0;
    background: var(--white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servico-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.servico-icon i {
    font-size: 36px;
    color: var(--white);
}

.servico-card h3 {
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 15px;
    font-weight: 600;
}

.servico-card p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== PACOTES ===== */
.pacotes {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pacote-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--primary-color);
}

.pacote-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--secondary-color);
}

.pacote-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.pacote-card h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 15px;
    font-weight: 600;
}

.pacote-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-small {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-small:hover {
    background: linear-gradient(135deg, var(--primary-dark), #153d2a);
    transform: translateY(-2px);
}

/* ===== SEGURADORAS ===== */
.seguradoras {
    padding: 100px 0;
    background: var(--gray-100);
}

.seguradoras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.seguradora-item:nth-child(5) {
    grid-column: 1 / 2;
    justify-self: start;
}

.seguradora-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.seguradora-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.seguradora-item img {
    width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.seguradora-item:hover img {
    transform: scale(1.05);
}

/* ===== IMÓVEIS ===== */
.imoveis {
    padding: 100px 0;
    background: var(--white);
}

.imoveis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.imovel-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.imovel-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.imovel-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

/* ===== SERVIÇOS DETALHADOS ===== */
.servico-detalhe {
    padding: 100px 0;
    background: var(--white);
}

.servico-detalhe:nth-child(even) {
    background: var(--gray-100);
}

.servico-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servico-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.servico-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.servico-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.servico-item:hover img {
    transform: scale(1.05);
}

/* ===== GALERIA ===== */
.galeria {
    padding: 100px 0;
    background: var(--gray-100);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.galeria-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.galeria-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.galeria-card:hover .galeria-image img {
    transform: scale(1.1);
}

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

.galeria-content h3 {
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.galeria-content p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.sobre .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.sobre .section-header h2,
.sobre .section-header p {
    color: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.sobre-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.sobre-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.sobre-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.stat-card i {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.stat-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 15px;
    opacity: 0.9;
}

/* ===== CONTATO ===== */
.contato {
    padding: 100px 0;
    background: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contato-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contato-card.highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    border-color: var(--secondary-color);
}

.contato-card.highlight h3,
.contato-card.highlight p {
    color: var(--white);
}

.contato-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contato-card.highlight .contato-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contato-icon i {
    font-size: 36px;
    color: var(--white);
}

.contato-card h3 {
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.contato-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 5px 0;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 15px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 30px;
        transition: var(--transition);
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .servicos-grid,
    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .seguradoras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .imoveis-grid {
        grid-template-columns: 1fr;
    }

    .seguradora-item:nth-child(5) {
        grid-column: 1 / 2;
        justify-self: center;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .seguradoras-grid {
        grid-template-columns: 1fr;
    }

    .seguradora-item:nth-child(5) {
        grid-column: 1;
        width: 100%;
    }
}

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

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--white);
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}
