/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta de cores da Renata Martins Estética Avançada */
  --primary: #b29393; /* Dusty rose */
  --secondary: #e5d8d8; /* Light pink */
  --accent: #5c401d; /* Dark gold */
  --gold: #c5a979; /* Medium gold */
  --light-gold: #fff4e3; /* Light gold */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --text-dark: #5c401d;
  --text-light: #b29393;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-gold: linear-gradient(
    135deg,
    var(--accent),
    var(--gold),
    var(--light-gold)
  );
  --shadow: 0 10px 30px rgba(92, 64, 29, 0.1);
  --shadow-hover: 0 20px 40px rgba(92, 64, 29, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

/* Header */
header {
  background: #b29393;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.logo-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--light-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.desktop-nav a:hover {
  color: var(--light-gold);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-gold);
  transition: var(--transition);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 100px 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--gold) 70%,
    var(--light-gold) 85%,
    #fff8e1 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 150% 100%;
  background-position: 85% 0;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--white);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  margin-top: -50px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
#about {
  padding: 50px 0;
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.about-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Services Section */
#services {
  padding: 100px 0;
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition);
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-benefits {
  list-style: none;
  text-align: left;
}

.service-benefits li {
  padding: 8px 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 25px;
}

.service-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Technology Section */
.technology-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.technology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.technology-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.tech-benefits {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tech-benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tech-benefit i {
  font-size: 2rem;
  color: var(--secondary);
  margin-top: 5px;
}

.tech-benefit h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.tech-benefit p {
  color: var(--text-light);
}

.technology-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Results Section */
.results-section {
  padding: 100px 0;
}

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

.result-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.result-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.result-card:hover .result-image {
  transform: scale(1.05);
}

.result-info {
  padding: 25px;
}

.result-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.result-info p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.result-time {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
}

.testimonial-author-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-method i {
  font-size: 2rem;
  color: var(--gold);
}

.contact-method h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-method p {
  opacity: 0.8;
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* WhatsApp Float */
/* Chatbot Floating Button */
.chatbot-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chatbot-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
  font-weight: 600;
  position: relative;
}

.chatbot-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.3);
}

.chatbot-btn i {
  font-size: 1.5rem;
}

.chatbot-indicator {
  display: flex;
  gap: 2px;
  margin-left: 5px;
}

.chatbot-indicator span {
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.chatbot-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}
.chatbot-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Chatbot Modal */
.chatbot-modal {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 420px;
  height: 600px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chatbot-modal.active {
  display: flex;
}

.chatbot-header {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background: #25d366;
  color: var(--white);
  gap: 15px;
}

.chatbot-avatar {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.chatbot-info {
  flex: 1;
}

.chatbot-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.chatbot-status {
  font-size: 0.9rem;
  opacity: 0.9;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
}

.chatbot-messages {
  flex: 1;
  padding: 25px 25px 15px 25px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chatbot-message {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 1rem;
  line-height: 1.5;
}

.chatbot-message.bot {
  background: #f0f0f0;
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.chatbot-message.user {
  background: #25d366;
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.chatbot-options {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chatbot-option {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  text-align: left;
}

.chatbot-option:hover {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.chatbot-input {
  padding: 20px 25px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 12px;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e9ecef;
  border-radius: 25px;
  font-size: 0.95rem;
  outline: none;
}

.chatbot-input input:focus {
  border-color: #25d366;
}

.chatbot-input button {
  background: #25d366;
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chatbot-input button:hover {
  background: #128c7e;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.footer-logo-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--light-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-section p {
  opacity: 0.8;
  margin-bottom: 20px;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-sections-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

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

/* Mobile Sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #b29393;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-hover);
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #b29393;
}

.sidebar-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sidebar-logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.sidebar-logo-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--light-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

.sidebar-nav ul {
  list-style: none;
  padding: 20px;
}

.sidebar-nav li {
  margin-bottom: 15px;
}

.sidebar-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  display: block;
  padding: 10px 0;
  transition: var(--transition);
}

.sidebar-nav a:hover {
  color: var(--light-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-right {
    order: -1;
  }

  .hero-image {
    height: 400px;
    margin-bottom: 10px;
    margin-top: -100px;
  }

  .hero-title {
    font-size: 2rem;
    margin-top: -100px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .technology-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-sections-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .logo-name {
    font-size: 1.3rem;
  }

  .logo-subtitle {
    font-size: 0.7rem;
  }

  .sidebar-logo-name {
    font-size: 1.1rem;
  }

  .sidebar-logo-subtitle {
    font-size: 0.6rem;
  }

  .chatbot-text {
    display: none;
  }

  .chatbot-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .chatbot-modal {
    width: 380px;
    height: 550px;
    right: 15px;
    bottom: 90px;
  }

  .social-proof-container {
    bottom: 90px;
    left: 15px;
  }

  .social-proof-notification {
    min-width: 280px;
    padding: 12px;
  }

  .proof-name {
    font-size: 0.85rem;
  }

  .proof-action {
    font-size: 0.75rem;
  }

  .proof-time {
    font-size: 0.7rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-text p {
    font-size: 0.8rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

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

.animate {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Social Proof Notifications */
.social-proof-container {
  position: fixed;
  bottom: 80px;
  left: 25px;
  z-index: 998;
  pointer-events: none;
}

.social-proof-notification {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(92, 64, 29, 0.15);
  padding: 15px;
  min-width: 320px;
  transform: translateX(-400px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  border-left: 4px solid var(--gold);
  position: relative;
  animation: slideInProof 0.5s ease forwards;
}

@keyframes slideInProof {
  from {
    transform: translateX(-400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutProof {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-400px);
    opacity: 0;
  }
}

.social-proof-notification.hide {
  animation: slideOutProof 0.5s ease forwards;
}

.proof-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.proof-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proof-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.proof-action {
  color: var(--text-light);
  font-size: 0.8rem;
  margin: 2px 0;
}

.proof-action strong {
  color: var(--text-dark);
}

.proof-time {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
}

.proof-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.proof-close {
  position: absolute;
  top: 5px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.proof-close:hover {
  color: var(--text-dark);
}

/* Cookie/LGPD Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(92, 64, 29, 0.95);
  color: var(--white);
  padding: 20px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-text i {
  margin-right: 8px;
  color: var(--light-gold);
}

.cookie-link {
  color: var(--light-gold);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background: var(--gold);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--accent);
}

.cookie-decline {
  background: transparent;
  color: var(--light-gold);
  border: 1px solid var(--light-gold);
}

.cookie-decline:hover {
  background: var(--light-gold);
  color: var(--text-dark);
}

/* Foco visível para navegação por teclado */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
