/* ============================================
   VET CARVALHO - Clínica Veterinária
   Landing Page Premium
   ============================================ */

:root {
  --green: #0f7a3e;
  --green-dark: #0a5a2d;
  --green-light: #1ea65a;
  --green-soft: #e8f7ee;
  --red: #d92027;
  --red-dark: #b3151b;
  --red-soft: #fde8e9;
  --gold: #f5b400;

  --bg: #ffffff;
  --bg-soft: #f7fbf8;
  --text: #1a2421;
  --text-soft: #5b6b65;
  --border: #e6ede9;

  --shadow-sm: 0 4px 12px rgba(15, 122, 62, .08);
  --shadow-md: 0 10px 30px rgba(15, 122, 62, .12);
  --shadow-lg: 0 25px 60px rgba(15, 122, 62, .18);
  --shadow-red: 0 15px 40px rgba(217, 32, 39, .25);

  --gradient-green: linear-gradient(135deg, #1ea65a 0%, #0f7a3e 100%);
  --gradient-red:   linear-gradient(135deg, #ef3b42 0%, #b3151b 100%);
  --gradient-mix:   linear-gradient(135deg, #1ea65a 0%, #0f7a3e 50%, #d92027 100%);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;

  --font: 'Poppins', system-ui, sans-serif;
  --font-display: 'Playfair Display', serif;

  --container: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: .3s; }
button { border: 0; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top:0; left:0; pointer-events: none;
  z-index: 9999; transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
}
.cursor-ring {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--green);
  transition: transform .15s ease-out, width .25s, height .25s, border-color .25s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--red);
  background: rgba(217, 32, 39, .08);
}
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--gradient-green);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity .6s, visibility .6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { text-align: center; color: #fff; }
.paw-loader {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  animation: pawPulse 1.5s ease-in-out infinite;
}
.paw-loader i { font-size: 36px; color: #fff; }
.preloader-logo p {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 2px;
  animation: fadeInUp .8s .2s both;
}
@keyframes pawPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
  50%     { transform: scale(1.1); box-shadow: 0 0 0 25px rgba(255,255,255,0); }
}
@keyframes fadeInUp { from {opacity:0; transform: translateY(20px);} to {opacity:1; transform:none;} }

/* ---------- FLOATING PAWS ---------- */
.floating-paws {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.paw {
  position: absolute;
  bottom: -50px;
  font-size: 28px;
  color: var(--green);
  opacity: .07;
  left: var(--x);
  transform: scale(var(--s));
  animation: floatPaw 18s linear infinite;
  animation-delay: var(--d);
}
@keyframes floatPaw {
  0%   { transform: translateY(0) rotate(0) scale(var(--s)); opacity: 0; }
  10%  { opacity: .08; }
  90%  { opacity: .08; }
  100% { transform: translateY(-110vh) rotate(360deg) scale(var(--s)); opacity: 0; }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: padding .3s, box-shadow .3s, background .3s;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  background: var(--gradient-green);
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; font-size: 22px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .4s;
}
.logo-icon::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-red);
  opacity: 0; transition: opacity .4s;
}
.logo-icon i { position: relative; z-index: 1; }
.logo:hover .logo-icon { transform: rotate(-10deg) scale(1.05); }
.logo:hover .logo-icon::before { opacity: 1; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  color: var(--green);
}
.logo-name em { color: var(--red); font-style: italic; }
.logo-sub { font-size: 11px; color: var(--text-soft); letter-spacing: 1.5px; text-transform: uppercase; }

.logo-light .logo-name { color: #fff; }
.logo-light .logo-name em { color: #ff8b8f; }
.logo-light .logo-sub { color: rgba(255,255,255,.7); }

.nav-menu { display: flex; gap: 8px; }
.nav-link {
  font-weight: 500; font-size: 15px;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 100px;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--gradient-green);
  border-radius: 4px;
  transition: width .3s;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link.active::after, .nav-link:hover::after { width: 20px; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 10px;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--green);
  border-radius: 4px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-weight: 600; font-size: 15px;
  border-radius: 100px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, background .3s, color .3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradient-green);
  color: #fff;
  box-shadow: 0 10px 25px rgba(15,122,62,.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(15,122,62,.5); }

.btn-ghost {
  background: rgba(15,122,62,.08);
  color: var(--green);
}
.btn-ghost:hover { background: var(--green); color: #fff; transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-3px); }

.btn-white {
  background: #fff;
  color: var(--green);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn-white:hover { transform: translateY(-3px) scale(1.03); }

.btn-cta { padding: 11px 22px; font-size: 14px; }
.btn-cta i { font-size: 18px; }

.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 160px 0 80px;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(30,166,90,.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217,32,39,.05), transparent 50%),
    linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: blob 20s ease-in-out infinite;
}
.blob1 {
  width: 500px; height: 500px;
  background: var(--green-light);
  top: -150px; right: -100px;
}
.blob2 {
  width: 400px; height: 400px;
  background: var(--red);
  bottom: -150px; left: -100px;
  animation-delay: -7s;
  opacity: .15;
}
.blob3 {
  width: 300px; height: 300px;
  background: var(--gold);
  top: 40%; left: 40%;
  animation-delay: -14s;
  opacity: .12;
}
@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-60px) scale(1.1); }
  66%     { transform: translate(-40px,40px) scale(.95); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 100px;
  font-weight: 600; font-size: 13px;
  border: 1px solid rgba(15,122,62,.15);
  margin-bottom: 24px;
}
.badge i { color: var(--red); animation: heartBeat 1.5s infinite; }
@keyframes heartBeat {
  0%,100% { transform: scale(1); }
  25%     { transform: scale(1.2); }
  50%     { transform: scale(1); }
  75%     { transform: scale(1.15); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
}
.gradient-text {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.underline-text {
  position: relative; display: inline-block; font-style: italic;
}
.underline-text::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 8px;
  background: rgba(217,32,39,.25);
  border-radius: 8px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-subtitle strong { color: var(--green); }

.hero-cta {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--green);
  display: inline-block;
}
.stat span:nth-child(2) { display: inline; font-size: 28px; color: var(--red); font-weight: 700; }
.stat p { font-size: 13px; color: var(--text-soft); margin-top: 2px; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  width: 100%; aspect-ratio: 1;
  display: grid; place-items: center;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(15,122,62,.2);
}
.ring1 { width: 95%; height: 95%; animation: spin 30s linear infinite; }
.ring2 { width: 75%; height: 75%; animation: spin 25s linear infinite reverse; border-color: rgba(217,32,39,.15); }
.ring3 { width: 55%; height: 55%; animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-image-wrap {
  position: relative;
  width: 75%; aspect-ratio: 1;
}
.hero-image {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  animation: floaty 5s ease-in-out infinite;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-15px); }
}

.float-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
  animation: floaty 4s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 14px; }
.float-card small { font-size: 12px; color: var(--text-soft); }

.card-top    { top: 5%;   left: -10%; animation-delay: -1s; }
.card-bottom { bottom: 8%; right: -10%; animation-delay: -2.5s; }
.card-side   { top: 45%;  right: -15%; animation-delay: -3.5s; }

.card-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; font-size: 18px;
  flex-shrink: 0;
}
.card-icon.green { background: var(--gradient-green); }
.card-icon.red   { background: var(--gradient-red); }

.scroll-down {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid var(--green);
  border-radius: 20px;
  display: grid; place-items: start center;
  padding-top: 8px;
  z-index: 2;
}
.scroll-down span {
  width: 4px; height: 8px;
  background: var(--green);
  border-radius: 2px;
  animation: scrollMove 1.8s infinite;
}
@keyframes scrollMove {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ---------- BENEFITS BAR ---------- */
.benefits-bar {
  background: var(--gradient-green);
  padding: 28px 0;
  color: #fff;
  position: relative; z-index: 2;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  display: flex; align-items: center; gap: 14px;
  font-weight: 600;
  justify-content: center;
}
.benefit i {
  font-size: 26px;
  background: rgba(255,255,255,.15);
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  transition: transform .4s;
}
.benefit:hover i { transform: rotate(10deg) scale(1.1); }

/* ---------- SECTIONS ---------- */
.section { padding: 110px 0; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 70px; max-width: 720px; margin-inline: auto; }
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-text { color: var(--text-soft); font-size: 16px; }
.section-text.center { text-align: center; }

/* ---------- ABOUT ---------- */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images {
  position: relative;
  height: 540px;
}
.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.main-img {
  width: 75%; height: 75%;
  top: 0; left: 0;
}
.main-img img { width:100%; height:100%; object-fit: cover; }
.small-img {
  width: 50%; height: 50%;
  bottom: 0; right: 0;
  border: 8px solid #fff;
}
.small-img img { width:100%; height:100%; object-fit: cover; }

.about-badge {
  position: absolute;
  top: 40%; left: -20px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  z-index: 3;
}
.about-badge i {
  width: 44px; height: 44px;
  background: var(--gradient-red);
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
}
.about-badge strong { display: block; }
.about-badge small { color: var(--text-soft); font-size: 12px; }
.floating { animation: floaty 4s ease-in-out infinite; }

.about-list {
  margin: 30px 0;
  display: grid; gap: 12px;
}
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.about-list i { color: var(--green); font-size: 18px; }

.about-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform .4s, box-shadow .4s, border-color .4s;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -100%; left: -100%;
  width: 300px; height: 300px;
  background: var(--gradient-green);
  border-radius: 50%;
  transition: top .5s, left .5s;
  z-index: 0;
  opacity: .08;
}
.service-card:hover::before { top: -60%; left: -60%; }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 64px; height: 64px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: transform .4s, background .4s, color .4s;
}
.service-card:hover .service-icon {
  background: var(--gradient-green);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: 14px; line-height: 1.6; }
.service-hover {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  color: var(--green);
  font-weight: 600; font-size: 14px;
  opacity: 0; transform: translateX(-10px);
  transition: opacity .3s, transform .3s;
}
.service-card:hover .service-hover { opacity: 1; transform: translateX(0); }

.service-highlight {
  background: var(--gradient-red);
  color: #fff;
  border-color: transparent;
}
.service-highlight .service-icon { background: rgba(255,255,255,.18); color: #fff; }
.service-highlight p { color: rgba(255,255,255,.85); }
.service-highlight .service-hover { color: #fff; opacity: 1; transform: none; }
.service-highlight:hover .service-icon { background: #fff; color: var(--red); }
.service-highlight::before { display: none; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(15,122,62,.95), rgba(10,90,45,.95)),
    url('https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=1600&q=80') center/cover;
  padding: 80px 0;
  color: #fff;
  position: relative;
}
.cta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px; align-items: center;
}
.cta-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 10px;
}
.cta-grid p { font-size: 17px; opacity: .9; }
.cta-grid > div:last-child { text-align: right; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s;
}
.gallery-item::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,122,62,.85), rgba(217,32,39,.7));
  color: #fff;
  display: grid; place-items: center;
  font-size: 32px;
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover img { transform: scale(1.15); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform .4s, box-shadow .4s;
}
.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute;
  top: 24px; right: 28px;
  font-size: 40px;
  color: var(--green-soft);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); margin-bottom: 14px; }
.testimonial-card p { color: var(--text-soft); font-style: italic; margin-bottom: 22px; }
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  border: 3px solid var(--green-soft);
}
.testimonial-author strong { display: block; }
.testimonial-author small { color: var(--text-soft); font-size: 13px; }

/* ---------- CONTACT ---------- */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-list { display: grid; gap: 22px; margin-top: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 50px; height: 50px;
  background: var(--gradient-green);
  color: #fff;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-list strong { display: block; margin-bottom: 4px; }
.contact-list p, .contact-list a { color: var(--text-soft); }
.contact-list a:hover { color: var(--green); }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit; font-size: 14px;
  background: var(--bg-soft);
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15,122,62,.1);
}
.form-group textarea { resize: vertical; }

.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, #0a2418 0%, #061a10 100%);
  color: rgba(255,255,255,.8);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-mix);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--gradient-green);
  border-radius: 4px;
}
.footer ul li {
  padding: 6px 0;
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px;
}
.footer ul li i { color: var(--green-light); margin-top: 4px; }
.footer ul li a:hover { color: #fff; padding-left: 4px; }
.footer p { font-size: 14px; margin: 16px 0; }

.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px; color: #fff;
  transition: background .3s, transform .3s;
}
.social a:hover { background: var(--gradient-green); transform: translateY(-4px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  opacity: .7;
}

/* ---------- FLOATING WHATSAPP & TOP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 64px; height: 64px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 30px;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .3s;
}
.whatsapp-float:hover { transform: scale(1.1) rotate(8deg); }
.pulse-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: pulseRing 1.8s infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 48px; height: 48px;
  background: var(--gradient-green);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: .35s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 460px; max-width: 520px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-grid > div:last-child { text-align: center; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform .4s;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 14px; }
  .hamburger { display: flex; }
  .btn-cta { display: none; }

  .hero { padding: 130px 0 60px; }
  .hero-stats { gap: 22px; }
  .stat-num { font-size: 28px; }

  .float-card { min-width: auto; padding: 10px 14px; font-size: 12px; }
  .float-card strong { font-size: 12px; }
  .float-card small { font-size: 10px; }
  .card-icon { width: 34px; height: 34px; font-size: 14px; }
  .card-side { display: none; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 50px; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { justify-content: flex-start; }

  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .whatsapp-float { width: 56px; height: 56px; font-size: 26px; bottom: 20px; right: 20px; }
  .to-top { width: 42px; height: 42px; bottom: 20px; left: 20px; }
}

@media (max-width: 480px) {
  .logo-name { font-size: 18px; }
  .logo-sub { font-size: 9px; }
  .logo-icon { width: 40px; height: 40px; font-size: 18px; }
  .hero-title { font-size: 2rem; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .btn-lg { padding: 14px 26px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
