/* CSS para o novo design - Tema Azul */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Segoe UI", sans-serif;
  color: #2c3e50;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  min-height: 100vh;
}

a {
  color: #7bb3e8;
  text-decoration: none;
}

a:hover {
  color: #5a9ed6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  color: #345a9d;
}

/* Texto justificado */
.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

/* Cantos arredondados para todas as imagens */
img {
  border-radius: 12px;
}

/* Imagens específicas com cantos arredondados */
.img-fluid, .img-thumbnail {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(123, 179, 232, 0.15);
}

/* Carrossel de imagens */
.carousel-item img {
  border-radius: 15px;
}

/* Imagens de conteúdo com efeitos modernos e surpreendentes */
.content img {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 50%;
    height: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    filter: brightness(1) contrast(1) saturate(1);
}

/* Efeito hover com zoom e filtros */
.content img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    border-color: #345a9d;
    z-index: 10;
}

/* Overlay que aparece no hover */
.content img::before {
    content: "🔍 Clique para ampliar";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 90, 157, 0.8), rgba(123, 179, 232, 0.6));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

.content img:hover::before {
    opacity: 1;
}

/* Efeito de brilho que passa pela imagem */
.content img::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg) translateX(-200%);
    transition: transform 0.6s ease;
}

.content img:hover::after {
    transform: rotate(45deg) translateX(200%);
}

/* Classes para flutuação com efeitos aprimorados */
.content img.float-left {
    float: left;
    margin-right: 25px;
    margin-left: 0;
    shape-outside: circle(50%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.content img.float-right {
    float: right;
    margin-left: 25px;
    margin-right: 0;
    shape-outside: circle(50%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

/* Efeito de parallax para imagens centralizadas */
.content img:not(.float-left):not(.float-right) {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    transform-style: preserve-3d;
}

/* Lightbox moderno */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Animação de entrada para imagens */
@keyframes imageReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.content img {
    animation: imageReveal 0.8s ease-out;
}

/* Efeito de reflexo para imagens especiais */
.content img.reflect {
    position: relative;
}

.content img.reflect::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    transform: scaleY(-1);
    opacity: 0.3;
    pointer-events: none;
}

/* Efeito vintage/retro */
.content img.vintage {
    filter: sepia(0.7) contrast(1.2) brightness(0.9);
}

.content img.vintage:hover {
    filter: sepia(0) contrast(1) brightness(1);
}

/* Efeito neon */
.content img.neon {
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px #00ffff, inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.content img.neon:hover {
    box-shadow: 0 0 30px #00ffff, 0 0 40px #00ffff, inset 0 0 30px rgba(0, 255, 255, 0.2);
}

/* Cards e containers com imagens */
.card, .card-img-top, .card-img-bottom {
  border-radius: 12px;
  border: 1px solid rgba(52, 90, 157, 0.1);
}

/* Botões e elementos interativos */
.btn {
  border-radius: 10px;
  background: linear-gradient(135deg, #345a9d, #4a6fa5);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #23345a, #345a9d);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 90, 157, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #345a9d, #5a9ed6);
}

.btn-outline-primary {
  border: 2px solid #345a9d;
  color: #345a9d;
  background: transparent;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #345a9d, #5a9ed6);
  color: white;
}

/* Elementos de formulário */
.form-control, .form-select {
  border-radius: 8px;
  border: 2px solid rgba(52, 90, 157, 0.2);
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #345a9d;
  box-shadow: 0 0 0 0.2rem rgba(52, 90, 157, 0.25);
}

/*--------------------------------------------------------------
# Header Original (mantido para compatibilidade)
--------------------------------------------------------------*/
.navbar-brand img {
  max-height: 45px;
}
.navbar .nav-link {
  margin-left: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
  color: #345a9d;
}

/*--------------------------------------------------------------
# Menu Flutuante Inovador
--------------------------------------------------------------*/
.floating-nav-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 95%;
  max-width: 1200px;
}

.floating-nav {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.95));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(52, 90, 157, 0.2);
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(52, 90, 157, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideDown 0.8s ease-out;
}

.floating-nav.nav-hidden {
  transform: translateY(-100px);
  opacity: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 35px;
  position: relative;
}

/* Logo Container */
.logo-container {
  flex-shrink: 0;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(52, 90, 157, 0.1), rgba(123, 179, 232, 0.1));
  padding: 8px;
}

.logo-wrapper:hover {
  transform: scale(1.1);
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  display: block;
}

.logo-bg-effect {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(45deg, #345a9d, #5a9ed6, #345a9d);
  border-radius: 15px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

.logo-wrapper:hover .logo-bg-effect {
  opacity: 0.3;
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.1;
  }
  50% { 
    transform: scale(1.05);
    opacity: 0.3;
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Menu Items */
.nav-menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.menu-items {
  display: flex;
  gap: 15px;
  align-items: center;
}

.menu-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  color: #345a9d;
  font-weight: 600;
  font-size: 18px;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.menu-icon {
  font-size: 18px;
  margin-right: 12px;
  transition: all 0.3s ease;
  width: 20px;
  text-align: center;
  color: #345a9d;
}

.menu-icon i {
  font-size: 16px;
}

.menu-item:hover .menu-icon,
.menu-item.active .menu-icon {
  color: #345a9d;
}

/* Ícones específicos para melhor alinhamento */
.menu-icon .fa-home,
.menu-icon .fa-box,
.menu-icon .fa-info-circle,
.menu-icon .fa-building,
.menu-icon .fa-phone,
.menu-icon .fa-envelope,
.menu-icon .fa-file-alt {
  font-weight: 600;
}

.menu-text {
  transition: all 0.3s ease;
}

.menu-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(52, 90, 157, 0.3), transparent);
  transition: left 0.5s ease;
}

.menu-item:hover .menu-effect {
  left: 100%;
}

.menu-item:hover .menu-link {
  color: #345a9d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 90, 157, 0.15);
  background: rgba(52, 90, 157, 0.08);
}

.menu-item:hover .menu-icon {
  transform: scale(1.1);
  color: #345a9d;
}

.menu-item.active .menu-link {
  background: linear-gradient(135deg, #345a9d, #23345a);
  color: #fff;
  box-shadow: 0 4px 15px rgba(52, 90, 157, 0.3);
}

.menu-item.active .menu-icon {
  color: #fff;
  animation: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-2px); }
}

/* Menu Toggle (hamburguer) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(240, 173, 78, 0.1);
}

.bar {
  width: 25px;
  height: 3px;
  background: #444;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.menu-toggle.active .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
  background: #f0ad4e;
}

.menu-toggle.active .bar2 {
  opacity: 0;
}

.menu-toggle.active .bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
  background: #f0ad4e;
}

/* Overlay para mobile */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Main Header Spacer */
.main-header {
  height: 100px;
}

main{
    padding-top: 25px;
}
/* Responsive Design */
@media (max-width: 1250px) {
  .floating-nav-container {
    top: 10px;
    width: 98%;
  }
  
  .nav-content {
    padding: 15px 25px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .menu-items {
    flex-direction: column;
    padding: 20px;
    gap: 5px;
  }
  
  .menu-item {
    width: 100%;
  }
  
  .menu-link {
    justify-content: flex-start;
    padding: 18px 24px;
    font-size: 20px;
    font-weight: 600;
  }
  
  .menu-icon {
    font-size: 20px;
    margin-right: 15px;
    width: 22px;
  }
  
  .menu-icon i {
    font-size: 18px;
  }
  
  .main-header {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .floating-nav-container {
    top: 10px;
    width: 98%;
  }
  
  .nav-content {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .floating-nav-container {
    top: 5px;
    width: 99%;
  }
  
  .nav-content {
    padding: 10px 15px;
  }
  
  .logo-img {
    height: 55px;
    max-width: 150px;
  }
  
  .menu-link {
    padding: 12px 16px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Hero Carousel
--------------------------------------------------------------*/
#hero-carousel {
  height: 80vh;
  min-height: 500px;
  border-radius: 15px;
  overflow: hidden;
  margin: 20px 0;
}
#hero-carousel .carousel-item {
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
}
/*--------------------------------------------------------------
# Hero Carousel - Design Limpo e Moderno
--------------------------------------------------------------*/
#hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

#hero-carousel .carousel-item {
  height: 100vh;
  min-height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay gradiente azul */
#hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 179, 232, 0.6) 0%,
    rgba(155, 199, 237, 0.5) 50%,
    rgba(173, 207, 246, 0.3) 100%
  );
  z-index: 1;
}

/* Container do conteúdo */
#hero-carousel .carousel-caption {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: #1e293b;
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* Títulos principais */
#hero-carousel h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #5a9ed6;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #5a9ed6 0%, #7bb3e8 50%, #adc7f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Parágrafos */
#hero-carousel p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Botões */
#hero-carousel .btn {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #9bc7ed 0%, #7bb3e8 100%);
  border: none;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(123, 179, 232, 0.3);
}

#hero-carousel .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(123, 179, 232, 0.4);
  background: linear-gradient(135deg, #7bb3e8 0%, #5a9ed6 100%);
  color: white;
}

/* Indicadores */
.carousel-indicators {
  bottom: 30px;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background: white;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Controles */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: white;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 25px;
  height: 25px;
  background-size: 100%;
  filter: invert(1);
}

/* Animações suaves */
.carousel-item.active .carousel-caption {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  #hero-carousel {
    height: 100vh;
    min-height: 500px;
  }
  
  #hero-carousel .carousel-item {
    height: 100vh;
    min-height: 500px;
  }
  
  #hero-carousel .carousel-caption {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
    border-radius: 20px;
  }
  
  #hero-carousel .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }
  
  .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-control-next {
    right: 15px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
}

/* Custom Carousel Styles */
#myCarousel {
  height: 75vh;
}

#myCarousel .carousel-inner {
  height: 100%;
}

#myCarousel .carousel-item {
  height: 100%;
}

#myCarousel .carousel-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#myCarousel .carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  padding: 1.5rem;
  bottom: 3rem;
  left: 10%;
  right: 10%;
}

#myCarousel .carousel-caption h1,
#myCarousel .carousel-caption p {
  color: #fff;
}

/*--------------------------------------------------------------
# Marketing Content / Featurettes
--------------------------------------------------------------*/
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
.featurette-divider {
  margin: 5rem 0; 
}
.featurette-heading {
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05rem;
}

/* Product Card Home */
.product-card-home {
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(52, 90, 157, 0.1);
  box-shadow: 0 4px 15px rgba(52, 90, 157, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}
.product-card-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(52, 90, 157, 0.2);
  border-color: rgba(52, 90, 157, 0.3);
}
.product-card-home img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  padding: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}
.product-card-home:hover img {
  transform: scale(1.05);
}

/* Product Card List */
.product-card {
    transition: box-shadow .3s, transform .3s;
    border: 1px solid rgba(52, 90, 157, 0.15);
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(52, 90, 157, 0.2);
    border-color: rgba(52, 90, 157, 0.3);
}
.product-card .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 12px;
}
.product-card .card-footer {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
    border-top: 1px solid rgba(52, 90, 157, 0.1);
}

/*--------------------------------------------------------------
# Product Detail Page
--------------------------------------------------------------*/
.product-detail-container .main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 15px;
    border: 1px solid rgba(123, 179, 232, 0.1);
    box-shadow: 0 4px 20px rgba(123, 179, 232, 0.15);
}
.thumbnail-gallery .thumbnail-item {
    margin-right: 10px;
    cursor: pointer;
}
.thumbnail-gallery .thumbnail-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    padding: 5px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 2px solid rgba(52, 90, 157, 0.2);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
}
.thumbnail-gallery .thumbnail-item img:hover {
    border-color: #345a9d;
    transform: scale(1.05);
}
.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
}
.nutritional-table {
    font-size: 0.9rem;
    margin-top: 15px;
}
.nutritional-table thead th {
    background: linear-gradient(135deg, #345a9d, #5a9ed6);
    color: #fff;
    font-weight: bold;
    text-align: center;
    border: 2px solid #345a9d;
    padding: 12px 8px;
}
.nutritional-table tbody td {
    border: 1px solid rgba(52, 90, 157, 0.2);
    padding: 8px;
    vertical-align: middle;
    background: rgba(248, 251, 255, 0.5);
}
.nutritional-table tbody td:first-child {
    font-weight: bold;
    background: linear-gradient(135deg, #dbe6f7, #b3c7e8);
    text-align: left;
    color: #345a9d;
}
.nutritional-table tbody td:not(:first-child) {
    text-align: center;
    color: #2c3e50;
}
/* Linha de informação de porções */
.nutritional-table .info-row td {
    background: linear-gradient(135deg, #345a9d, #5a9ed6);
    color: #fff;
    font-weight: bold;
    text-align: left;
    border-top: 2px solid #345a9d;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: linear-gradient(135deg, #23345a 0%, #345a9d 50%, #5a9ed6 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><polygon points="30 0 60 30 30 60 0 30"/></g></g></svg>');
  opacity: 0.3;
}

footer .container {
  position: relative;
  z-index: 1;
}

footer h5 {
  color: #b3c7e8;
  font-weight: 600;
}

footer a {
  color: #b3c7e8;
  transition: all 0.3s ease;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: none;
  transform: translateX(5px);
}

footer .btn {
  background: linear-gradient(135deg, #345a9d, #5a9ed6);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

footer .btn:hover {
  background: linear-gradient(135deg, #23345a, #345a9d);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
# Quill Editor Content Styles
--------------------------------------------------------------*/
.content .ql-size-small {
  font-size: 0.75em;
}
.content .ql-size-large {
  font-size: 1.5em;
}
.content .ql-size-huge {
  font-size: 2.5em;
}
.content .ql-align-center {
  text-align: center;
}
.content .ql-align-right {
  text-align: right;
}
.content .ql-align-justify {
  text-align: justify;
}
.content strong {
  font-weight: bold;
}
.content em {
  font-style: italic;
}
.content u {
  text-decoration: underline;
}
.content s {
  text-decoration: line-through;
}
.content ol, .content ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.content blockquote {
  border-left: 4px solid #345a9d;
  margin: 1em 0;
  padding-left: 1em;
  font-style: italic;
  background: rgba(52, 90, 157, 0.05);
  border-radius: 0 8px 8px 0;
  color: #345a9d;
}

/*--------------------------------------------------------------
# Tema Azul - Elementos Adicionais
--------------------------------------------------------------*/

/* Gradientes de fundo */
.bg-blue-gradient {
  background: linear-gradient(135deg, #345a9d 0%, #5a9ed6 50%, #23345a 100%);
}

.bg-light-blue {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

/* Cards com tema azul */
.card-blue {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(52, 90, 157, 0.1);
  box-shadow: 0 4px 15px rgba(123, 179, 232, 0.1);
  transition: all 0.3s ease;
}

.card-blue:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 90, 157, 0.2);
}

/* Títulos com destaque azul */
.title-blue {
  color: #345a9d;
  position: relative;
}

.title-blue::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #345a9d, #5a9ed6);
  border-radius: 2px;
}

/* Seções com fundo azul claro */
.section-blue {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0;
  border: 1px solid rgba(123, 179, 232, 0.1);
}

/* Links com efeito azul */
.link-blue {
  color: #345a9d;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.link-blue:hover {
  color: #23345a;
  text-decoration: none;
}

.link-blue::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #345a9d, #5a9ed6);
  transition: width 0.3s ease;
}

.link-blue:hover::after {
  width: 100%;
}

/* Badges e labels azuis */
.badge-blue {
  background: linear-gradient(135deg, #345a9d, #5a9ed6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Alertas azuis */
.alert-blue {
  background: rgba(52, 90, 157, 0.1);
  border: 1px solid rgba(52, 90, 157, 0.3);
  color: #345a9d;
  border-radius: 12px;
  padding: 1rem;
}

/* Carrossel com tema azul */
.carousel-control-prev,
.carousel-control-next {
  background: linear-gradient(135deg, rgba(52, 90, 157, 0.8), rgba(123, 179, 232, 0.8));
  border-radius: 50%;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-indicators [data-bs-target] {
  background-color: #345a9d;
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.carousel-indicators .active {
  background-color: #23345a;
}

/* Paginação azul */
.pagination .page-link {
  color: #345a9d;
  border-color: rgba(52, 90, 157, 0.3);
  background: rgba(248, 251, 255, 0.8);
}

.pagination .page-link:hover {
  color: #23345a;
  background: rgba(52, 90, 157, 0.1);
  border-color: #345a9d;
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #345a9d, #5a9ed6);
  border-color: #345a9d;
}

/* Formulários com tema azul melhorado */
.form-floating label {
  color: #345a9d;
}

.form-control:focus {
  border-color: #345a9d;
  box-shadow: 0 0 0 0.2rem rgba(52, 90, 157, 0.25);
}

/* Tabelas com tema azul */
.table-blue {
  background: rgba(248, 251, 255, 0.5);
}

.table-blue thead th {
  background: linear-gradient(135deg, #345a9d, #5a9ed6);
  color: white;
  border: none;
}

.table-blue tbody tr:hover {
  background: rgba(52, 90, 157, 0.05);
}

/*--------------------------------------------------------------
# Responsividade e Mobile
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .floating-nav-container {
    width: 98%;
    top: 10px;
  }
  
  .nav-content {
    padding: 12px 20px;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .menu-items {
    flex-direction: column;
    gap: 8px;
  }
  
  .menu-link {
    padding: 12px 16px;
    font-size: 16px;
  }
  
  .section-blue {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }
  
  .featurette-heading {
    font-size: 35px;
  }
}

@media (max-width: 576px) {
  .floating-nav-container {
    width: 95%;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .menu-link {
    padding: 10px 12px;
    font-size: 15px;
  }
  
  .btn {
    padding: 12px 20px;
  }
  
  .section-blue {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Animações e Transições Azuis
--------------------------------------------------------------*/
@keyframes blueWave {
  0%, 100% { 
    background-position: 0% 50%;
  }
  50% { 
    background-position: 100% 50%;
  }
}

.blue-wave-bg {
  background: linear-gradient(-45deg, #345a9d, #5a9ed6, #23345a, #345a9d);
  background-size: 400% 400%;
  animation: blueWave 10s ease-in-out infinite;
}

@keyframes blueFloat {
  0%, 100% { 
    transform: translateY(0px);
  }
  50% { 
    transform: translateY(-10px);
  }
}

.float-blue {
  animation: blueFloat 3s ease-in-out infinite;
}

@keyframes blueGlow {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(52, 90, 157, 0.2);
  }
  50% { 
    box-shadow: 0 8px 30px rgba(52, 90, 157, 0.4);
  }
}

.glow-blue {
  animation: blueGlow 2s ease-in-out infinite;
}

/* --- Estilos da página de contato --- */
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-card-title {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.3);
}

.contact-card-title i {
    color: #007bff;
}

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

.contact-label {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contact-label i {
    color: #007bff;
}

.contact-input, .contact-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 123, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: #2c3e50;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-input:focus, .contact-textarea:focus {
    outline: none;
    border-color: #007bff;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
}

.contact-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.contact-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
}

.contact-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.contact-btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: #1e3a8a;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.contact-btn-secondary:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
    border-color: #3b82f6;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 197, 253, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.contact-info-icon i {
    color: white;
    font-size: 18px;
}

.contact-info-content h6 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: #475569;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-info-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #1d4ed8;
}

.contact-alert {
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-alert-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #166534;
}

.contact-alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

/* reCAPTCHA styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    min-height: 78px; /* Altura mínima do reCAPTCHA */
}

#recaptcha-container > div {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}
