/* ==========================================================================
   Thyzin Turismo - diRoma Portal Design System & Layout Styles
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables for design tokens */
:root {
  --primary-color: #0E2347;      /* Azul Marinho */
  --primary-light: #1A3563;      /* Light active Navy */
  --accent-color: #B79B5A;       /* Ouro Suave */
  --accent-hover: #A38747;       /* Hover state for Ouro Suave */
  --aqua-color: #00b4d8;         /* Keep cyan color for thermal accents if needed */
  --aqua-light: #F2EFE6;         /* Areia Clara as soft background tint */
  --bg-color: #F2EFE6;           /* Areia Clara */
  --bg-card: #ffffff;            /* Pure white */
  --text-dark: #0E2347;          /* Azul Marinho for headings */
  --text-muted: #6C757D;         /* Slate gray for captions */
  --border-color: #D9D9D6;       /* Cinza Suave */
  
  /* Fonts */
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 24px rgba(0,0,0,0.12);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  box-shadow: 0 4px 14px rgba(183, 155, 90, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 155, 90, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

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

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

.btn-wpp {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wpp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-nav-wpp {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--accent-color);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-nav-wpp:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(183, 155, 90, 0.25);
}

/* Grid & Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--primary-color);
  color: white;
}

.section-dark h2, .section-dark h3 {
  color: white;
}

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

.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 140px 0 120px;
  display: flex;
  align-items: center;
  min-height: 550px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 35, 71, 0.94) 0%, rgba(14, 35, 71, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--aqua-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

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

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Sections Common Header */
.section-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header.text-left .section-title::after {
  margin: 16px 0 0 0;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Hotel Card styling */
.hotel-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.hotel-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.08);
}

.hotel-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: white;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hotel-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hotel-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotel-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.hotel-card-feature {
  background: var(--bg-color);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hotel-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hotel-card-actions .btn {
  padding: 10px 14px;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* Acqua Park Highlight Section */
.highlight-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.highlight-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.highlight-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.highlight-list {
  margin: 24px 0 32px;
}

.highlight-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.highlight-list-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 4px;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafbfe;
  border-top: 0 solid var(--border-color);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* arbitrary high number */
  border-top: 1px solid var(--border-color);
}

.faq-answer-inner {
  padding: 24px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Contact / Quick Quote Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info-panel {
  background: var(--primary-color);
  color: white;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info-list {
  margin: 32px 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.contact-info-item i {
  font-size: 1.4rem;
  color: var(--aqua-color);
}

.contact-form-panel {
  padding: 48px;
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-panel p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--bg-color);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-light);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(50, 140, 193, 0.15);
}

/* Footer Section */
.footer {
  background-color: #071224;
  color: #a0aec0;
  padding: 60px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid #14213d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #a0aec0;
}

.footer-link:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--accent-color);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #1a2e3b;
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin-bottom: 8px;
}

/* Floating WhatsApp Sticky button */
.sticky-wpp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition-normal);
}

.sticky-wpp:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Detail / Hotel Page Specific Styles
   ========================================================================== */
.hotel-header {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.hotel-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hotel-header-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hotel-header-logo {
  height: 80px;
  width: auto;
}

.hotel-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hotel-breadcrumb a:hover {
  color: var(--accent-color);
}

.hotel-breadcrumb span::after {
  content: '/';
  margin-left: 8px;
}

.hotel-breadcrumb span:last-child::after {
  content: '';
}

.hotel-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 48px;
}

/* Custom Gallery Grid */
.gallery-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.gallery-main-img {
  grid-column: span 3;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-main-img:hover img {
  transform: scale(1.03);
}

.gallery-thumb {
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}

.gallery-thumb:hover img {
  opacity: 0.8;
}

/* Lightbox / Modal for photos */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* Sticky Booking widget sidebar */
.booking-widget {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.booking-widget-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 12px;
}

.booking-widget h4 {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.booking-widget-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Room Category items */
.rooms-section {
  margin-top: 60px;
}

.room-item-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.room-item-card:hover {
  box-shadow: var(--shadow-md);
}

.room-item-img {
  height: 100%;
  min-height: 250px;
}

.room-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-item-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-item-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.room-item-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.room-item-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.room-item-feature {
  font-size: 0.85rem;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-color);
  padding: 6px 12px;
  border-radius: 4px;
}

.room-item-action {
  align-self: flex-start;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .highlight-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hotel-grid {
    grid-template-columns: 1fr;
  }
  .booking-widget {
    position: static;
    margin-top: 40px;
  }
  .room-item-card {
    grid-template-columns: 1fr;
  }
  .room-item-img {
    height: 250px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    z-index: 998;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-main-img {
    grid-column: span 2;
    height: 280px;
  }
  .gallery-thumb {
    height: 90px;
  }
  .hotel-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Payment Badges & Decorative Elements */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.payment-badge {
  background: white;
  color: #0E2347;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-sm);
  min-width: 60px;
}

.hero-bg-logo {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  height: 360px;
  width: 360px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
  background-image: url('assets/logo_seal.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 992px) {
  .hero-bg-logo {
    display: none;
  }
}

.contact-logo-bg {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 140px;
  height: 140px;
  opacity: 0.08;
  pointer-events: none;
}
