/* ==========================================================================
   EMA VIANA - Official Website Stylesheet
   Pure Modern CSS3 (Zero CMS Bloat, Mobile-First, Cloudflare Pages Ready)
   Pixel-Perfect Replication of emaviana.com
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  --bg-black: #000000;
  --bg-dark: #0F0F11;
  --bg-card: #0F0F11;
  --bg-active: #222227;
  --bg-hover: #18181c;
  --border-subtle: #1c1c21;
  
  --text-white: #ffffff;
  --text-muted: #aaaaaa;
  --text-subtle: #666666;
  --text-gray: #dddddd;
  
  --color-accent: #f62121;
  --color-accent-hover: #de6906;
  --color-overlay: rgba(219, 31, 38, 0.5);
  
  --font-primary: 'Barlow', sans-serif;
  --font-nav: 'Arial', sans-serif;
  --font-serif: 'IBM Plex Serif', serif;
  
  --header-height: 60px;
  --container-max: 1320px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

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

a:hover, a:focus {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

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

/* --- Responsive Grid System --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-fluid {
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row-align-center {
  align-items: center;
}

/* Base Mobile-First Column Widths */
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-6  { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 15px; }
.col-3  { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }

/* Desktop Grid (min-width: 992px) */
@media (min-width: 992px) {
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-6  { flex: 0 0 50%; max-width: 50%; }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-3  { flex: 0 0 25%; max-width: 25%; }
}

/* Tablet Grid (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  .col-md-6  { flex: 0 0 50%; max-width: 50%; }
  .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-3  { flex: 0 0 25%; max-width: 25%; }
}

/* --- Section Typography & Dividers --- */
.section-title {
  font-family: var(--font-primary);
  font-size: 55px;
  font-weight: 300;
  line-height: 90px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--text-white);
}

.section-divider {
  width: 150px;
  height: 1px;
  background-color: var(--text-white);
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#sp-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: transparent;
  display: flex;
  align-items: center;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

#sp-header.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--bg-black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  animation: spFadeInDown 0.4s ease;
}

@keyframes spFadeInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logo a {
  display: block;
}

.header-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-item a {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.nav-item a:hover,
.nav-item a:focus,
.nav-item.active a {
  color: var(--color-accent);
}

/* Hamburger Toggler */
.offcanvas-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-icon {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* ==========================================================================
   Mobile Offcanvas Menu
   ========================================================================== */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--bg-black);
  z-index: 1999;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.9);
}

.offcanvas-menu.active {
  right: 0;
}

.offcanvas-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 30px;
}

.close-offcanvas {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
  transition: color var(--transition-fast);
}

.close-offcanvas:hover {
  color: var(--color-accent);
}

.offcanvas-nav .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.offcanvas-nav .nav-item {
  width: 100%;
  border-bottom: 1px solid var(--border-subtle);
}

.offcanvas-nav .nav-item a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text-white);
}

.offcanvas-nav .nav-item a:hover,
.offcanvas-nav .nav-item.active a {
  color: var(--color-accent);
}

/* ==========================================================================
   Hero Section & Slider (SmartSlider 3 Exact Ken Burns & Crossfade Effects)
   ========================================================================== */
#hero-section {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-color: var(--bg-black);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  overflow: hidden;
}

.hero-slide.prev {
  opacity: 0;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* Continuous Ken Burns Pan & Zoom Animation matching SmartSlider 3 */
.hero-slide:nth-child(1).active img {
  animation: kenBurnsZoomPan1 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-slide:nth-child(2).active img {
  animation: kenBurnsZoomPan2 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes kenBurnsZoomPan1 {
  0% {
    transform: scale(1.35) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.15) translate3d(-3.5%, 0, 0);
  }
}

@keyframes kenBurnsZoomPan2 {
  0% {
    transform: scale(1.35) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.15) translate3d(3.5%, 0, 0);
  }
}

/* ==========================================================================
   Audio Player Section
   ========================================================================== */
#audio-section {
  background-color: var(--bg-dark);
  padding: 0;
}

.player-container-preto {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 25px;
  font-family: Arial, sans-serif;
  max-width: 500px;
  margin: 0 auto;
}

.player-controlos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.player-controlos button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.player-controlos button:hover {
  transform: scale(1.1);
}

.player-controlos button svg {
  width: 32px;
  height: 32px;
  fill: var(--text-white);
}

.player-controlos button.play-grande svg {
  width: 64px;
  height: 64px;
}

.playlist-musicas {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
}

.playlist-musicas::-webkit-scrollbar {
  width: 5px;
}

.playlist-musicas::-webkit-scrollbar-thumb {
  background: #252529;
  border-radius: 3px;
}

.faixa {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  font-size: 14px;
  color: #aaaaaa;
  transition: all var(--transition-fast);
}

.faixa:hover {
  background-color: var(--bg-hover);
  color: var(--text-white);
}

.faixa.ativa {
  color: var(--text-white);
  font-weight: bold;
  background-color: var(--bg-active);
}

.tempo {
  color: var(--text-subtle);
  font-size: 13px;
}

.faixa.ativa .tempo {
  color: #999999;
}

/* ==========================================================================
   Section: Biografia
   ========================================================================== */
#biografia {
  background-color: var(--bg-black);
  padding-top: 50px;
  padding-bottom: 50px;
}

.biografia-content {
  padding-left: 120px;
  padding-right: 20px;
}

.biografia-text {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 300;
  line-height: 35px;
  color: var(--text-white);
}

.biografia-text p {
  margin-bottom: 0;
}

.biografia-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.biografia-image-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

/* ==========================================================================
   Section: Repertório
   ========================================================================== */
#repertorio {
  background-color: var(--bg-black);
  padding-top: 50px;
  padding-bottom: 50px;
}

.repertorio-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.repertorio-image-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.repertorio-content {
  padding-right: 120px;
  padding-left: 20px;
}

.repertorio-group {
  margin-bottom: 30px;
}

.repertorio-group h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-white);
}

.repertorio-group p {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 300;
  line-height: 35px;
  color: var(--text-white);
}

/* ==========================================================================
   Section: Media (Gallery - Full Width)
   ========================================================================== */
#media {
  background-color: var(--bg-dark);
  padding-top: 50px;
  padding-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 15px;
  padding: 0 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 800 / 533;
  background-color: #1a1a1f;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-overlay-icon {
  color: var(--text-white);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  user-select: none;
  transform: scale(0.8);
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  z-index: 3010;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 17, 0.6);
  border: none;
  color: var(--text-white);
  width: 50px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3010;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(246, 33, 33, 0.8);
  color: var(--text-white);
}

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

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ==========================================================================
   Section: Contactos
   ========================================================================== */
#contactos {
  background-color: var(--bg-black);
  padding-top: 50px;
  padding-bottom: 50px;
}

.contactos-info {
  display: flex;
  flex-direction: column;
}

.contact-cards {
  display: flex;
  gap: 5px;
  margin-top: 15px;
}

.contact-card {
  background-color: var(--bg-card);
  border-radius: 4px;
  padding: 14px 15px;
  box-shadow: 0px 1px 2px 0px rgba(30, 51, 67, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-card:hover {
  box-shadow: 0px 4px 10px 0px rgba(30, 51, 67, 0.3);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-white);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.contact-logo-img {
  width: 49px;
  height: 35px;
  object-fit: contain;
}

.contact-detail {
  min-width: 0;
  overflow: hidden;
}

.contact-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-white);
  line-height: 34px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-title-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 26px;
}

.contact-detail a {
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--color-accent);
}

.contact-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#sp-footer {
  background-color: var(--bg-black);
  border-top: 1px solid var(--border-subtle);
  padding: 25px 0;
  color: var(--text-white);
}

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

.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-menu {
  display: flex;
  gap: 25px;
}

.footer-menu a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.sp-scroll-up {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background-color: rgba(25, 25, 30, 0.85);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1500;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal), transform var(--transition-fast), background-color var(--transition-fast);
}

.sp-scroll-up.visible {
  opacity: 1;
  visibility: visible;
}

.sp-scroll-up:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
  color: var(--text-white);
}

.sp-scroll-up svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   Institutional Pages (Termos e Condições, Política de Privacidade)
   ========================================================================== */
.page-legal {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 80px;
  min-height: calc(100vh - 120px);
}

.legal-content {
  max-width: 960px;
  margin: 0 auto;
  color: var(--text-gray);
  line-height: 1.8;
}

.legal-content h1,
.legal-content h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--text-white);
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-content h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-white);
  margin-top: 25px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.legal-content ol,
.legal-content ul {
  margin-bottom: 25px;
  padding-left: 25px;
}

.legal-content ol { list-style: decimal; }
.legal-content ul { list-style: disc; }

.legal-content li {
  margin-bottom: 10px;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-accent-hover);
}

/* ==========================================================================
   404 Custom Error Page
   ========================================================================== */
.error-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 60px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 15px;
}

.error-message {
  font-size: 26px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background-color: var(--color-accent);
  color: var(--text-white);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

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

.btn-primary-custom svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries
   ========================================================================== */
@media (max-width: 1199.98px) {
  .section-title {
    font-size: 45px;
    line-height: 70px;
  }
  
  .biografia-content {
    padding-left: 20px;
    padding-right: 0;
  }
  
  .repertorio-content {
    padding-right: 20px;
    padding-left: 0;
  }
  
  #hero-section {
    height: 550px;
  }
}

@media (max-width: 991.98px) {
  /* Navigation switch to Offcanvas */
  .main-nav {
    display: none;
  }
  
  .offcanvas-toggler {
    display: block;
  }
  
  /* Stacking Sections on Tablet & Mobile */
  .col-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .biografia-content {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .repertorio-content {
    padding-right: 0;
    padding-left: 0;
    margin-top: 30px;
    order: 1;
  }
  
  .repertorio-image-wrap {
    order: 2;
  }
  
  .contact-cards {
    flex-direction: column;
    margin-bottom: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #hero-section {
    height: 480px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 38px;
    line-height: 50px;
  }
  
  .header-logo img {
    height: 36px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  #hero-section {
    height: 400px;
  }
  
  .section-divider {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 32px;
    line-height: 44px;
  }
  
  .biografia-text,
  .repertorio-group p {
    font-size: 16px;
    line-height: 28px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  #hero-section {
    height: 320px;
  }
  
  .player-controlos button svg {
    width: 28px;
    height: 28px;
  }
  
  .player-controlos button.play-grande svg {
    width: 52px;
    height: 52px;
  }
}
