/* Importação de fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Variáveis CSS para cores e fontes */
:root {
    --primary-green: #28a745; /* Verde principal */
    --dark-green: #1e7e34; /* Verde mais escuro para hover */
    --dark-bg: #1a1a1a; /* Fundo escuro */
    --light-gray: #f8f9fa; /* Cinza claro para seções */
    --text-color: #333; /* Cor padrão do texto */
    --light-text: #fff; /* Cor do texto em fundos escuros */
    --border-color: #ddd; /* Cor da borda */
    --font-montserrat: 'Montserrat', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-open-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-montserrat);
    color: var(--dark-bg);
    margin-bottom: 15px;
}

h1 { font-size: 3.2em; line-height: 1.1; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

a {
    text-decoration: none;
    color: var(--primary-green);
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    color: var(--light-text);
    text-decoration: none;
}

.btn-whatsapp {
    background-color: var(--primary-green);
    color: var(--light-text);
    padding: 15px 30px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.2;
}

.btn-whatsapp i {
    margin-bottom: 5px;
    font-size: 1.5em;
}

.btn-whatsapp span {
    font-size: 0.8em;
    font-weight: 400;
}

.btn-whatsapp:hover {
    background-color: var(--dark-green);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 8px 15px;
    font-size: 0.9em;
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--light-text);
    text-decoration: none;
}

.btn-outline-green {
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 30px;
}

.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: var(--light-text);
    text-decoration: none;
}

.btn-whatsapp-large {
    background-color: var(--primary-green);
    color: var(--light-text);
    padding: 15px 30px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp-large i {
    font-size: 1.8em;
}

.btn-whatsapp-large:hover {
    background-color: var(--dark-green);
    text-decoration: none;
}

.text-center {
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-size: 0.85em;
    padding: 10px 0;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 5px 0;
}

.top-info .google-rating i {
    color: gold;
}

/* Main Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Ajuste conforme o logo real */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    top: 100%; /* Posiciona abaixo do item pai */
    left: 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: var(--primary-green);
    color: var(--light-text);
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero-section {
    background: var(--dark-bg) url('https://via.placeholder.com/1920x600/1a1a1a/ffffff?text=SUA+MARCA+EM+DESTAQUE') no-repeat center center/cover;
    color: var(--light-text);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9) 50%, rgba(26, 26, 26, 0.5) 70%, rgba(26, 26, 26, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 60%;
}

.hero-text h1 {
    color: var(--light-text);
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary-green);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.usp-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.usp-grid i {
    color: var(--primary-green);
    font-size: 1.5em;
}

.usp-grid small {
    font-size: 0.7em;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Stats Section */
.stats-section {
    background-color: var(--light-gray);
    padding: 40px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.1em;
    font-weight: 600;
}

.stats-grid i {
    color: var(--primary-green);
    font-size: 2em;
    margin-bottom: 10px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.products-section h2 {
    margin-bottom: 10px;
}

.products-section .subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
}

.product-card p {
    font-size: 0.9em;
    color: #777;
}

.product-card .price {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Why GVH Section */
.why-gvh-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0;
    text-align: center;
}

.why-gvh-section h2 {
    color: var(--light-text);
    margin-bottom: 50px;
}

.why-gvh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.why-gvh-grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.1em;
    font-weight: 600;
}

.why-gvh-grid i {
    color: var(--primary-green);
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.portfolio-section h2 {
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.portfolio-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-grid img:hover {
    transform: scale(1.02);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 50px;
}

.testimonials-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Para quebrar linha em telas menores */
}

.testimonial-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    max-width: 350px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 1.2em;
}

.testimonial-info p {
    font-size: 0.9em;
    color: #777;
}

.testimonial-card .stars i {
    color: gold;
    font-size: 1em;
    margin-right: 2px;
}

.testimonial-card > p {
    font-style: italic;
    color: #555;
}

.carousel-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-green);
}

/* CTA Form Section */
.cta-form-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    color: var(--light-text);
}

.cta-form-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.cta-whatsapp {
    flex: 1;
    padding-right: 30px;
}

.cta-whatsapp h2 {
    color: var(--light-text);
    font-size: 2.2em;
    margin-bottom: 20px;
}

.cta-whatsapp p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.quote-form {
    flex: 1;
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
}

.quote-form h2 {
    color: var(--light-text);
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

.quote-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form .form-row {
    display: flex;
    gap: 15px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #3a3a3a;
    color: var(--light-text);
    font-size: 1em;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #bbb;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #ccc;
    padding: 50px 0 20px;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand p {
    line-height: 1.5;
}

.footer-links,
.footer-products,
.footer-contact,
.footer-social {
    padding-left: 20px; /* Adiciona um pequeno padding para alinhar com a imagem */
}

.footer-links h4,
.footer-products h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.1em;
}

.footer-links ul li,
.footer-products ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-products a {
    color: #ccc;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-green);
    font-size: 1.1em;
    margin-top: 3px;
}

.footer-contact .indent {
    margin-left: 25px; /* Alinha o "Sáb" com o "Seg a Sex" */
}

.footer-social a {
    color: var(--light-text);
    font-size: 1.8em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom .legal-links a {
    color: #ccc;
    margin-left: 20px;
}

.footer-bottom .legal-links a:hover {
    color: var(--primary-green);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Cor do WhatsApp */
    color: var(--light-text);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }
    .hero-text h1 {
        font-size: 2.8em;
    }
    .usp-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-form-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cta-whatsapp {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .quote-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .quote-form input {
        margin-bottom: 15px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    .footer-brand, .footer-links, .footer-products, .footer-contact, .footer-social {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact p {
        justify-content: center;
    }
    .footer-contact .indent {
        margin-left: 0;
    }
    .footer-bottom .container {
        flex-direction: column;
    }
    .footer-bottom .legal-links {
        margin-top: 10px;
    }
    .footer-bottom .legal-links a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .top-info {
        flex-direction: column;
        text-align: center;
    }
    .nav-content {
        flex-direction: column;
        gap: 20px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links li {
        margin: 5px 10px;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5em;
    }
    .usp-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .product-grid, .portfolio-grid, .why-gvh-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-carousel {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    .hero-text h1 {
        font-size: 2em;
    }
    .btn-whatsapp {
        font-size: 1em;
        padding: 12px 20px;
    }
    .btn-whatsapp i {
        font-size: 1.2em;
    }
    .btn-whatsapp span {
        font-size: 0.7em;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}