/*
Theme Name: Canil Borda do Campo
Theme URI: https://canilbordadocampo.com.br
Author: Manus AI
Description: Tema WordPress personalizado para o Canil Borda do Campo. Landing page premium com design dark e dourado.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bordadocampo
Tags: one-page, dark, gold, kennel, pets
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold: #D4AF37;
  --gold-light: #F4D03F;
  --gold-dark: #8B7355;
  --bg-primary: #0a0a0a;
  --bg-secondary: #0f0f0f;
  --bg-card: #111111;
  --text-white: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --text-semi: rgba(255,255,255,0.7);
  --text-light: rgba(255,255,255,0.8);
  --border-gold: rgba(212,175,55,0.2);
  --border-gold-hover: rgba(212,175,55,0.5);
  --radius: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4AF37, #8B7355);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #F4D03F, #D4AF37);
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.text-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.5), transparent);
}

.gold-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gold-label .line {
  width: 3rem;
  height: 1px;
  background-color: var(--gold);
}

.gold-label span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

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

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

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

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50%       { box-shadow: 0 0 0 15px rgba(212,175,55,0); }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-bounce-custom {
  animation: bounce 2s ease-in-out infinite;
}

.animate-pulse-gold {
  animation: pulseGold 2s infinite;
}

/* ========================================
   NAVIGATION
   ======================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

#site-header.scrolled {
  background-color: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

#site-header .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  #site-header .nav-inner { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  #site-header .nav-inner { padding: 0 2rem; }
}

#site-header .nav-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(212,175,55,0.3);
}

.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-btn.youtube {
  background-color: #dc2626;
}

.social-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: white;
}

/* Mobile Menu Button */
.nav-mobile-btn {
  display: flex;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .nav-mobile-btn { display: none; }
}

/* Mobile Menu */
.nav-mobile-menu {
  display: none;
  background-color: rgba(10,10,10,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 1.5rem 1rem;
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-menu a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.5rem 0;
  transition: color 0.3s;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-mobile-menu a:hover {
  color: var(--gold);
}

.nav-mobile-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-gold);
  margin-top: 0.5rem;
}

.nav-mobile-social span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
}

.hero-logo {
  height: 10rem;
  width: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5));
}

@media (min-width: 768px) {
  .hero-logo { height: 15rem; }
}
@media (min-width: 1024px) {
  .hero-logo { height: 18rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 42rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-races-box {
  padding: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 0.75rem;
}

.hero-races-box p {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
  .hero-races-box p { font-size: 1.125rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--gold);
  color: #000;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: scale(1.05);
  color: #000;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 9999px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--gold);
  color: #000;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  stroke: var(--gold);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
#sobre {
  padding: 5rem 0;
  background-color: var(--bg-primary);
  position: relative;
}

@media (min-width: 768px) {
  #sobre { padding: 8rem 0; }
}

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.about-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-white);
}

@media (min-width: 768px) {
  .about-content h2 { font-size: 3rem; }
}

.about-content .text-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-semi);
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.about-content .text-body p strong.gold {
  color: var(--gold);
}

.about-content .text-body p strong.white {
  color: var(--text-white);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.stat-item .stat-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  stroke: var(--gold);
  margin: 0 auto 0.5rem;
}

.stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.about-image-wrap {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), transparent);
  border-radius: 1rem;
  filter: blur(1.5rem);
}

.about-image-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.3);
}

.about-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.about-image-caption p:first-child {
  color: var(--gold);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.about-image-caption p:last-child {
  color: var(--text-semi);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
}

/* ========================================
   BREEDS SECTION
   ======================================== */
#racas {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
  position: relative;
}

@media (min-width: 768px) {
  #racas { padding: 8rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 3rem; }
}

.section-header p {
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.breeds-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .breeds-grid { grid-template-columns: repeat(3, 1fr); }
}

.breed-card {
  position: relative;
  background-color: var(--bg-card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: all 0.5s;
}

.breed-card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: 0 25px 50px rgba(212,175,55,0.1);
}

.breed-card-media {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.breed-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.breed-card:hover .breed-card-media img {
  transform: scale(1.1);
}

.breed-card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.breed-card-body {
  padding: 1.5rem;
}

.breed-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.breed-card-body .breed-variant {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.breed-card-body .breed-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.breed-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breed-trait {
  padding: 0.25rem 0.75rem;
  background-color: rgba(212,175,55,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(212,175,55,0.3);
  font-family: 'Inter', sans-serif;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
#servicos {
  padding: 5rem 0;
  background-color: var(--bg-primary);
  position: relative;
}

@media (min-width: 768px) {
  #servicos { padding: 8rem 0; }
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-primary));
  border-radius: 1rem;
  border: 1px solid var(--border-gold);
  transition: all 0.5s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(212,175,55,0.05);
  border-radius: 50%;
  filter: blur(2rem);
  transition: background-color 0.5s;
}

.service-card:hover::before {
  background-color: rgba(212,175,55,0.1);
}

.service-card:hover {
  border-color: var(--border-gold-hover);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-color: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.5s;
}

.service-card:hover .service-icon {
  background-color: rgba(212,175,55,0.2);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--gold);
  fill: none;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-semi);
  font-family: 'Inter', sans-serif;
}

.service-features li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
}

/* ========================================
   LOCATION BANNER
   ======================================== */
#localizacao {
  padding: 4rem 0;
  background: linear-gradient(to right, #1a1a1a, #0f0f0f);
  position: relative;
  overflow: hidden;
}

.location-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 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='%23D4AF37' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.location-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .location-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.location-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.location-icon-wrap {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.3);
  flex-shrink: 0;
}

.location-icon-wrap svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--gold);
  fill: none;
}

.location-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.location-text p {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.location-text .gold-text {
  color: var(--gold);
  margin-top: 0.25rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
#contato {
  padding: 5rem 0;
  background-color: var(--bg-primary);
  position: relative;
}

@media (min-width: 768px) {
  #contato { padding: 8rem 0; }
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
}

.contact-card {
  display: block;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border-gold);
  transition: all 0.3s;
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--border-gold-hover);
  transform: scale(1.05);
}

.contact-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid;
}

.contact-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
}

.contact-card-icon.whatsapp {
  background-color: rgba(34,197,94,0.1);
  color: #22c55e;
  border-color: rgba(34,197,94,0.3);
}

.contact-card-icon.phone {
  background-color: rgba(212,175,55,0.1);
  color: var(--gold);
  border-color: rgba(212,175,55,0.3);
}

.contact-card-icon.instagram {
  background-color: rgba(236,72,153,0.1);
  color: #ec4899;
  border-color: rgba(236,72,153,0.3);
}

.contact-card-icon.youtube {
  background-color: rgba(239,68,68,0.1);
  color: #ef4444;
  border-color: rgba(239,68,68,0.3);
}

.contact-card h4 {
  color: var(--text-white);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.3s;
  font-family: 'Inter', sans-serif;
}

.contact-card:hover p {
  color: var(--gold);
}

/* CTA Box */
.contact-cta {
  margin-top: 4rem;
  text-align: center;
}

.contact-cta-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border-radius: 1.5rem;
  border: 1px solid rgba(212,175,55,0.3);
}

@media (min-width: 640px) {
  .contact-cta-inner { flex-direction: row; }
}

.contact-cta-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-cta-icon svg {
  width: 2rem;
  height: 2rem;
  fill: black;
}

.contact-cta-text {
  text-align: center;
}

@media (min-width: 640px) {
  .contact-cta-text { text-align: left; }
}

.contact-cta-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.contact-cta-text p {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

/* ========================================
   INSTITUTIONAL VIDEO SECTION
   ======================================== */
#video-institucional {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--bg-primary), #0d0d0d, var(--bg-primary));
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  #video-institucional { padding: 8rem 0; }
}

.video-glow-left {
  position: absolute;
  top: 25%;
  left: -8rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(212,175,55,0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

.video-glow-right {
  position: absolute;
  bottom: 25%;
  right: -8rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(212,175,55,0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

.video-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .video-section-header { margin-bottom: 4rem; }
}

.video-section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .video-section-header h2 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .video-section-header h2 { font-size: 3.75rem; }
}

.video-section-header p {
  font-size: 1.125rem;
  color: var(--text-semi);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.video-section-header p .gold-text {
  color: var(--gold);
}

.video-container {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.video-outer-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1), rgba(212,175,55,0.2));
  border-radius: 1.5rem;
  filter: blur(1.5rem);
  opacity: 0.6;
}

.video-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.3);
  box-shadow: 0 25px 50px rgba(212,175,55,0.1);
  background-color: var(--bg-card);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.video-cta {
  margin-top: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .video-cta { margin-top: 4rem; }
}

.video-cta-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border-radius: 1.5rem;
  border: 1px solid rgba(212,175,55,0.3);
  backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .video-cta-inner { flex-direction: row; }
}

.video-cta-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-cta-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: black;
}

.video-cta-text {
  text-align: center;
}

@media (min-width: 640px) {
  .video-cta-text { text-align: left; }
}

.video-cta-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.video-cta-text p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
  padding: 3rem 0;
  background-color: #050505;
  border-top: 1px solid var(--border-gold);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo img {
  height: 4rem;
  width: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social span {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: none;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
  .footer-social span { display: inline; }
}

.footer-social-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.footer-social-btn:hover {
  transform: scale(1.1);
}

.footer-social-btn.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.footer-social-btn.youtube {
  background-color: #dc2626;
}

.footer-social-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: white;
}

.footer-copy {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copy { text-align: right; }
}

.footer-copy p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

.footer-copy .gold-small {
  color: rgba(212,175,55,0.6);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-family: 'Inter', sans-serif;
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  text-decoration: none;
}

.whatsapp-float-inner {
  position: relative;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulseGold 2s infinite;
}

.whatsapp-btn {
  position: relative;
  width: 4rem;
  height: 4rem;
  background-color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background-color: #16a34a;
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 2rem;
  height: 2rem;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -0.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  background-color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ========================================
   WORDPRESS ADMIN BAR ADJUSTMENT
   ======================================== */
.admin-bar #site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar #site-header {
    top: 46px;
  }
}
