/*
Theme Name: Binho IA
Theme URI: https://aemjibzu.manus.space
Author: Manus
Author URI: https://manus.ai
Description: Tema personalizado para o Binho IA, assistente virtual de WhatsApp para revendedores de GLP.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: binho
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --primary-color: #0A4B7C;
  --secondary-color: #FF8A3D;
  --text-color: #333333;
  --light-bg: #f5f8fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

/* Header */
.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin-left: 30px;
}

.main-navigation a {
  color: var(--text-color);
  font-weight: 500;
}

.main-navigation a:hover {
  color: var(--primary-color);
}

.binho-header-button {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

.binho-header-button:hover {
  background-color: #e67e35;
  color: var(--white);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to right, var(--primary-color), #1a6bac);
  color: var(--white);
  padding: 80px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

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

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

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

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.binho-btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

.binho-btn-primary:hover {
  background-color: #e67e35;
  color: var(--white);
}

.binho-btn-secondary {
  background-color: transparent;
  color: var(--white);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--white);
}

.binho-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-image {
  text-align: center;
  margin-bottom: 20px;
}

.benefit-image img {
  height: 180px;
  width: auto;
}

.benefit-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}

.benefit-description {
  color: var(--text-color);
}

.benefits-cta {
  text-align: center;
  margin-top: 50px;
}

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

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

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

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-description {
  margin-bottom: 30px;
}

.about-brand {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}

.about-brand-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.solution-item {
  margin-bottom: 50px;
}

.solution-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.solution-description {
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  color: var(--white);
}

.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.contact-form button:hover {
  background-color: #e67e35;
}

.contact-info {
  margin-top: 20px;
}

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

.contact-info-item i {
  margin-right: 10px;
}

.faq-container {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
}

.faq-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-color);
}

/* Footer */
.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Media Queries para melhor responsividade */
@media (max-width: 768px) {
  .hero-content, .hero-image {
    flex: 100%;
    padding-right: 0;
  }
  
  .hero-content {
    margin-bottom: 30px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .main-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .about-container, .contact-container {
    flex-direction: column;
  }
  
  .about-image, .about-content {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .contact-form-container, .faq-container {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 15px 0;
  }
  
  .site-branding {
    flex: 0 0 auto;
    margin-right: 15px;
  }
  
  .mobile-menu-toggle {
    order: 2;
    margin-left: auto;
    margin-right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    z-index: 100;
  }
  
  .header-cta {
    order: 3;
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
  
  .binho-header-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin-top: 10px;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
  margin-left: auto;
  margin-right: 15px;
}

@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
  }
  
  .site-branding {
    flex: 1;
  }
  
  .header-cta {
    margin-left: 20px;
  }
}

@media (max-width: 576px) {
  .header-cta {
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
    text-align: center;
  }
  
  .binho-header-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .binho-btn-primary, .binho-btn-secondary {
    width: 100%;
    text-align: center;
  }
}
