/*
Theme Name: Andrade Higienização
Theme URI: https://andradehigienizacao.com.br
Author: Andrade Higienização
Author URI: https://andradehigienizacao.com.br
Description: Tema profissional para empresa de limpeza e higienização de estofados
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: andrade-higienizacao
Tags: cleaning, business, professional, responsive, modern
*/

/* ===========================
   RESET E BASE
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #49897B;
  --color-secondary: #155e95;
  --color-black: #000000;
  --color-off-white: #F3F2F1;
  --color-white: #FFFFFF;
  --color-gray: #666666;
  --color-light-gray: #F5F5F5;
  --gradient-brand: linear-gradient(135deg, #49897B, #000000);
  --gradient-hero: linear-gradient(135deg, #49897B, #155e95);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
}

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

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

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.site-logo {
  font-size: 24px;
  font-weight: bold;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-navigation a {
  color: var(--color-black);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

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

.cta-button {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(73, 137, 123, 0.1), rgba(21, 94, 149, 0.1));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-black);
}

.hero-content .highlight {
  color: var(--color-primary);
}

.hero-content p {
  font-size: 20px;
  color: var(--color-gray);
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(73, 137, 123, 0.2);
  font-size: 14px;
  font-weight: 500;
}

.badge-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

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

.btn-hero {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  padding: 16px 32px;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===========================
   PROBLEM SOLUTION
   =========================== */
.problem-solution-section {
  padding: 100px 0;
  background: var(--color-white);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-problem {
  border: 2px solid rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.05);
}

.card-solution {
  border: 2px solid rgba(73, 137, 123, 0.2);
  background: rgba(73, 137, 123, 0.05);
}

.card-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 12px;
}

.icon-problem {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.icon-solution {
  background: rgba(73, 137, 123, 0.1);
  color: var(--color-primary);
}

.card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.card ul {
  list-style: none;
}

.card li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.list-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.icon-problem-list {
  background: #dc2626;
}

.icon-solution-list {
  background: var(--color-primary);
}

/* ===========================
   SERVICES
   =========================== */
.services-section {
  padding: 100px 0;
  background: var(--color-light-gray);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--color-black);
}

.section-header p {
  font-size: 20px;
  color: var(--color-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 2px solid rgba(73, 137, 123, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: var(--color-primary);
}

.service-icon {
  width: 64px;
  height: 64px;
  padding: 16px;
  background: rgba(73, 137, 123, 0.1);
  border-radius: 12px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card .description {
  color: var(--color-gray);
  margin-bottom: 24px;
}

.benefits-list {
  margin-bottom: 24px;
}

.benefits-list h4 {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefits-list ul {
  list-style: none;
}

.benefits-list li {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.benefits-list li:before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 40px 0;
  text-align: center;
}

.stat-item {
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(73, 137, 123, 0.1);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: var(--color-primary);
  font-size: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-light-gray);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--color-black);
}

.author-location {
  font-size: 14px;
  color: var(--color-gray);
}

/* ===========================
   BEFORE/AFTER
   =========================== */
.before-after-section {
  padding: 100px 0;
  background: var(--color-light-gray);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.comparison-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.comparison-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-medium);
}

.comparison-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

.comparison-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
}

.label-before {
  background: #dc2626;
  color: white;
}

.label-after {
  background: var(--color-primary);
  color: white;
}

.comparison-description {
  padding: 24px;
  text-align: center;
  font-size: 16px;
  color: var(--color-gray);
}

/* ===========================
   FAQ
   =========================== */
.faq-section {
  padding: 100px 0;
  background: var(--color-white);
}

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

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-question {
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--color-gray);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--color-black);
  color: var(--color-off-white);
  padding: 80px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 24px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--color-off-white);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column a:hover {
  opacity: 1;
  color: var(--color-primary);
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-primary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.whatsapp-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  cursor: pointer;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

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

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

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

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .problem-solution-grid,
  .services-grid,
  .testimonials-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .main-navigation {
    display: none;
  }

  .header-content {
    flex-direction: column;
    gap: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* ===========================
   WORDPRESS SPECIFIC
   =========================== */
.wp-block-image {
  margin-bottom: 24px;
}

.alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px;
}

.alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 24px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 14px;
  color: var(--color-gray);
  text-align: center;
  padding: 8px;
}
