/* ========================================
   Farmácia Segura - Landing Page Styles
   ======================================== */

/* CSS Variables */
:root {
  /* Official Brand Colors - From Brand Design Manual */
  --wine-deep: #490f16; /* Vinho Profundo (CMYK 42, 98, 70, 70) */
  --wine-medium: #6a1623; /* Vinho Médio (CMYK 34, 98, 70, 52) */
  --terracotta: #9e5757; /* Terracota Suave (CMYK 28, 68, 52, 24) */
  --rose-antique: #d08f8f; /* Rosa Antigo (CMYK 16, 50, 34, 5) */
  --nude-rose: #e7c3be; /* Nude Rosado (CMYK 10, 28, 22, 0) */
  --ice-rose: #e0c8c8; /* Gelo Rosado (CMYK 5, 20, 12, 0) */

  /* Functional Colors */
  --primary: #9e5757; /* Terracota Suave - main action color */
  --primary-dark: #6a1623; /* Vinho Médio - hover states */
  --secondary: #d08f8f; /* Rosa Antigo */
  --accent: #490f16; /* Vinho Profundo - headings */
  --background: #ffffff;
  --foreground: #490f16; /* Vinho Profundo for text */
  --muted: #e7c3be; /* Nude Rosado */
  --muted-foreground: #6a1623; /* Vinho Médio */
  --border: #e0c8c8; /* Gelo Rosado */
  --white: #ffffff;
  --black: #000000;

  /* Service card colors - using brand palette only */
  --rose-light: #e7c3be; /* Nude Rosado */
  --rose-lighter: #e0c8c8; /* Gelo Rosado */
  --rose-accent: #d08f8f; /* Rosa Antigo */
  --terracotta-light: rgba(158, 87, 87, 0.15);
  --wine-light: rgba(106, 22, 35, 0.15);

  /* WhatsApp */
  --whatsapp: #25d366;
  --whatsapp-dark: #20bd5a;

  /* Footer */
  --footer-bg: var(--primary); /* Vinho Profundo */

  /* Typography - Official Brand Font: Signika */
  --font-sans: 'Signika', sans-serif;
  --font-heading: 'Signika', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-padding: 1rem;

  /* Border Radius */
  --radius: 0.75rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(208, 143, 143, 0.08);
  --shadow: 0 1px 3px 0 rgba(208, 143, 143, 0.12),
    0 1px 2px -1px rgba(208, 143, 143, 0.1);
  --shadow-lg: 0 8px 16px -4px rgba(208, 143, 143, 0.15),
    0 4px 8px -2px rgba(208, 143, 143, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(208, 143, 143, 0.18),
    0 8px 10px -6px rgba(208, 143, 143, 0.12);
  --shadow-2xl: 0 25px 50px -12px rgba(208, 143, 143, 0.25);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus {
  outline: none;
}

button {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus {
  outline: none;
}

/* Remove outline de todos os elementos clicáveis */
*:focus,
*:active,
*:focus-visible {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-sm {
  max-width: 768px;
}

/* Utility Classes */
.text-primary {
  color: var(--primary);
}

.hidden {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(158, 87, 87, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(158, 87, 87, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

.btn-rounded {
  border-radius: var(--radius-full);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

.btn-full {
  width: 100%;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
  overflow: hidden;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

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

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

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

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  opacity: 0.8;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  opacity: 1;
}

/* Mobile Menu Button - Modern Hamburger */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.hamburger {
  width: 28px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  background-color: var(--foreground);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

/* Animação do Hamburger para X */
.mobile-menu-btn.active .hamburger .line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger .line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu - Modern Full Screen */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(73, 15, 22, 0.98) 0%,
    rgba(106, 22, 35, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 6rem 2rem 2rem;
  max-width: 500px;
}

.nav-mobile-header {
  text-align: center;
}

.nav-mobile-logo {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: 0.1s;
}

.nav-mobile.active .nav-mobile-logo {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
  justify-content: flex-start;
}

/* Animação escalonada dos links */
.nav-mobile.active .nav-mobile-link:nth-child(1) {
  animation: slideInLink 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s
    forwards;
}

.nav-mobile.active .nav-mobile-link:nth-child(2) {
  animation: slideInLink 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s
    forwards;
}

.nav-mobile.active .nav-mobile-link:nth-child(3) {
  animation: slideInLink 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s
    forwards;
}

.nav-mobile.active .nav-mobile-link:nth-child(4) {
  animation: slideInLink 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s
    forwards;
}

.nav-mobile.active .nav-mobile-link:nth-child(5) {
  animation: slideInLink 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s
    forwards;
}

@keyframes slideInLink {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-mobile-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(8px);
}

.link-number {
  display: none;
}

.link-text {
  flex: 1;
  text-align: left;
}

.nav-mobile-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: 0.7s;
}

.nav-mobile.active .nav-mobile-footer {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-footer .btn-primary {
  background-color: var(--white);
  color: var(--wine-deep);
  font-weight: 700;
  border-radius: var(--radius-full);
}

.nav-mobile-footer .btn-primary:hover {
  background-color: var(--rose-antique);
  color: var(--wine-deep);
  transform: translateY(-2px);
}

.nav-mobile-footer .social-links {
  justify-content: center;
  margin-top: 0;
}

.nav-mobile-footer .social-link {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-mobile-footer .social-link:hover {
  background-color: var(--white);
  color: var(--wine-deep);
}

/* Previne scroll quando menu está aberto */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  max-width: 100vw;
  height: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    rgba(231, 195, 190, 0.3) 100%
  );
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/background-pattern.svg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.08;
  filter: blur(1px);
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  background-color: rgba(158, 87, 87, 0.15);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero-buttons a {
  border-radius: 100px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 5rem 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-images {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-img-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-img-main {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  z-index: 1;
  /* empurra a imagem principal visualmente para baixo */
  transition: transform 0.35s ease;
}

.about-img-secondary {
  display: none;
  position: absolute;
  /* mover a imagem secundária para a esquerda e deixá-la um pouco maior */
  bottom: -8.5rem;
  left: -7.5rem;
  right: auto;
  width: 70%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 4px solid var(--white);
  z-index: 2;
}

.about-img-secondary img {
  width: 100%;
  height: auto;
  display: block;
}

.img-credit {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(73, 15, 22, 0.95) 0%,
    rgba(73, 15, 22, 0.8) 50%,
    transparent 100%
  );
  color: var(--white);
  font-size: 0.65rem;
  padding: 2rem 0.75rem 0.5rem;
  opacity: 0;
  transition: var(--transition);
}

.about-img-main:hover .img-credit,
.about-img-secondary:hover .img-credit {
  opacity: 1;
}

.img-credit a {
  color: var(--nude-rose);
  text-decoration: underline;
  transition: var(--transition);
}

.img-credit a:hover {
  color: var(--white);
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  flex-shrink: 0;
  color: var(--primary);
  width: 24px;
  height: 24px;
}

.about-list-item span {
  color: var(--foreground);
  font-weight: 500;
  opacity: 0.8;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 6rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-title-lg {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  height: 420px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition-slow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-rose::before {
  background-color: var(--rose-lighter);
}

.service-card-terracotta::before {
  background-color: var(--terracotta-light);
}

.service-card-wine::before {
  background-color: var(--wine-light);
}

.service-card:hover {
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  position: relative;
  z-index: 10;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--nude-rose);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: var(--transition-slow);
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--nude-rose);
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon::before {
  width: 800px;
  height: 800px;
}

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

.service-icon-rose,
.service-icon-terracotta,
.service-icon-wine {
  color: var(--wine-deep);
}

.service-icon svg {
  fill: currentColor;
  stroke: none;
}

.service-icon .material-symbols-rounded {
  font-size: 32px;
  color: var(--wine-deep);
  user-select: none;
}

.service-title {
  position: relative;
  z-index: 10;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-description {
  position: relative;
  z-index: 10;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  transition: var(--transition);
}

.service-card:hover .service-description {
  color: var(--foreground);
  opacity: 0.8;
}

/* ========================================
   INSTAGRAM FEED SECTION
   ======================================== */
.instagram-feed {
  padding: 5rem 0;
  background-color: var(--background);
}

.instagram-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.instagram-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.instagram-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.instagram-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.instagram-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--muted);
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.instagram-post:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay p {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  color: var(--accent);
  transition: var(--transition);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-icon {
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 1rem;
}

.accordion-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(
    to top right,
    var(--ice-rose) 0%,
    var(--terracotta) 150%
  );
  color: var(--wine-deep);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 1.5rem;
}

.footer-text {
  color: var(--wine-deep);
  opacity: 0.8;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 3rem;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.contact-block:hover {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-icon-whatsapp {
  background-color: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.contact-block:hover .contact-icon-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.contact-icon-phone {
  background-color: rgba(189, 128, 117, 0.2);
  color: var(--primary);
}

.contact-block:hover .contact-icon-phone {
  background-color: var(--primary);
  color: var(--white);
}

.contact-icon-address {
  background-color: rgba(208, 143, 143, 0.2);
  color: var(--rose-antique);
}

.contact-block:hover .contact-icon-address {
  background-color: var(--rose-antique);
  color: var(--white);
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wine-deep);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--wine-deep);
}

.contact-sub {
  font-size: 0.875rem;
  color: var(--wine-deep);
  opacity: 0.7;
  margin-top: 0.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  background-color: var(--wine-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--white);
  background-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.footer-contact {
  padding: 1.5rem;
}

.footer-map-container {
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.footer-hours {
  margin-bottom: 1.5rem;
}

.footer-hours h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 0.75rem;
}

.footer-hours p {
  color: var(--wine-deep);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-map {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition-slow);
}

.map-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--white);
  color: var(--wine-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.footer-bottom {
  border-top: 1px solid rgba(73, 15, 22, 0.2);
  padding: 2rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--wine-deep);
  opacity: 0.7;
  text-align: center;
}
.hero-buttetfly-logo {
  display: flex;
  justify-content: center;
}

.hero-buttetfly-logo img {
  height: 120px;
  align-self: center;
  opacity: 1;
}

.footer-logo {
  height: 90px;
  opacity: 1;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
}

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

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--wine-deep);
  opacity: 0.5;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background-color: var(--whatsapp);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background-color: var(--whatsapp-dark);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.whatsapp-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  transition: var(--transition-slow);
}

.whatsapp-btn:hover .whatsapp-text {
  max-width: 150px;
  padding-left: 0.75rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Up Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale In Animation */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Rotate In Animation */
.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rotate-in.visible {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet (768px+) */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .hero {
    padding: 10rem 0 6rem;
  }

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

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

  .section-title {
    font-size: 2.5rem;
  }

  .section-title-lg {
    font-size: 3rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .top-bar {
    display: flex;
  }

  .nav-desktop {
    display: flex;
  }

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

  .hero {
    padding: 12rem 0 8rem;
  }

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

  .hero-bg {
    opacity: 0.1;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 5rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .about-img-secondary {
    display: block;
  }
}
