/* Estilos gerais para o site da KAUTELLA SORAGI LIMITED */
:root {
  --primary-color: #2c3e50; /* Azul escuro - transmite confiança e profissionalismo */
  --secondary-color: #3498db; /* Azul mais claro - associado à educação e conhecimento */
  --accent-color: #f39c12; /* Laranja/âmbar - energia e criatividade */
  --text-color: #333333;
  --light-color: #ecf0f1;
  --footer-color: #2c3e50;
  --success-color: #27ae60;
}

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

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

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

/* Header e navegação */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo span {
  color: var(--secondary-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero section */
.hero {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e67e22;
}

/* Seções principais */
section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.section-title {
  position: relative;
  display: inline-block;
}

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

/* Sobre nós */
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.value-item {
  flex-basis: 30%;
  min-width: 250px;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.value-item i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.value-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Produtos/Serviços */
.products {
  background-color: var(--light-color);
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-card {
  flex-basis: 30%;
  min-width: 280px;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
  height: 200px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 50px;
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Política de Reembolso */
.refund-policy {
  background-color: #fff;
}

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

.policy-step {
  margin-bottom: 30px;
  padding: 25px;
  background-color: var(--light-color);
  border-radius: 10px;
  position: relative;
}

.policy-step h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.policy-step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Contato */
.contact {
  background-color: var(--light-color);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info {
  flex-basis: 40%;
  min-width: 300px;
}

.contact-info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 20px;
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-form {
  flex-basis: 55%;
  min-width: 300px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2980b9;
}

/* Footer */
footer {
  background-color: var(--footer-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex-basis: 23%;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

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

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

.footer-col ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #bdc3c7;
}

.payment-methods {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-methods img {
  height: 30px;
  margin: 0 10px 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-methods img:hover {
  opacity: 1;
}

.security-badges {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  margin: 0 10px 10px;
  font-size: 12px;
}

.security-badge i {
  margin-right: 5px;
  color: var(--success-color);
}

/* Responsividade */
@media (max-width: 992px) {
  .value-item, .product-card {
    flex-basis: 45%;
  }
  
  .footer-col {
    flex-basis: 45%;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    background-color: white;
    width: 100%;
    height: calc(100vh - 80px);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul.active {
    left: 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .about-text, .about-image {
    flex: 100%;
    padding-right: 0;
  }
  
  .about-image {
    margin-top: 40px;
  }
  
  .value-item, .product-card {
    flex-basis: 100%;
  }
  
  .contact-info, .contact-form {
    flex-basis: 100%;
  }
  
  .contact-form {
    margin-top: 50px;
  }
  
  .footer-col {
    flex-basis: 100%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  section h2 {
    font-size: 1.8rem;
  }
}

/* Páginas legais */
.legal-page {
  padding: 120px 0 80px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.legal-section p, .legal-section ul {
  margin-bottom: 20px;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section ul li {
  margin-bottom: 10px;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}


/* Ajustes específicos para a página de contato */
.contact-page .payment-security .payment-logos img {
  height: 35px; /* Reduzir altura dos logos de pagamento */
  max-width: 70px; /* Limitar largura para evitar distorção */
  object-fit: contain; /* Manter proporção */
  margin-bottom: 10px; /* Adicionar espaço inferior */
}

.contact-page .payment-security .security-logos .security-logo {
  text-align: center; /* Centralizar conteúdo do logo */
  margin: 0 15px 15px; /* Ajustar margens */
}

.contact-page .payment-security .security-logos .security-logo img {
  height: 40px; /* Reduzir altura dos logos de segurança */
  max-width: 40px;
  object-fit: contain;
  display: block; /* Para centralizar com margin auto */
  margin: 0 auto 5px; /* Centralizar e adicionar espaço inferior */
}

.contact-page .payment-security .security-logos .security-logo p {
  font-size: 12px; /* Ajustar tamanho da fonte da legenda */
}



/* Mobile Language Selector Styles */
.mobile-lang-selector-header {
    padding: 10px 20px;
    font-weight: bold;
    color: #ccc; /* Lighter color for the header */
    border-top: 1px solid #444; /* Separator line */
    margin-top: 10px;
}

.language-option-mobile {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language-option-mobile:hover {
    background-color: #444; /* Hover effect */
}

.language-option-mobile img {
    width: 20px;
    height: auto;
    margin-right: 10px;
    border-radius: 2px;
}

.language-option-mobile span {
    color: #fff;
    font-size: 1rem;
}

/* Ensure mobile language options are only visible in the mobile menu */
header nav ul .mobile-lang-selector-header,
header nav ul .language-option-mobile {
    display: none; /* Hide by default */
}

@media (max-width: 768px) {
    header nav.active ul .mobile-lang-selector-header,
    header nav.active ul .language-option-mobile {
        display: flex; /* Show only when mobile menu is active */
    }
}

