/*
Theme Name: Institucional Pro
Theme URI: https://institucionalpro.com.br
Author: Institucional Pro
Author URI: https://institucionalpro.com.br
Description: Tema profissional para landing page de criação de sites em Campinas - SEO otimizado, responsivo e focado em conversão.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: institucional-pro
Tags: one-column, custom-colors, custom-logo, featured-images, full-width-template, theme-options, translation-ready
*/

/* ===== CSS Variables ===== */
:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(0 0% 8%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(0 0% 8%);
  --primary: hsl(0 80% 50%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(0 0% 96%);
  --secondary-foreground: hsl(0 0% 8%);
  --muted: hsl(0 0% 96%);
  --muted-foreground: hsl(0 0% 45%);
  --border: hsl(0 0% 90%);
  --radius: 0.75rem;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ===== Typography ===== */
.text-gradient {
  color: var(--primary);
  font-weight: 700;
}

.text-primary {
  color: var(--primary);
}

.font-display {
  font-family: var(--font-display);
}

/* ===== Container ===== */
.container {
  width: 100%;
  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;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(0 80% 45%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px hsla(0, 80%, 50%, 0.3);
}

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

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

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* ===== Cards ===== */
.card {
  background-color: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: hsla(0, 80%, 50%, 0.3);
  box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.08);
}

.shadow-elegant {
  box-shadow: 0 4px 20px -4px hsla(0, 0%, 8%, 0.08),
              0 8px 40px -8px hsla(0, 0%, 8%, 0.05);
}

/* ===== Decorative Elements ===== */
.decoration-dots {
  background-image: radial-gradient(hsla(0, 80%, 50%, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}

.decoration-circle {
  width: 80px;
  height: 80px;
  border: 2px solid hsla(0, 80%, 50%, 0.2);
  border-radius: 50%;
  position: absolute;
}

.decoration-diamond {
  width: 64px;
  height: 64px;
  border: 2px solid hsla(0, 80%, 50%, 0.1);
  transform: rotate(45deg);
  position: absolute;
}

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

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

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .site-header .container {
    height: 80px;
  }
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .site-logo {
    font-size: 1.5rem;
  }
}

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

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

.main-nav a {
  color: hsla(0, 0%, 8%, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--primary);
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background-color: var(--background);
}

.hero-section .decoration-dots {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
  max-width: 56rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: hsla(0, 80%, 50%, 0.05);
  border: 1px solid hsla(0, 80%, 50%, 0.2);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsla(0, 0%, 8%, 0.8);
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 42rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
}

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

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

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 8%, 0.7);
}

.hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, hsla(0, 0%, 96%, 0.5), transparent);
}

/* ===== Introduction Section ===== */
.introduction-section {
  padding: 4rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .introduction-section {
    padding: 6rem 0;
  }
}

.introduction-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, hsla(0, 80%, 50%, 0.2), transparent);
}

.introduction-text {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

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

/* ===== Services Section ===== */
.services-section {
  padding: 4rem 0;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .services-section {
    padding: 6rem 0;
  }
}

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

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

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-divider {
  width: 5rem;
  height: 4px;
  background-color: var(--primary);
  margin: 1rem auto 0;
}

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

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

.service-card {
  background-color: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .service-card {
    padding: 2rem;
  }
}

.service-card:hover {
  border-color: hsla(0, 80%, 50%, 0.3);
  box-shadow: 0 4px 20px hsla(0, 80%, 50%, 0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: hsla(0, 80%, 50%, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: hsla(0, 80%, 50%, 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary);
}

.service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Why Us Section ===== */
.why-us-section {
  padding: 4rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .why-us-section {
    padding: 6rem 0;
  }
}

.why-us-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.why-us-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .why-us-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .why-us-title {
    font-size: 3rem;
  }
}

.why-us-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.why-us-content strong {
  color: var(--primary);
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 4rem 0;
  background-color: var(--foreground);
  color: var(--background);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats-section {
    padding: 6rem 0;
  }
}

.stats-grid {
  display: grid;
  gap: 3rem;
  align-items: flex-start;
}

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

.stats-numbers {
  display: flex;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-numbers {
    gap: 3rem;
  }
}

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

@media (min-width: 768px) {
  .stat-item {
    text-align: left;
  }
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 1rem;
  }
}

.stats-highlights p {
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .stats-highlights p {
    font-size: 1rem;
  }
}

/* ===== Features Section ===== */
.features-section {
  padding: 4rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .features-section {
    padding: 6rem 0;
  }
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 128px;
  height: 128px;
  border-left: 4px solid hsla(0, 80%, 50%, 0.1);
  border-top: 4px solid hsla(0, 80%, 50%, 0.1);
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 128px;
  height: 128px;
  border-right: 4px solid hsla(0, 80%, 50%, 0.1);
  border-bottom: 4px solid hsla(0, 80%, 50%, 0.1);
}

.features-intro {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .features-intro {
    margin-bottom: 4rem;
  }
}

.features-quote {
  font-style: italic;
  color: var(--muted-foreground);
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  text-align: left;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.feature-card {
  background-color: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background-color: hsla(0, 80%, 50%, 0.05);
  border-radius: 0 0 0 100%;
}

.feature-card:hover {
  border-color: hsla(0, 80%, 50%, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: hsla(0, 80%, 50%, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  color: var(--primary-foreground);
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--primary);
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.features-footer {
  text-align: center;
  margin-top: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-foreground);
}

/* ===== Pricing Section ===== */
.pricing-section {
  padding: 4rem 0;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 6rem 0;
  }
}

.pricing-card {
  max-width: 32rem;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: calc(var(--radius) * 3);
  padding: 2rem;
  border: 2px solid hsla(0, 80%, 50%, 0.2);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2.5rem;
  }
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background-color: hsla(0, 80%, 50%, 0.05);
  border-radius: 0 0 0 100%;
}

.pricing-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  background-color: hsla(0, 80%, 50%, 0.05);
  border-radius: 0 100% 0 0;
}

.pricing-content {
  position: relative;
  z-index: 1;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.pricing-prices {
  margin-bottom: 2rem;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .pricing-value {
    font-size: 2.5rem;
  }
}

.pricing-value.secondary {
  font-size: 1.5rem;
  color: var(--foreground);
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.pricing-features .check-icon {
  width: 20px;
  height: 20px;
  background-color: hsla(0, 80%, 50%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-features .check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--primary);
}

/* ===== Portfolio Section ===== */
.portfolio-section {
  padding: 4rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .portfolio-section {
    padding: 6rem 0;
  }
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}

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

.portfolio-card {
  background-color: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
}

.portfolio-card:hover {
  border-color: hsla(0, 80%, 50%, 0.3);
  transform: translateY(-4px);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, hsla(0, 80%, 50%, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-preview {
  aspect-ratio: 16/9;
  background-color: var(--secondary);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}

.portfolio-preview span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-preview span {
  color: var(--primary);
}

.portfolio-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-name {
  color: var(--primary);
}

.portfolio-category {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.portfolio-link-icon svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-link-icon svg {
  color: var(--primary);
}

/* ===== About Section ===== */
.about-section {
  padding: 4rem 0;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-section {
    padding: 6rem 0;
  }
}

.about-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: calc(var(--radius) * 3);
  padding: 2rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .about-card {
    padding: 3rem;
  }
}

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

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
  }
}

.about-image {
  width: 160px;
  height: 160px;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  border: 4px solid hsla(0, 80%, 50%, 0.2);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .about-image {
    width: 192px;
    height: 192px;
  }
}

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

.about-info {
  text-align: center;
}

@media (min-width: 768px) {
  .about-info {
    text-align: left;
  }
}

.about-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .about-name {
    font-size: 2rem;
  }
}

.about-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-badges {
    justify-content: flex-start;
  }
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--secondary);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.about-bio {
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ===== Location Section ===== */
.location-section {
  padding: 4rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .location-section {
    padding: 6rem 0;
  }
}

.location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, hsla(0, 80%, 50%, 0.2), transparent);
}

.location-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: calc(var(--radius) * 3);
  padding: 2rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .location-card {
    padding: 3rem;
  }
}

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

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

.location-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: hsla(0, 80%, 50%, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-value a {
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: var(--primary);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 256px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .location-map {
    height: auto;
    min-height: 200px;
  }
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--foreground);
  padding: 3rem 0;
  color: var(--background);
}

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

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

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

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.5);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

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

.whatsapp-button svg {
  width: 32px;
  height: 32px;
}

/* ===== Utility Classes ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

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

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md-block {
    display: block;
  }
  
  .md-inline {
    display: inline;
  }
}
