/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary: #2d2d2d;       /* Dark Charcoal */
    --secondary: #c5a059;     /* Elegant Gold */
    --secondary-dark: #a38240;
    --light: #fdfdfd;         /* Off-white */
    --gray: #f4f4f4;          /* Soft Gray background */
    --text-body: #666666;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-body);
    line-height: 1.8;
    background: var(--light);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
}

/* Header e Navegação */
header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    padding: 1rem 0 !important;
}

#logo img {
    max-width: 200px !important;
    transition: transform 0.3s ease;
}

#logo img:hover {
    transform: scale(1.02);
}

.menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
}

.menu li a {
    color: var(--primary) !important;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.menu li a:hover::after,
.menu li.active a::after {
    width: 100%;
}

.menu li a:hover,
.menu li.active a {
    color: var(--secondary) !important;
}

/* Botões Elegantes */
.btn, .btn-primary, .price-button .btn {
    background: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
    padding: 12px 30px !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border-radius: 0 !important; /* Square for elegance */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.btn:hover, .btn-primary:hover, .price-button .btn:hover {
    background: var(--secondary-dark) !important;
    border-color: var(--secondary-dark) !important;
    transform: translateY(-2px) !important;
}

.section-padding {
    padding: 100px 0;
}

/* Títulos de Seção */
.tittle {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    color: var(--primary);
}

.tittle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.tittle span {
    color: var(--secondary);
}

/* Cards de Produtos */
.ab-content-inner {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.ab-content-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.ab-content-inner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ab-content-inner:hover img {
    transform: scale(1.05);
}

.ab-info-con {
    padding: 2rem;
    text-align: center;
    background: white;
}

.ab-info-con h4 {
    margin: 0;
    font-size: 1.4rem;
}

.ab-info-con h4 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-content-inner:hover .ab-info-con h4 a {
    color: var(--secondary);
}

/* Cards de Blog/Notícias e Depoimentos */
.card, .test-info-w3ls {
    background: white !important;
    border: none !important;
    border-radius: 4px !important;
    box-shadow: var(--shadow-soft) !important;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.card:hover, .test-info-w3ls:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-hover) !important;
}

.card img {
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 2rem !important;
}

.card-title, .blog-title {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.4;
}

.card-title a {
     color: var(--primary);
     text-decoration: none;
     transition: color 0.3s ease;
}

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

/* Depoimentos */
.test-info-w3ls {
    padding: 3rem !important;
    text-align: center;
}

.test-info-w3ls p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Backgrounds de Seção - Tons Neutros */
.services, .testimonials {
    background-color: var(--gray);
}

.banner-bottom-wthree, .blog_w3ls, .contact {
    background-color: white;
}

/* Formulário */
.form-control {
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
    padding: 15px !important;
    font-family: 'Lato', sans-serif;
    background-color: #fafafa;
}

.form-control:focus {
    border-color: var(--secondary) !important;
    background-color: white;
    box-shadow: none !important;
}

/* Carousel */
.carousel-item img {
    filter: brightness(0.95);
    max-height: 500px;
    object-fit: cover;
}

/* Header e Navegação */
header {
    background: #000000 !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    padding: 0.5rem 0 !important;
}

#logo img {
    max-width: 180px !important;
    transition: transform 0.3s ease;
}

/* Menu Toggle Logic */
.toggle {
    display: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: white;
    padding: 10px;
}

input#drop {
    display: none;
}

.menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
}

.menu li a {
    color: white !important;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.menu li a:hover::after,
.menu li.active a::after {
    width: 100%;
}

.menu li a:hover,
.menu li.active a {
    color: var(--secondary) !important;
}

/* Responsividade */
@media (max-width: 991px) {
    .toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 35px; /* Ajuste manual para alinhar com o logo */
        transform: none;
        padding: 0;
        margin-top: 0;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding-top: 20px;
        background: #000000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        gap: 0;
    }

    /* Show menu when checkbox is checked */
    input#drop:checked ~ .menu {
        display: flex;
    }

    .menu li {
        width: 100%;
        border-top: 1px solid #333;
    }

    .menu li a {
        display: block;
        padding: 15px 0;
        color: white !important;
    }
    
    .menu li a::after {
        display: none;
    }
}
