        /*
===========================================
    Estilo desenvolvido por:
    KLIF Media Marketing Digital
    https://klifmedia.com.br
    Cliente: Raquel de Paiva - Sommelière
    Projeto: Site institucional com foco em SEO e Experiência Enogastronômica
    Ano: 2025
===========================================
*/

/* 1. Import Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* 2. Fonte global e tamanho base aumentado em 10% no desktop */
html {
  font-family: 'Poppins', sans-serif;
  font-size: 110%; /* 100% → 110% */
}

/* 3. Aumento de 15% no responsivo (abaixo de 768px) */
@media (max-width: 768px) {
  html {
    font-size: 115%; /* 100% → 115% */
  }
}

        
        /* Reset and Base Styles */
        

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Lora", serif;
        }
        
        body {
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 100px; /* Altura aproximada do header */
        }

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

        ul {
            list-style: none;
        }

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

        /* Color Variables */
        :root {
            --primary-color: #5C1A1B;
            --secondary-color: #B88080;
            --accent-color: #D6B27D;
            --dark-color: #2c0e10;
            --light-color: #f5f5f5;
            --overlay-color: rgba(46, 13, 15, 0.7);
        }

        /* Header */
        header {
            background-color: var(--primary-color);
            width: 100%;
            padding: 15px 0;
            position: fixed; /* Tornar fixo */
            top: 0;           /* Fixado no topo */
            left: 0;
            z-index: 1000;    /* Z-index maior para sobrepor outros elementos */
            box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Sombra sutil opcional */
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100px;
        }

        .nav-menu {
            display: flex;
            
            color: #fff;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s;
            color: #fff; /* links brancos no fundo preto */
        }

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

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/pexels-timmossholder-2336117.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            text-align: left;
            position: relative;
        }

        .hero-content {
            max-width: 600px;
            margin-right: 10%;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: normal;
            color: var(--accent-color);
        }

        .hero h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight:600;
            color: var(--accent-color);
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 20px 40px;
            border: none;
            border-radius: 12px;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: var(--dark-color);
            color: #fff;
        }

        .btn-accent {
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 20px 40px;
            font-size: 1.5rem;

        }

        /* About Section */
        .about {
            background-color: var(--secondary-color);
            padding: 80px 0;
            color: #333;
        }

        .about-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
            color: var(--light-color);
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--dark-color);
            font-weight:600;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .image-frame {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }

        .image-frame::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            bottom: -15px;
            left: -15px;
            background-color: var(--accent-color);
            z-index: -1;
            border-radius: 10px;
        }

        .image-frame img {
            display: block;
            width: 100%;
            border-radius: 5px;
        }

        .about-quote {
            margin-top: 30px;
            color: var(--primary-color);
            font-style: italic;
            text-align: center;
        }

        /* Services Section */
        .services {
            padding: 47px 0;
            background-color: #fff;
            color: #333;
        }

        .services-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .services h2 {
            font-size: 2rem;
            margin-bottom: 80px;
            color: var(--primary-color);
            font-weight: 600;
        }

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

        .service-card {
            display: flex;
            align-items: flex-start;
            gap: 35px;
        }

        .service-image {
            width: 260px;
            height: 200px;
            overflow: hidden;
            flex-shrink: 0;
            border-radius: 12px;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: bold;
        }

        .service-content p {
            font-size: 1.0rem;
            color: black;
        }

        .services-bottom {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            align-items: center;
            margin-top: 90px;
        }

        .service-card-last {
            flex: 1;
            display: flex;
            align-items: flex-start;
            gap: 35px;
        }

        .cta-container {
            text-align: right;
            
        }

        .btn2 {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 18px 30px;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 150px;
        }

        .btn2:hover {
            background-color: var(--dark-color);
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: var(--primary-color);
        }

        .gallery-container {
            width: 120%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .gallery h3 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 40px;
            font-weight: 600;
            color: var(--accent-color);
        }

        .gallery-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 50px;
        }

        .gallery-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .gallery-slide {
            min-width: 33.333%;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .gallery-slide img {
            width: 450px;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
        }

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

        .gallery-nav:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }

        .gallery-prev {
            left: 10px;
        }

        .gallery-next {
            right: 10px;
        }

        .gallery-cta {
            text-align: center;
            margin-top: 30px;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: linear-gradient(to bottom,var(--primary-color),var(--secondary-color));
            color: #fff;
        }

        .contact-container {
            width: 300%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact p {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
            color: var(--accent-color);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .contact-content {
            display: flex;
            justify-content: space-between;
            gap: 50px;
        }

        .contact-info {
            flex: 0 0 30%;
            min-width: 300px;
        }

        .contact-logo {
            margin-bottom: 20px;
            text-align: center;
        }

        .contact-logo img {
            height: 150px;
        }

        .contact-text {
            margin-bottom: 30px;
            color: #ccc;
            font-size: 0.9rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            justify-content:center;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }

        .contact-details {
        margin-left: 35px;
        }

        .contact-details div {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .contact-details i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .contact-form {
            flex: 0 0 60%;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 50px;
            border-radius: 12px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 800;
        }

        .form-control {
            width: 100%;
            padding: 25px;
            border: none;
            border-radius: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .form-control:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .btn3 {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 20px 40px;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 900;
        }

        .btn3:hover {
            background-color: var(--accent-color);
            color: #fff;
        }

    input::placeholder {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    }


        /* Footer */
        footer {
            background-color: var(--dark-color);
            padding: 20px 0;
            text-align: center;
            color: #ccc;
            font-size: 0.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

/* Responsividade para tablets */
@media (max-width: 992px) {
    .about-container,
    .service-card,
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 20px;
        background-color: #5c1a1b;
        position: absolute;
        top: 80px;
        right: 30px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

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

    .hero h2 {
        font-size: 1.6rem;
    }
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }

    .header h2 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 0 15px;
        height: 58vh;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .about-text h2,
    .services h2,
    .gallery h2,
    .contact h2 {
       text-align: center;
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .form-control {
        font-size: 1rem;
    }

    .btn2 {
        width: 100%;
        text-align: center;
    }

    .image-frame {
        height: 100%;
        width: 80%;
        margin-left: 100px;
    }
}

/* Responsividade para celulares pequenos */
@media (max-width: 480px) {
    .gallery-container {
    width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .about-text h2,
    .gallery h2,
    .contact h2 {
    font-size: 0.9rem;
    }

    .services h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .gallery-slide img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .service-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .about-container,
    .service-card,
    .contact-container {
        width: 80%;
        height: auto;
    }
    
    .logo img {
        height: 50px;
    }

    .header {
        height: 30px;
        
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    
        
    }

    .services-bottom,
    .service-card-last {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn2 {
        font-size: 0.9rem;
        padding: 10px;
        margin: 8px;
        
    }

    .service-content p {
        font-size: 16px;
        margin-left: 20px;
        padding: 10px;
    }

    .service-content h3 {
        font-size:18px;
        margin-left: 10px;
    }


    

}
@media (max-width: 1024px) {
    .gallery-container {
        width: 100%;
        padding: 0 20px;
    }

    .gallery-slider {
        padding: 30px;
    }

    .gallery-slide {
        min-width: 50%;
        padding: 0 8px;
    }

    .gallery-slide img {
        width: 100%;
        height: auto;
    }

        .contact-container {
        width: 100%;
        padding: 0 20px;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        margin-left: 0;
        justify-content: left;
    }

    .contact-details div {
        justify-content: center;
    }

    .contact-form {
        width: 100%;
        padding: 30px;
    }

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

    .btn3 {
        width: 100%;
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .gallery-slider {
        padding: 20px;
    }

    .gallery-slide {
        min-width: 30%;
        
    }

    .gallery-slide img {
        width: 100%;
        height: auto;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .contact h2 {
        font-size: 1.6rem;
    }

    .contact p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .contact-logo img {
        height: 120px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .contact-details div {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-control {
        padding: 18px;
        font-size: 1rem;
    }

    .btn3 {
        font-size: 0.9rem;
        padding: 16px;
    }

    .contact-form {
        width: 95%;
    }

    .btn2 {
        font-size: 0.9rem;
    }
    .services-bottom {
        display: flex;
        flex-direction: column;
        
    }
}

@media (max-width: 480px) {
    .gallery h2 {
        font-size: 1.8rem;
    }

    .gallery h3 {
        font-size: 1.3rem;
    }

    .gallery-slider {
        padding: 15px;
    }

    .gallery-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .gallery-cta {
        margin-top: 20px;
    }

        .contact h2 {
        font-size: 1.4rem;
    }

    .contact p {
        font-size: 0.95rem;
    }

    .contact-logo img {
        height: 100px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-control {
        padding: 15px;
    }

    .btn3 {
        font-size: 0.95rem;
        padding: 14px;
    }
}

select.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 25px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    appearance: none;
}

select.form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1); /* ícone branco */
}

@media (max-width: 768px) {
  .services h2 {
    text-align: center;
    font-size: 1.8rem;
    padding: 0 15px;
  }

  .services-container {
    text-align: center;
  }
}

/* CENTRALIZAÇÃO NO RESPONSIVO */
@media (max-width: 768px) {
  /* todo o texto fica centralizado */
  body,
  body * {
    text-align: center !important;
  }

  /* imagens ficam centralizadas */
  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}



