/* Global Styles */
:root {
    --primary-color: #B26C3D;
    --primary-dark: #8e5630;
    --primary-light: #d49a72;
    --secondary-color: #f8f1e9;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-bg: #2b2118;
    --light-bg: #f9f5f0;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background-color: #25D366; /* WhatsApp green */
    color: white !important;
    border: 2px solid #25D366;
}

.cta-primary:hover {
    background-color: #25D366; /* Mantém a mesma cor sem efeito hover */
    border-color: #25D366;
}

.cta-secondary {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    margin-left: 10px;
}

.cta-secondary:hover {
    background-color: transparent;
    color: white !important;
}

.cta-center {
    text-align: center;
    margin: 2rem 0;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 80px;
    width: auto;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone {
    margin-right: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-text);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/ambiente2.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--light-text);
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    margin-top: 2rem;
}

/* Services Section */
#services {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-box p {
    color: #666;
}

/* Products Section */
#products {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.product-category {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease;
}

/* Ajuste específico para a imagem Para Eventos */
.product-category:nth-child(4) .product-image img {
    object-position: center 40%;
}

/* Ajuste específico para a imagem Para Eventos no mobile */
@media (max-width: 768px) {
    .product-category:nth-child(4) .product-image img {
        object-position: center 70%;
        object-fit: contain;
    }
}

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

.product-category h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.product-category p {
    color: #666;
    font-size: 0.95rem;
}

/* About Section */
#about {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-content {
    padding: 20px;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.5rem;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

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

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.client-name {
    font-weight: 600;
    color: var(--primary-color);
}

.recognition {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.badge {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    margin: 0 10px 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Location Section */
#location {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 3rem;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
#contact {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 1rem;
}

.slogan {
    font-style: italic;
    color: #ccc;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

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

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

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

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

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

/* Mobile/Desktop Visibility */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-secondary {
        margin-left: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: auto;
        max-height: 220px;
    }
    
    .product-image img {
        object-fit: contain;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    header {
        padding: 10px 0;
        position: absolute;
        width: 100%;
        z-index: 10;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .phone {
        display: none;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 60vh;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        letter-spacing: -0.5px;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        font-weight: 500;
    }

    .cta-buttons {
        margin-top: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 85%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons a {
        padding: 15px 20px;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .cta-buttons .cta-secondary {
        font-size: 0.95rem;
    }
    
    .service-box,
    .product-category,
    .testimonial-box {
        padding: 20px;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    #hero {
        height: auto;
        min-height: 100vh;
        padding: 0;
        background-position: center 30%;
        display: flex;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-category h3 {
        font-size: 1.2rem;
    }
    
    .product-category p {
        font-size: 0.9rem;
    }
}
