@charset 'UTF-8';


.bg__gradient {
  height: 250px;
  width: 250px;
  background-image: linear-gradient(90deg, #f2f2f2, #f8be02, #ffffff, #f8be02);
  filter: blur(100px);
  border-radius: 100%;
  background-size: 1000% 100%;
  
  animation: gradient 10s infinite ease-out;
  
  position: fixed;   /* muda de absolute para fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  z-index: -1;
  opacity: 0.7; /* opcional: deixa mais sutil */
}

@keyframes gradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 100%; }
}


/* BANNER */
#home-intro {
    width: 100%;
    overflow: hidden; /* evita scroll indesejado */
    text-align: center;
}

/* IMAGEM DO BANNER */
#home-intro .banner-img {
    width: 100%; /* ocupa toda a largura da tela */
    height: auto; /* mantém proporção 1600x650 */
    display: block;
}


#page {
    min-height: 1000px;
}



/* Seção Quem Somos */
#quem-somos {
  background: #f9f9f9; /* cinza claro moderno */
  padding: 80px 0;
}

#quem-somos h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #070062; /* azul escuro da sua paleta */
}

#quem-somos p {
  font-size: 1.1rem;
  line-height: 1.6;
}


.quem-somos-img {
  border-radius: 20px;        /* cantos arredondados */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* sombra suave */
  object-fit: cover;          /* mantém proporção sem distorcer */
  height: 400px;              /* altura fixa (ajuste se quiser) */
  transition: transform 0.6s ease-in-out;
}

.quem-somos-img:hover {
  transform: scale(1.02);     /* leve zoom ao passar o mouse */
}


/* Seção Serviços */
        .services {
            padding: 80px 0;
            background-color: var(--primary);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
        }
        .services h3 {
            color: var(--primary);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .service-item:hover {
            transform: translateY(-10px);
        }
        
        .service-item .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(231, 76, 60, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .service-item:hover .icon {
            background: var(--secondary);
            color: white;
            transform: rotate(10deg) scale(1.1);
        }
        
        .service-item .icon svg {
            width: 40px;
            height: 40px;
            stroke-width: 1.5;
          }
          .service-item .service-image {
    width: 100%;
    margin: 0 auto 25px;
    overflow: hidden;
    border-radius: 10px; /* opcional, arredondar */
}

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

          
.custom-gifts-section {
    padding: 80px 0;
    background-color: #8A5A28; /* Cor de fundo marrom da imagem */
    color: #fff;
}

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

.custom-gifts-section h2.woocommerce-loop-product__title {
    color: #ff !important;
}

.custom-gifts-section h2.woocommerce-loop-product__title::after {
    background-color: var(--primary) !important;
}

.custom-gifts-section h2.woocommerce-loop-product__title:hover::after {
    background-color: var(--primary-hover) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



/* Botão final (CTA) */
.gifts-cta {
    text-align: center;
    margin-top: 60px;
}
.gifts-cta a {
    background-color: var(--primary);
    padding: 12px 20px;
    border-radius: 25px;
    color: #fff;
}
.gifts-cta a:hover {
    background-color: var(--primary-hover);
    color: #fff;
}



        /* Galeria */
        .gh2-gallery {
            padding: 80px 0;
            background-color: var(--light);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .gh2-gallery h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--primary) !important;
            position: relative;
            padding-bottom: 15px;
        }
        
        
        .gh2-gallery p.subtitle {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 40px;
            color: var(--gray);
        }
        
        /* Filtros */
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .filter-btn {
            background: none;
            border: 2px solid var(--secondary);
            padding: 8px 20px;
            margin: 5px;
            cursor: pointer;
            font-size: 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            color: #555;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Galeria */
        .gh2-gallery {
            padding: 80px 0;
            background-color: var(--light);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .gh2-gallery h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .gh2-gallery p.subtitle {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 40px;
            color: var(--gray);
        }
        
        /* Filtros */
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .filter-btn {
            background: none;
            border: 2px solid var(--secondary);
            padding: 8px 20px;
            margin: 5px;
            cursor: pointer;
            font-size: 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            color: #555;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Grid da Galeria */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 250px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-item-overlay {
            transform: translateY(0);
        }
        
        .gallery-item-title {
            font-weight: bold;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .gallery-item-category {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.95);
            z-index: 10000;
            overflow: hidden;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        .modal-container {
            position: relative;
            width: 90%;
            max-width: 1000px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            max-width: 100%;
            max-height: 80vh;
            margin: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.5);
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 10001;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .modal-close:hover {
            color: var(--secondary);
            background: rgba(0,0,0,0.7);
        }
        
        .modal-caption {
            color: white;
            text-align: center;
            padding: 15px;
            font-size: 1.2rem;
            margin-top: 20px;
            background: rgba(0,0,0,0.7);
            border-radius: 8px;
            max-width: 80%;
        }
    
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
            z-index: 1000;
        }
        
        .modal-nav-btn {
            background-color: rgba(0,0,0,0.7);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 28px;
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        
        .modal-nav-btn:hover {
            background-color: var(--secondary);
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
        }

        .arrow-icon {
            width: 30px;
            height: 30px;
            fill: none;
            stroke: white;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .modal-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.1rem;
            background: rgba(0,0,0,0.7);
            padding: 8px 20px;
            border-radius: 20px;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 15px;
            }
            
            .gallery-item {
                height: 200px;
            }
            
            .gh2-gallery h2 {
                font-size: 2rem;
            }
            
            .modal-nav-btn {
                width: 50px;
                height: 50px;
            }
            
            .modal-caption {
                font-size: 1rem;
                max-width: 90%;
            }
            
            .modal-close {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 30px;
            }
            
            .arrow-icon {
                width: 25px;
                height: 25px;
            }
        }
 
/* Seção de orçamento de eventos */
.orcamento-eventos {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.container-orcamento {
  max-width: 800px;
  margin: 0 auto;
}

.orcamento-eventos h2 {
  font-size: 2rem;
  color: #1c1c7d;
  margin-bottom: 20px;
  font-weight: 700;
}

.orcamento-eventos p {
  color: #555;
  margin-bottom: ;
  line-height: 1.6;
}

/* Estilos do formulário Contact Form 7 */
.orcamento-eventos .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 8px; /* antes era 15px */
}

.orcamento-eventos .wpcf7 input[type="text"],
.orcamento-eventos .wpcf7 input[type="email"],
.orcamento-eventos .wpcf7 input[type="tel"],
.orcamento-eventos .wpcf7 textarea,
.orcamento-eventos .wpcf7 select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.orcamento-eventos .wpcf7 input:focus,
.orcamento-eventos .wpcf7 textarea:focus,
.orcamento-eventos .wpcf7 select:focus {
  border-color: #1c1c7d;
  box-shadow: 0 0 5px rgba(28, 28, 125, 0.25);
  outline: none;
}

.orcamento-eventos .wpcf7 textarea {
  min-height: 100px;
  resize: vertical;
}

/* Botão Enviar */
.orcamento-eventos .wpcf7 input[type="submit"] {
  background-color: #1c1c7d;
  color: #fff;
  border: none;
  padding: 12px 45px !important;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  margin: 18px auto 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
}

.orcamento-eventos .wpcf7 input[type="submit"]:hover {
  background-color: #14145a;
  transform: translateY(-2px);
}

/* Mensagens do CF7 */
.orcamento-eventos .wpcf7-response-output {
  margin-top: 15px;
  border-radius: 8px;
  padding: 10px 15px;
}
 
        
/* ================================
   Seção Newsletter
================================== */
.newsletter-section {
  background: #f9f9f9; /* fundo branco */
  color: var(--primary);
  padding: 80px 0 80px 0;
}

.newsletter-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Texto */
.newsletter-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--primary);
}

.newsletter-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222222;
}

.newsletter-text p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  color: #222222;
}

/* ================================
   Formulário Newsletter
================================== */
.newsletter-form {
  flex: 1;
  min-width: 300px;
}

.newsletter-form .tnp-subscription {
  width: 100%;
}

/* Nome + Email lado a lado */
.newsletter-form .tnp-field-name,
.newsletter-form .tnp-field-email {
  display: inline-block !important;
  width: 48% !important;
  margin: 0 1% 15px 0 !important;
  vertical-align: middle;
}

.newsletter-form .tnp-field-email {
  margin-right: 0 !important;
}

/* Inputs */
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 25px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
}

/* Botão */
.newsletter-form .tnp-field-button {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.newsletter-form input[type="submit"] {
  background: var(--secondary) !important; 
  color: #fff !important;
  font-weight: bold;
  padding: 12px 30px !important;
  border: none;
  border-radius: 25px !important;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form input[type="submit"]:hover {
  background: var(--primary) !important;
}

/* Checkbox de privacidade */
.newsletter-form .tnp-field-privacy {
  display: block;
  width: 100%;
  font-size: 13px;
  margin-top: 10px;
  color: var(--primary);
}

.newsletter-form .tnp-field-privacy a {
  color: var(--primary);
  text-decoration: underline;
}

/* ================================
   Responsividade
================================== */
@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form .tnp-field-name,
  .newsletter-form .tnp-field-email {
    display: block !important;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }

  .newsletter-form .tnp-field-button {
    text-align: center;
  }

  .newsletter-form input[type="submit"] {
    width: 100%;
  }
}