/* ============================================
   GRÁFICA ARO - ESTILOS PRINCIPAIS
   Paleta: Verde, Branco, Cinza, Escuro
   ============================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --green-900: #0a3d1f;
  --green-800: #0d5a2d;
  --green-700: #117a3e;
  --green-600: #15944b;
  --green-500: #1aad58;
  --green-400: #2ecc71;
  --green-300: #58d68d;
  --green-200: #82e0aa;
  --green-100: #abebc6;
  --green-50: #d5f5e3;

  --dark-900: #111827;
  --dark-800: #1f2937;
  --dark-700: #374151;
  --dark-600: #4b5563;
  --dark-500: #6b7280;

  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  --gold-600: #b8860b;
  --gold-500: #daa520;
  --gold-400: #f0c75e;
  --gold-300: #f5deb3;
  --gold-100: #fdf6e3;

  --pink-600: #c471a5;
  --pink-500: #d4849b;
  --pink-400: #e8a0bf;
  --pink-300: #f0c4d8;
  --pink-100: #fdf0f5;

  --gradient-primary: linear-gradient(
    135deg,
    var(--green-700),
    var(--green-400)
  );
  --gradient-dark: linear-gradient(135deg, var(--green-900), var(--green-700));
  --gradient-hero: linear-gradient(
    135deg,
    #0a3d1f 0%,
    #117a3e 50%,
    #15944b 100%
  );
  --gradient-gold: linear-gradient(135deg, #b8860b, #daa520, #f0c75e);
  --gradient-pink: linear-gradient(135deg, #c471a5, #e8a0bf, #f0c4d8);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-green: 0 10px 30px rgba(26, 173, 88, 0.25);
  --shadow-gold: 0 10px 30px rgba(184, 134, 11, 0.25);
  --shadow-pink: 0 10px 30px rgba(196, 113, 165, 0.25);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --font-family: "Poppins", sans-serif;
  --font-elegant: "Playfair Display", serif;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  /* Removido scroll-behavior: smooth do CSS para controlar via JS */
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-700);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

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

.section {
  padding: 100px 0;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-900);
  font-weight: 700;
  line-height: 1.3;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-highlight {
  color: var(--green-400);
  text-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--dark-500);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(26, 173, 88, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-700);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1fba59;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--gray-200);
}

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

/* Logo */
.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

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

.logo-name {
  font-size: 1.2rem;
  color: var(--dark-900);
  line-height: 1.2;
}

.logo-name strong {
  color: var(--green-700);
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--dark-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-700);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-700);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 24px;
}

.header-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark-800);
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 140px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--white);
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  animation: float-slow 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 15%;
  animation: float-slow 18s ease-in-out infinite 2s;
}

.shape-4 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 20%;
  animation: float-slow 12s ease-in-out infinite 4s;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 10px) scale(0.95);
  }
  75% {
    transform: translate(15px, 15px) scale(1.02);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #ffd700;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #82e0aa, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.12rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-300);
  display: inline;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-300);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Hero Visual / Graphic */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  position: relative;
  width: 420px;
  height: 420px;
}

.graphic-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  z-index: 2;
}

.graphic-card i {
  font-size: 1.6rem;
}

.graphic-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.card-1 {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: card-float-center 6s ease-in-out infinite;
}

.card-2 {
  bottom: 60px;
  left: 0;
  animation: card-float 6s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 60px;
  right: 0;
  animation: card-float 6s ease-in-out infinite 2s;
}

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

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

.hero-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(26, 173, 88, 0.4);
  z-index: 3;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(26, 173, 88, 0.3);
  }
  50% {
    box-shadow: 0 0 80px rgba(26, 173, 88, 0.5);
  }
}

.circle-inner {
  text-align: center;
  color: var(--white);
}

.circle-inner i {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
}

.circle-inner span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-element {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  z-index: 1;
}

.float-1 {
  top: 25%;
  left: -10px;
  animation: float-el 8s ease-in-out infinite;
}
.float-2 {
  top: 15%;
  right: 10px;
  animation: float-el 7s ease-in-out infinite 1s;
}
.float-3 {
  bottom: 10px;
  left: 25%;
  animation: float-el 9s ease-in-out infinite 2s;
}
.float-4 {
  bottom: 40%;
  right: -10px;
  animation: float-el 6s ease-in-out infinite 3s;
}

@keyframes float-el {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translate(8px, -12px) rotate(10deg);
    opacity: 1;
  }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ============================================
   SOBRE
   ============================================ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  background: rgb(223, 222, 222);
  border-radius: var(--radius-xl);
  padding: 40px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.about-icon-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-icon-item i {
  font-size: 2rem;
  color: var(--green-600);
  margin-bottom: 10px;
  display: block;
}

.about-icon-item span {
  font-weight: 600;
  color: var(--dark-800);
  font-size: 0.9rem;
}

.sobre-content .section-tag,
.sobre-content .section-title {
  text-align: left;
}

.sobre-text {
  font-size: 1.05rem;
  color: var(--dark-600);
  margin-bottom: 16px;
}

.sobre-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  color: var(--green-500);
  font-size: 1.2rem;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  color: var(--dark-800);
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--dark-500);
  line-height: 1.5;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: var(--gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.promo-content {
  color: var(--white);
  max-width: 650px;
}

.promo-quote-icon {
  font-size: 2rem;
  opacity: 0.3;
  margin-bottom: 12px;
  display: block;
}

.promo-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.promo-content p {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
  background: var(--gray-50);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-icon {
  width: 64px;
  height: 64px;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.servico-icon i {
  font-size: 1.6rem;
  color: var(--green-600);
  transition: var(--transition);
}

.servico-card:hover .servico-icon {
  background: var(--gradient-primary);
}

.servico-card:hover .servico-icon i {
  color: var(--white);
}

.servico-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.servico-card p {
  font-size: 0.9rem;
  color: var(--dark-500);
  margin-bottom: 18px;
  line-height: 1.6;
}

.servico-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.servico-link:hover {
  gap: 10px;
  color: var(--green-700);
}

.servico-card-cta {
  background: var(--gradient-hero);
  border-color: transparent;
  color: var(--white);
}

.servico-card-cta h3 {
  color: var(--white);
}

.servico-card-cta p {
  color: rgba(255, 255, 255, 0.85);
}

.servico-card-cta .servico-icon {
  background: rgba(255, 255, 255, 0.15);
}

.servico-card-cta .servico-icon i {
  color: var(--white);
}

.servico-card-cta .servico-link {
  color: rgba(255, 255, 255, 0.95);
}

.servico-card-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 61, 31, 0.3);
}

.servico-card-cta::before {
  background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   CONVITES FINOS
   ============================================ */
.convites-finos {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.convites-finos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 10% 20%,
      rgba(184, 134, 11, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(196, 113, 165, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.convites-finos .section-tag {
  background: var(--gold-100);
  color: var(--gold-600);
}

.convites-finos .section-tag i {
  margin-right: 4px;
}

.convites-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  align-items: stretch;
}

/* Convite Card Premium */
.convite-category {
  display: flex;
}

.convite-card-premium {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition-slow);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.convite-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Card Visual (Top) */
.convite-card-visual {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.convite-elegant-frame {
  width: 180px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.08);
}

.convite-frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, 0.7);
  border-style: solid;
}

.corner-tl {
  top: -3px;
  left: -3px;
  border-width: 3px 0 0 3px;
}

.corner-tr {
  top: -3px;
  right: -3px;
  border-width: 3px 3px 0 0;
}

.corner-bl {
  bottom: -3px;
  left: -3px;
  border-width: 0 0 3px 3px;
}

.corner-br {
  bottom: -3px;
  right: -3px;
  border-width: 0 3px 3px 0;
}

.convite-frame-content {
  text-align: center;
  color: var(--white);
}

.convite-main-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.convite-script-text {
  font-family: var(--font-elegant);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 500;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.convite-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.ornament-line {
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.convite-ornament i {
  font-size: 0.7rem;
  opacity: 0.8;
}

.convite-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  animation: convite-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes convite-shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Card Info (Bottom) */
.convite-card-info {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.convite-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.convite-badge-premium.badge-pink {
  background: var(--pink-100);
  color: var(--pink-600);
}

.convite-badge-premium.badge-dark {
  background: #e8ecf0;
  color: #2c3e50;
}

.convite-card-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.convite-card-info > p {
  font-size: 0.9rem;
  color: var(--dark-500);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

/* Features List */
.convite-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.convite-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--dark-600);
}

.convite-feature i {
  color: var(--green-500);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Acabamentos Tags */
.convite-acabamentos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.acabamento-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
}

.acabamento-tag i {
  font-size: 0.6rem;
}

.acabamento-tag.tag-pink {
  background: var(--pink-100);
  color: var(--pink-600);
}

.acabamento-tag.tag-dark {
  background: #e8ecf0;
  color: #2c3e50;
}

/* Convite Buttons */
.btn-convite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  margin-top: auto;
  overflow: hidden;
}

.btn-convite-casamento {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-convite-casamento:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(184, 134, 11, 0.4);
}

.btn-convite-15anos {
  background: var(--gradient-pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-convite-15anos:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(196, 113, 165, 0.4);
}

.btn-convite-eventos {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.25);
}

.btn-convite-eventos:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(44, 62, 80, 0.4);
}

/* Convites Destaque Banner */
.convites-destaque {
  margin-bottom: 60px;
}

.convites-destaque-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 44px;
  background: linear-gradient(135deg, #fdf6e3 0%, #fdf0f5 50%, #f3f4f6 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.convites-destaque-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: var(--shadow-gold);
}

.convites-destaque-text {
  flex: 1;
}

.convites-destaque-text h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.convites-destaque-text h3 span {
  color: var(--gold-500);
}

.convites-destaque-text p {
  font-size: 0.92rem;
  color: var(--dark-500);
}

/* Processo de Criação */
.convites-processo {
  padding-top: 20px;
}

.processo-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--dark-800);
}

.processo-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.processo-step {
  text-align: center;
  flex: 1;
  max-width: 220px;
  padding: 0 16px;
  position: relative;
}

.step-number {
  font-family: var(--font-elegant);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 10px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.step-icon i {
  font-size: 1.4rem;
  color: var(--green-600);
}

.processo-step:hover .step-icon {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-green);
}

.processo-step:hover .step-icon i {
  color: var(--white);
}

.processo-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.processo-step p {
  font-size: 0.85rem;
  color: var(--dark-500);
  line-height: 1.5;
}

.processo-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  color: var(--gray-300);
  font-size: 1rem;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diferencial-item {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.diferencial-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-200);
}

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

.diferencial-icon i {
  font-size: 1.8rem;
  color: var(--green-600);
  transition: var(--transition);
}

.diferencial-item:hover .diferencial-icon {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-green);
}

.diferencial-item:hover .diferencial-icon i {
  color: var(--white);
}

.diferencial-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.diferencial-item p {
  font-size: 0.9rem;
  color: var(--dark-500);
  line-height: 1.6;
}

/* ============================================
   PORTFÓLIO
   ============================================ */
.portfolio {
  background: var(--gray-50);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dark-600);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-green);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: var(--transition-slow);
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.portfolio-thumb i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 61, 31, 0.95) 0%,
    rgba(10, 61, 31, 0.5) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.05);
}

.portfolio-item:hover .portfolio-thumb i {
  color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.portfolio-cat {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--green-200);
  font-weight: 500;
  width: fit-content;
}

/* ============================================
   ORÇAMENTO
   ============================================ */
.orcamento {
  background: var(--gray-50);
}

.orcamento-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.orcamento-info .section-tag,
.orcamento-info .section-title {
  text-align: left;
}

.orcamento-info p {
  font-size: 1.05rem;
  color: var(--dark-500);
  margin-bottom: 28px;
}

.orcamento-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--dark-700);
}

.benefit-item i {
  color: var(--green-500);
  font-size: 1.1rem;
}

.orcamento-contact-quick {
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.orcamento-contact-quick p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* Form */
.orcamento-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--dark-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(26, 173, 88, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  display: block;
  color: #e74c3c;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 4px;
  min-height: 18px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  margin-top: 20px;
  border: 1px solid var(--green-200);
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success i {
  font-size: 2.5rem;
  color: var(--green-500);
  margin-bottom: 10px;
  display: block;
}

.form-success strong {
  color: var(--green-700);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}

.form-success p {
  color: var(--dark-500);
  font-size: 0.9rem;
}

/* ============================================
   CONTATO
   ============================================ */
.contato {
  background: var(--white);
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contato-card-zap,
.contato-card-instagram,
.contato-card-email,
.contato-card-mapa {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.contato-card-zap:hover,
.contato-card-instagram:hover,
.contato-card-email:hover,
.contato-card-mapa:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-200);
}

.contato-icon {
  width: 68px;
  height: 68px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.contato-icon i {
  font-size: 1.6rem;
  color: var(--green-600);
  transition: var(--transition);
}

.contato-card-zap:hover .contato-icon {
  background: #25d366;
}

.contato-card-instagram:hover .contato-icon {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.contato-card-email:hover .contato-icon {
  background: rgb(94, 105, 251);
}

.contato-card-mapa:hover .contato-icon {
  background: red;
}

.contato-card-zap:hover .contato-icon i,
.contato-card-instagram:hover .contato-icon i,
.contato-card-email:hover .contato-icon i,
.contato-card-mapa:hover .contato-icon i {
  color: var(--white);
}

.contato-card-zap h3,
.contato-card-instagram h3,
.contato-card-email h3,
.contato-card-mapa h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contato-card-zap p,
.contato-card-instagram p,
.contato-card-email p,
.contato-card-mapa p {
  font-size: 0.9rem;
  color: var(--dark-500);
  margin-bottom: 14px;
  line-height: 1.5;
}

.contato-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contato-link:hover {
  color: var(--green-700);
  gap: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-logo .logo-icon {
  background: var(--gradient-primary);
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-name strong {
  color: var(--green-400);
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a.social-instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.footer-social a.social-mapa:hover {
  background: #e60d0d;
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.footer-social a.social-whatsapp:hover {
  background: #25d366;
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.footer-social a.social-email:hover {
  background: #5e9bff;
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(94, 155, 255, 0.4);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-400);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--green-400);
  margin-top: 4px;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   BOTÕES FLUTUANTES (Instagram + WhatsApp)
   ============================================ */
.instagram-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
  transition: var(--transition);
  animation: instagram-pulse 2s ease-in-out infinite;
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(225, 48, 108, 0.5);
}

.img-instagram {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.instagram-tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--dark-800);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  transform: translateX(10px);
}

.instagram-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.instagram-float:hover .instagram-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes instagram-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(225, 48, 108, 0.6),
      0 0 0 12px rgba(225, 48, 108, 0.1);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--dark-800);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  transform: translateX(10px);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(37, 211, 102, 0.6),
      0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   RESPONSIVO
   ============================================ */

/* Large Desktop */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-graphic {
    width: 360px;
    height: 360px;
  }
  .convites-showcase {
    gap: 24px;
  }
  .nav-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contato-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .convites-showcase {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .convite-card-premium {
    display: grid;
    grid-template-columns: 280px 1fr;
  }
  .convite-card-visual {
    height: 100%;
    min-height: 300px;
  }
  .convites-destaque-inner {
    flex-direction: column;
    text-align: center;
  }
  .processo-steps {
    flex-wrap: wrap;
    gap: 20px;
  }
  .processo-connector {
    display: none;
  }
  .processo-step {
    flex: 0 0 calc(50% - 20px);
    max-width: none;
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-graphic {
    width: 320px;
    height: 320px;
  }
  .hero-center-circle {
    width: 130px;
    height: 130px;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-content .section-tag,
  .sobre-content .section-title {
    text-align: center;
  }
  .sobre-text {
    text-align: center;
  }

  .promo-inner {
    flex-direction: column;
    text-align: center;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orcamento-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .orcamento-info .section-tag,
  .orcamento-info .section-title {
    text-align: center;
  }
  .orcamento-info p {
    text-align: center;
  }
  .orcamento-benefits {
    align-items: center;
  }
  .orcamento-contact-quick {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  /* Header Mobile */
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
    padding: 80px 30px 30px;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    display: block;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--green-50);
  }

  .nav-link::after {
    display: none;
  }

  /* Mobile Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-overlay.show {
    display: block;
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding: 110px 0 120px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .hero-graphic {
    width: 280px;
    height: 280px;
  }
  .graphic-card {
    padding: 14px 18px;
    font-size: 0.8rem;
  }
  .graphic-card i {
    font-size: 1.3rem;
  }
  .hero-center-circle {
    width: 110px;
    height: 110px;
  }
  .circle-inner i {
    font-size: 1.5rem;
  }
  .circle-inner span {
    font-size: 0.7rem;
  }
  .floating-element {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  /* Grids Mobile */
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
  .contato-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* Form Mobile */
  .form-row {
    grid-template-columns: 1fr;
  }
  .orcamento-form-wrapper {
    padding: 28px 20px;
  }

  /* Promo */
  .promo-content h2 {
    font-size: 1.6rem;
  }

  /* Section */
  .section-title {
    font-size: 1.8rem;
  }

  /* Convites Mobile */
  .convite-card-premium {
    display: block;
  }
  .convite-card-visual {
    height: 220px;
  }
  .processo-step {
    flex: 0 0 100%;
    max-width: 260px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-graphic {
    width: 250px;
    height: 250px;
  }
  .about-visual {
    padding: 24px;
    min-height: 360px;
  }
  .section {
    padding: 60px 0;
  }
  .promo-banner {
    padding: 50px 0;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }
  .instagram-float {
    bottom: 84px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }
  .img-zap {
    width: 34px;
    height: 34px;
  }
  .img-instagram {
    width: 34px;
    height: 34px;
  }
  .convites-destaque-inner {
    padding: 24px 20px;
  }
  .convite-card-visual {
    height: 200px;
  }
}

/* Print styles */
@media print {
  .header,
  .whatsapp-float,
  .instagram-float {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  body {
    color: #000;
  }
  .section {
    padding: 30px 0;
  }
}

.img-zap {
  width: 35px;
  height: 35px;
}
.img-instagram {
  width: 35px;
  height: 35px;
}
