/* ===================================================
   VITÓRIA HOSTEL - Estilos Principais
   Paleta: Terracota/Coral, Amarelo Mostarda, 
           Azul-petróleo, Azul-marinho, Branco
=================================================== */

/* ---- Importação de Fontes ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ---- Variáveis CSS ---- */
:root {
  --terracota: #E07055;
  --coral-light: #f08c75;
  --mustard: #E8B84B;
  --mustard-dark: #c99d35;
  --petrol-blue: #2B6CB0;
  --navy: #1a3a5c;
  --navy-dark: #0f2233;
  --sky-blue: #4EAAD4;
  --sky-light: #d4eef8;
  --white: #FFFFFF;
  --off-white: #f9f7f4;
  --gray-light: #f0ede8;
  --gray: #9ca3af;
  --gray-dark: #4b5563;
  --text-dark: #1f2937;
  --text-muted: #6b7280;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Raleway', 'Helvetica Neue', sans-serif;

  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-sans);
}

input, select, textarea {
  font-family: var(--font-sans);
  outline: none;
}

/* ---- Tipografia ---- */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-sans); }
p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

.text-white h1, .text-white h2, .text-white h3, .text-white p {
  color: var(--white);
}

/* ---- Utilitários ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

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

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

.section-header .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--terracota);
  margin-bottom: 0.5rem;
  display: block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--terracota), var(--mustard));
  margin: 1rem auto;
  border-radius: 2px;
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #c85e44;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 112, 85, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: var(--mustard);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--mustard-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 184, 75, 0.35);
  color: var(--navy);
}

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

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

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

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

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

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ---- Header / Navbar ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1rem 0;
}

#navbar.transparent {
  background: transparent;
}

#navbar.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  width: 45px;
  height: 45px;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar-logo-text .hostel-text {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  color: var(--terracota);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.navbar-logo-text .vitoria-text {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracota);
  transition: width var(--transition);
}

.navbar-menu a:hover, .navbar-menu a.active {
  color: var(--white);
}

.navbar-menu a:hover::after, .navbar-menu a.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(160deg, 
      rgba(26, 58, 92, 0.92) 0%, 
      rgba(26, 58, 92, 0.75) 40%, 
      rgba(78, 170, 212, 0.6) 100%
    ),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
}

.hero-waves svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 184, 75, 0.2);
  border: 1px solid var(--mustard);
  color: var(--mustard);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero h1 span {
  color: var(--terracota);
}

.hero-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 2.5rem;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

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

.hero-stat .number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--mustard);
  font-weight: 700;
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Booking Bar ---- */
.booking-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  max-width: 900px;
  margin: 2rem 0;
  position: relative;
  z-index: 10;
}

.booking-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
}

.booking-field input,
.booking-field select {
  padding: 0.65rem 0.875rem;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--off-white);
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--terracota);
  background: var(--white);
}

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--navy);
}

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

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

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

.about-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--mustard);
  color: var(--navy);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge .years {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-serif);
}

.about-badge .text {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.about-content .subtitle {
  color: var(--terracota);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.about-feature-item .icon {
  width: 36px;
  height: 36px;
  background: var(--sky-light);
  color: var(--petrol-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ---- Rooms Section ---- */
.rooms-section {
  background: var(--off-white);
}

.rooms-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-dark);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy);
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-badge.dormitory {
  background: var(--mustard);
  color: var(--navy);
}

.room-badge.private {
  background: var(--terracota);
  color: var(--white);
}

.room-price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 0.4rem 0.875rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
}

.room-price-tag small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.75;
}

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

.room-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.room-card-body p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.room-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.room-meta-item i {
  color: var(--petrol-blue);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.amenity-tag {
  padding: 0.2rem 0.6rem;
  background: var(--sky-light);
  color: var(--petrol-blue);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.room-card-footer {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ---- Amenities Section ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-light), #b3d9ef);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--petrol-blue);
}

.amenity-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
}

/* ---- Reviews Section ---- */
.reviews-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78,170,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-header.light .subtitle { color: var(--mustard); }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.65); }
.section-header.light .divider { background: linear-gradient(90deg, var(--mustard), var(--terracota)); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.review-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-stars i {
  color: var(--mustard);
  font-size: 0.9rem;
}

.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author-info .name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.review-author-info .date {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.review-room {
  font-size: 0.8rem;
  color: var(--sky-blue);
  margin-top: 0.25rem;
}

/* ---- Location Section ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info h3 {
  margin-bottom: 1rem;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.location-address i {
  color: var(--terracota);
  font-size: 1.2rem;
  margin-top: 3px;
}

.transport-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.transport-item i {
  width: 32px;
  height: 32px;
  background: var(--sky-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol-blue);
  flex-shrink: 0;
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  background: var(--gray-light);
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--sky-light), var(--gray-light));
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--terracota);
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--terracota), #c85e44);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 { color: var(--white); }
.cta-content p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.1rem; }

/* ---- Footer ---- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 60px 0 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-brand .hostel-text {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  color: var(--terracota);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
}

.footer-brand .vitoria-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  display: block;
}

.footer-about p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}

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

.footer-col h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--terracota);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.footer-contact-item i {
  color: var(--terracota);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--terracota);
}

/* ---- Forms ---- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--terracota);
  box-shadow: 0 0 0 3px rgba(224, 112, 85, 0.1);
}

.form-control.error {
  border-color: #ef4444;
}

.form-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.25rem;
  display: none;
}

.form-error.show {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ---- Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.modal-header h3 {
  font-size: 1.25rem;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-dark);
  font-size: 1rem;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--terracota);
  color: var(--white);
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* ---- Payment Options ---- */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
}

.payment-option:hover {
  border-color: var(--terracota);
}

.payment-option.selected {
  border-color: var(--terracota);
  background: rgba(224, 112, 85, 0.05);
}

.payment-option input[type="radio"] {
  accent-color: var(--terracota);
  width: 18px;
  height: 18px;
}

.payment-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.payment-icon.pix { background: #e8f8f5; color: #00b09b; }
.payment-icon.credit { background: var(--sky-light); color: var(--petrol-blue); }
.payment-icon.debit { background: #fef3c7; color: #d97706; }

/* ---- Booking Summary ---- */
.booking-summary-card {
  background: var(--off-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.booking-summary-card h4 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #e5e7eb;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
}

.summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  padding-top: 0.875rem;
  border-top: 2px solid var(--navy);
  margin-top: 0.875rem;
}

.summary-row.total .price {
  color: var(--terracota);
}

/* ---- Toast Notification ---- */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--white);
  border-left: 4px solid var(--terracota);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  min-width: 300px;
  max-width: 400px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.toast.show {
  transform: translateX(0);
}

.toast.success { border-color: #10b981; }
.toast.error { border-color: #ef4444; }
.toast.info { border-color: var(--petrol-blue); }

.toast-icon { font-size: 1.2rem; }
.toast.success .toast-icon { color: #10b981; }
.toast.error .toast-icon { color: #ef4444; }
.toast.info .toast-icon { color: var(--petrol-blue); }
.toast.warning .toast-icon { color: var(--mustard); }

.toast-message { font-size: 0.9rem; font-weight: 500; flex: 1; }

/* ---- Loading ---- */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 92, 0.9);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.loading-overlay.hidden { display: none; }

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--terracota);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* ---- Page Hero (internal pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--petrol-blue) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--terracota); }
.breadcrumb span { color: var(--mustard); }

/* ---- Scroll to Top ---- */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--terracota);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 500;
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: #c85e44;
  transform: translateY(-3px);
}

/* ---- Stars Rating ---- */
.stars-input {
  display: flex;
  gap: 4px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.stars-input input { display: none; }

.stars-input label {
  font-size: 1.6rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color var(--transition);
}

.stars-input label:hover,
.stars-input label:hover ~ label,
.stars-input input:checked ~ label {
  color: var(--mustard);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .booking-bar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .navbar-menu.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .navbar-actions .btn {
    display: none;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat .number { font-size: 1.5rem; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-image-accent {
    display: none;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .booking-bar-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   HOSTEL VITÓRIA SERRA - Customizações adicionais
=================================================== */

/* Payment section overrides */
.payment-section-wrap {
  background: var(--navy);
  padding: 80px 0;
}

.payment-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.platform-card-full {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.platform-card-full:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.platform-card-full.mp { border-color: rgba(0,158,227,0.35); }
.platform-card-full.ps { border-color: rgba(245,166,35,0.35); }

.pc-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pc-logo-wrap {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 800; font-size: 1.1rem; color: white;
}
.pc-logo-wrap.mp { background: #009EE3; }
.pc-logo-wrap.ps { background: #F5A623; }

.pc-head-info h4 { color: white; font-size: 1rem; margin-bottom: 2px; }
.pc-head-info span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.pc-rec {
  margin-left: auto;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.pc-rec.mp { background: rgba(0,158,227,0.2); color: #7DCFEE; border: 1px solid rgba(0,158,227,0.3); }
.pc-rec.ps { background: rgba(245,166,35,0.2); color: #FBDB76; border: 1px solid rgba(245,166,35,0.3); }

.pc-body-inner { padding: 1.5rem 1.75rem; }

.method-pills {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem;
}
.mpill {
  font-size: 0.75rem; font-weight: 500; padding: 3px 10px; border-radius: 20px;
}
.mpill.mp { background: rgba(0,158,227,0.15); color: #7DCFEE; border: 1px solid rgba(0,158,227,0.2); }
.mpill.ps { background: rgba(245,166,35,0.15); color: #FBDB76; border: 1px solid rgba(245,166,35,0.2); }

.fee-table { width: 100%; font-size: 0.85rem; border-collapse: collapse; }
.fee-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.fee-table tr:last-child { border: none; }
.fee-table td { padding: 7px 0; }
.fee-table td:first-child { color: rgba(255,255,255,0.5); }
.fee-table td:last-child { text-align: right; color: white; font-weight: 500; }
.fee-table td.highlight { color: var(--mustard) !important; }

.pc-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px; border-radius: var(--border-radius);
  margin-top: 1rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; border: none;
  color: white; transition: all var(--transition);
}
.pc-cta-btn.mp { background: #009EE3; }
.pc-cta-btn.mp:hover { background: #007ab8; }
.pc-cta-btn.ps { background: #F5A623; }
.pc-cta-btn.ps:hover { background: #d4881a; }

/* Booking wizard steps */
.wizard-steps {
  display: flex; gap: 0; margin-bottom: 2.5rem;
  border-radius: var(--border-radius-lg); overflow: hidden;
  border: 1.5px solid #e5e7eb;
}
.w-step {
  flex: 1; padding: 1rem; text-align: center;
  font-size: 0.8rem; font-weight: 600;
  background: white; color: var(--text-muted);
  border-right: 1px solid #e5e7eb; position: relative;
}
.w-step:last-child { border-right: none; }
.w-step.active { background: var(--navy); color: white; }
.w-step.done { background: var(--off-white); color: var(--terracota); }
.w-step-num {
  display: block; font-size: 1.1rem; font-weight: 700;
  margin-bottom: 3px;
}

/* PIX key display */
.pix-display {
  background: rgba(0,186,164,0.1);
  border: 1px solid rgba(0,186,164,0.25);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem; font-weight: 600;
  color: #00b09b; margin-top: 0.75rem;
  display: flex; align-items: center; gap: 8px;
}

@media (max-width: 768px) {
  .payment-platforms { grid-template-columns: 1fr; }
}
