/* Variáveis de cores */
:root {
    --primary: #F3EDE2;
    --gold: #C9A94F;
    --gray: #D1D1D1;
    --white: #FFFFFF;
    --navy: #1D2A44;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(29, 42, 68, 0.1);
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--navy);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--navy);
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 79, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-gold {
    color: var(--gold);
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--navy);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 79, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(201, 169, 79, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 79, 0);
    }
}

.animate-fadeInUp, .animate-fadeIn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}


.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* Header e Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(243, 237, 226, 0.98);
    backdrop-filter: blur(5px);
}


.nav-mobile, .menu-toggle {
    display: none;
}

.nav-desktop {
    display: flex;
    align-items: center;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    backdrop-filter: blur(5px);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
}

.logo img {
    height: 150px;
    margin-right: 10px;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
     height: 90px;
}

.logo span {
    color: var(--gold);
}

.nav-desktop ul {
    display: flex;
    list-style: none;
}

.nav-desktop li {
    margin: 0 18px;
}

.nav-desktop a {
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

/* Efeito Underline Hover */
.nav-desktop a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease-out;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding-top: 70px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.hero-image-main {
    width: 100%;
    height: 450px;
    background-color: var(--navy); 
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(29, 42, 68, 0.4);
    
 
    background-image: url('../images/Inicial.png'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    

    padding: 20px; 
    
    transform: rotate(2deg) scale(0.98);
    transition: transform 0.6s ease;
}

.hero-image:hover .hero-image-main {
     transform: rotate(0deg) scale(1.0);
}

.hero-image-accent1 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--gold);
    border-radius: 10px;
    z-index: -1;
}

.hero-image-accent2 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-color: var(--gray);
    border-radius: 10px;
    z-index: -1;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    color: var(--gold);
}

/* Sobre Nós */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    background-color: var(--primary);
}

.about-text {
    padding: 20px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Pilares */
.pillars {
    background-color: var(--primary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.pillar-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 169, 79, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--gold);
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.pillar-card:hover .pillar-icon {
    transform: rotate(15deg);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.pillar-card p {
    color: #555;
}

/* Melhor Escolha */
.best-choice {
    background-color: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.best-choice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(201, 169, 79, 0.2) 0%, rgba(29, 42, 68, 0.8) 100%);
    z-index: 1;
}

.best-choice-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.best-choice h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.best-choice p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray);
}


.services {
    background-color: var(--primary); 
    color: var(--white);
    padding: 100px 0; 
}
.services .section__title, .services .section__subtitle {
    color: var(--color-white);
    text-align: center;
}

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


.services-grid > .service__card:nth-child(4) {

    grid-column: 1 / span 2; 
}


.services-grid > .service__card:nth-child(5) {

    grid-column: 3 / span 1; 
}


.services-grid {

    margin-top: 2rem; 
}


.service__card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--navy);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service__icon {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.service__title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.service__description {
    color: #555;
    margin-bottom: 20px;
}

.service__list {
    list-style: none;
    margin-bottom: 25px;
}

.service__list li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.service__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}


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

    .services-grid > .service__card:nth-child(4),
    .services-grid > .service__card:nth-child(5) {
        grid-column: span 1;
        width: 100%;
    }
}

/* Contato */
.contact {
    background-color: var(--navy);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: rgba(201, 169, 79, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.contact-text h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    color: var(--navy);
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    color: var(--navy);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 79, 0.3);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 169, 79, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(201, 169, 79, 0.4);
}

.social-link img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--gray);
}

.footer-contact-item i {
    color: var(--gold);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white); 
    font-size: 1.8rem;
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content, .about-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .about-image {
        height: 300px;
        margin-top: 30px;
    }

    .about-image img {
         padding: 20px;
    }

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

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

@media (max-width: 768px) {
    /* Reseta o layout de serviços para 1 coluna no mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    /* Garante que o layout 3+2 volte a ser 1x5 no mobile */
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1 !important;
        width: 100% !important;
        float: none;
        margin-right: 0;
    }
    
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
        
        /* Estilização e Animação do Menu Toggle (Hamburguer -> X) */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 1002;
    }

    /* 2. Cria as 3 linhas (Hambúrguer) */
    .menu-toggle::before,
    .menu-toggle span,
    .menu-toggle::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 3px;
        background-color: var(--navy);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
        left: 8px;
    }

    /* Posições iniciais das linhas */
    .menu-toggle::before {
        transform: translateY(-8px);
    }

    .menu-toggle::after {
        transform: translateY(8px);
    }

    .menu-toggle span {
        transform: translateY(0);
    }

    /* 3. Estiliza o X (Menu Ativo) */
    .menu-toggle.is-active::before {
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1.5px;
    }

    .menu-toggle.is-active::after {
        transform: rotate(-45deg);
        top: 50%;
        margin-top: -1.5px;
    }

    .menu-toggle.is-active span {
        transform: translateX(100%);
        opacity: 0;
    }
    /* Fim da Estilização do Menu Toggle */


    .nav-mobile {
        /* Posição inicial: move o menu para fora da tela (direita) */
        transform: translateX(100%); 
        transition: transform 0.4s ease-in-out; /* Adiciona transição para animação suave */
        
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background-color: var(--white);
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        display: block;
    }

    .nav-mobile.active {
        transform: translateX(0); /* Traz o menu para dentro da tela */
    }

    .nav-mobile-header {
        /* Regras de display/margin removidas */
    }

    .nav-mobile ul {
        list-style: none;
        padding-top: 50px;
        padding-left: 10px;
    }

    .nav-mobile li {
        margin-bottom: 15px;
    }

    .nav-mobile a {
        color: var(--navy);
        font-weight: 500;
        display: block;
        padding: 10px 10px;
        transition: background-color 0.3s ease;
    }

    .nav-mobile a:hover {
        background-color: var(--primary);
        border-radius: 4px;
    }


    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid, .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* === BLOG SECTION === */
.blog {
    background-color: var(--white);
}

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

.blog-card {
    background-color: var(--primary);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.blog-content p {
    color: #555;
    margin-bottom: 15px;
}


---

## 🎨 3. Adicione no `style.css` (final do arquivo)

```css
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.blog-content p {
  color: #555;
  margin-bottom: 15px;
}

.blog-article img {
  width: 100%;
  border-radius: 10px;
}

.blog-more {
  text-align: center;
  margin-top: 40px;
}

.blog-more .btn {
  padding: 12px 30px;
  font-size: 1rem;
  background-color: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.blog-more .btn:hover {
  background-color: var(--navy);
  color: var(--white);
}
