/* ============================================
   DREAMHEALER - MAIN STYLES
   ============================================ */

/* Fuentes personalizadas */
@font-face {
    font-family: 'Pangolin';
    src: url('../../fonts/Pangolin-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Variables CSS */
:root {
    --color-primary: #0e0819;
    --color-secondary: #16162d;
    --color-tertiary: #38384c;
    --color-quaternary: #272733;
    --color-accent: #00ffff;
    --color-text: #8797c6;
    --color-text-secondary: #cccccc;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --max-width: 1400px;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Pangolin', cursive, sans-serif;
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container Principal */
.container {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto;
    overflow: hidden;
}

/* ============================================
   ESTILOS GENERALES DE SECCIONES
   ============================================ */
.section {
    position: relative;
    opacity: 0;
}

.section.hidden{
    display: none!important;
}

.section > .background, .section > .background > .overlay{ 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    overflow: hidden;
}

.section > .background > .overlay {
    transform: scale(1.6) rotate(0deg);
    transition: transform 0.1s linear;
}

.division{
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    height: 64px;
    background-position: center;
}

/* ============================================
   SECCIÓN MAIN / HERO
   ============================================ */
.section.section-main {
    min-height: 80vh;
    display: grid;
    place-items: center;
    padding: var(--spacing-md);
    background-color: var(--color-primary);
    position: relative;
}

@media (max-height: 500px) {
    .section.section-main {
        min-height: 500px;
    }
}

.section.section-main > .background {
    bottom: -20vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -700px;
}

.main-content {
    position: relative;
    max-width: var(--max-width);
    height: 100%;
    width: 100%;
    display: grid;
    gap: var(--spacing-md);
}

.main-content > .logo{
    position: absolute;
    bottom: 40px;
    left: 40px;
    height: 200px;
    width: 285px;
    background-size: cover;
}

/* Selector de idioma */
.lang-switcher {
    position: absolute;
    top: -40px;
    left: 27px;
    z-index: 100;
}

.lang-selector {
    display: grid;
    grid-auto-flow: column;
    gap: 8px;
    align-items: center;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 6px 8px;
    font-family: 'Pangolin', cursive, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    min-width: 60px;
    transition: all 0.3s ease;
}

.lang-selector:hover {
    background-color: rgba(22, 22, 45, 0.9);
    border-color: #00ffff;
    color: #00ffff;
}

.lang-selector::before {
    content: '▼';
    transform: scaleY(.8);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background-color: transparent;
    border: 2px solid #ffffff;
    min-width: 60px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.lang-dropdown.show {
    display: flex;
}

.lang-option {
    background-color: rgba(22, 22, 45, 0.9);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-family: 'Pangolin', cursive, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    border-bottom: 1px solid #ffffff;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: rgba(22, 22, 45, 0.9);
    color: #00ffff;
}

.lang-option.active {
    
    background-color: rgba(22, 22, 45, 0.9);
    color: #00ffff;
}

@media(max-width: 1700px) {
    .section.section-main > .background  {
        background-position: center -600px;
    }
}

@media(max-width: 1600px) {
    .section.section-main > .background  {
        background-position: center -500px;
    }
}

@media(max-width: 1500px) {
    .section.section-main > .background  {
        background-position: center -400px;
    }
}

@media(max-width: 1300px) {
    .section.section-main > .background  {
        background-position: center -300px;
    }
}

@media(max-width: 1100px) {
    .section.section-main {
        min-height: 65vh;
    }

    .section.section-main > .background  {
        bottom: -35vh;
        background-position: center -200px;
    }
}

@media(max-width: 600px) {
    .main-content > .logo{
        height: 160px;
        width: 228px;
        left: 0;
        bottom: 0;
    }
}

@media (max-height: 500px) {
    .section.section-main {
        min-height: 500px;
    }
}

/* ============================================
   SECCIÓN SUBSCRIPTION
   ============================================ */
.section.section-subscription {
    min-height: 50vh;
    padding: var(--spacing-lg) var(--spacing-md);
    background-color: var(--color-primary);
    background-size: 800px;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
}

.subscription-content {
    max-width: var(--max-width);
    width: 360px;
    display: grid;
    gap: var(--spacing-md);
    text-align: center;
}

.subscription-content > .text{
    color: var(--color-text);
    font-size: 1.17rem;
}

.subscription-content > .subscription-form {
    position: relative;
    display: grid;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.subscription-content > .form > .title {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.subscription-content > .form > form{
    position: relative;
}

.subscription-content > .form > form > input {
    padding: var(--spacing-sm);
    padding-right: 64px;
    width: 270px;
    height: 70px;
    border: none;
    font-size: 1rem;
    background-color: transparent;
    background-size: cover;
    font-family: 'Pangolin', cursive, sans-serif;
    color: var(--color-text);
    outline: none;
}

.subscription-content > .form > form > button {
    position: absolute;
    top: 12px;
    right: 58px;
    padding: var(--spacing-sm);
    width: 45px;
    height: 45px;
    border: none;
    font-size: 1rem;
    color: var(--color-primary);
    background-color: transparent;
    background-image: url('../../images/dreamhealer/boton-send-normal.png');
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.subscription-content > .form > form > button:hover {
    background-image: url('../../images/dreamhealer/boton-send-hover.png');
}

.subscription-content > .form > form > button:active {
    background-image: url('../../images/dreamhealer/boton-send-press.png');
}

.subscription-content > .form > .privacy-link {
    margin-top: var(--spacing-sm);
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.subscription-content > .form > .privacy-link a {
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.subscription-content > .form > .privacy-link a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

@media(max-width: 500px) {
    .section.section-subscription {
        background-size: 700px;
    }

    .subscription-content{
        width: 270px;
    }

    .subscription-content > .form > form > input {
        width: 270px;
    }

    .subscription-content > .form > form > button {
        right: 13px;
    }
}

/* ============================================
   SECCIÓN TRAILER
   ============================================ */
.section.section-trailer {
    min-height: 70vh;
    padding: var(--spacing-lg) var(--spacing-md);
    background-color: var(--color-secondary);
    display: grid;
    place-items: center;
}

.trailer-content {
    position: relative;
    display: grid;
    justify-items: center;
    gap: var(--spacing-md);
    max-width: var(--max-width);
    width: 100%;
}

.trailer-content > .title {
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #000000;
    text-align: center;
    background-repeat: no-repeat;
    width: 315px;
    height: 55px;
}

.trailer-content > .content {
    display: grid;
    grid-template-columns: 800px auto;
    gap: var(--spacing-md);
    max-width: 800px;
    width: 100%;
}

.trailer-content > .content > .video-container, .trailer-content > .content > .video-container > iframe {
    position: relative;
    width: 800px;
    height: 450px;
}

.trailer-content > .content > .description {
    width: 300px;
}

.trailer-content > .content > .description > .title {
    color: var(--color-accent);
}

.trailer-content > .right-container > .peuma-lun{
    position: absolute;
    bottom: 0px;
    right: -100px;
    width: 337px;
    height: 235px;
    background-size: contain;
    background-repeat: no-repeat;
}

@media(max-width: 1600px) {
    .trailer-content{        
        width: 800px;
    }
    
    .trailer-content > .content {
        grid-auto-flow: column;
        grid-template-rows: auto auto;
    }

    .trailer-content > .content > .description{
        width: 50%;
    }

    .trailer-content > .right-container > .peuma-lun{
        bottom: 0px;
        right: -70px;
        transform: scale(.7);
    }
}

@media(max-width: 960px) {
    .trailer-content{        
        width: 90%;
        padding: 0;
    }

    .trailer-content > .content {
        grid-template-columns: auto;
    }

    .trailer-content > .content > .video-container, .trailer-content > .content > .video-container > iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 600px) {
    .trailer-content > .right-container > .peuma-lun{
        bottom: 0px;
        right: -100px;
        transform: scale(.6);
    }
}

@media(max-width: 580px) {
    .trailer-content > .title {
        font-size: 1.2rem;
        width: 270px;
        height: 47px;
    }
}

@media (max-width: 500px) {
    .section.section-trailer{
        min-height: 90vh;
    }

    .trailer-content > .content{
        max-width: 300px;
    }
    .trailer-content > .content > .description{
        width: 100%;
    }

    .trailer-content > .right-container > .peuma-lun{
        position: initial;
        transform: none;
        width: 250px;
        height: 174px;
    }
}


/* ============================================
   SECCIÓN STEAM
   ============================================ */
.section.section-steam {
    display: grid;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background-color: var(--color-primary);
}

.steam-content {
    position: relative;
    max-width: var(--max-width);
    width: 100%;
    display: grid;
    justify-content: center;
    gap: var(--spacing-md);
}

.steam-widget-custom {
    max-width: 646px;
    width: 100%;
}

.steam-widget-container {
    display: grid;
    grid-template-columns: 292px 1fr;
    background: linear-gradient(to bottom, #1b2838 0%, #16202d 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0px 30px rgba(0, 255, 255, 0.3);
}

.steam-widget-image {
    width: 292px;
    height: 190px;
    overflow: hidden;
}

.steam-widget-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.steam-widget-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(to right, rgba(27, 40, 56, 0.8) 0%, rgba(22, 32, 45, 0.9) 100%);
}

.steam-widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #c7d5e0;
    margin: 0 0 10px 0;
    line-height: 1.3;
    font-family: 'Fira Sans', Arial, sans-serif;
}

.steam-widget-description {
    font-size: 13px;
    color: #8f98a0;
    line-height: 1.5;
    margin: 0 0 12px 0;
    flex-grow: 1;
    font-family: 'Fira Sans', Arial, sans-serif;
}

.steam-widget-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.steam-widget-platforms {
    color: #8f98a0;
    font-size: 16px;
}

.steam-widget-button {
    background: linear-gradient(to bottom, #75b022 5%, #588a1b 95%);
    color: #d2e885;
    padding: 8px 16px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Fira Sans', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.steam-widget-button:hover {
    background: linear-gradient(to bottom, #8bc53f 5%, #75b022 95%);
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

@media(max-width: 700px){
    .steam-widget-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .steam-widget-image {
        width: 100%;
        height: auto;
    }

    .steam-widget-image img {
        height: auto;
        aspect-ratio: 460/215;
    }
}

@media(max-width: 600px){
    .steam-content{
        width: 100%;
    }

    .steam-widget-custom {
        max-width: 100%;
    }
}


/* ============================================
   SECCIÓN GALLERY
   ============================================ */
.section.section-gallery {
    display: grid;
    place-items: center;
    min-height: 0vh;
    padding: var(--spacing-lg) var(--spacing-md);
    background-color: var(--color-tertiary);
    background-size: 39%;
    background-attachment: fixed;
}

.section.section-gallery > .background > .overlay {
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-repeat: repeat;
}

.gallery-content {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: var(--max-width);
    width: 100%;
}

.gallery-content > .title {
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--color-accent);
    text-align: center;
    background-repeat: no-repeat;
    width: 315px;
    height: 55px;
    justify-self: center;
}

.gallery-content > .left-container{
    position: absolute;
    left: 20px;
    top: -180px;
}

.gallery-content > .left-container > .trees{
    position: absolute;
    top: -300px;
    width: 350px;
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
}

.gallery-content > .left-container > .elard{
    position: absolute;
    left: 350px;
    width: 161px;
    height: 241px;
    background-size: contain;
    background-repeat: no-repeat;
}

.gallery-content > .right-container{
    position: absolute;
    right: 20px;
    top: -180px;
}

.gallery-content > .right-container > .trees{
    position: absolute;
    top: -300px;
    right: 150px;
    width: 350px;
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
}

.gallery-content > .gallery{
    position: relative;
    width: 720px;
    height: 405px;
}

.gallery-content > .gallery > .left[data-lazyload],
.gallery-content > .gallery > .center[data-lazyload],
.gallery-content > .gallery > .right[data-lazyload]{
    opacity: 0;
}

.gallery-content > .gallery > .left,
.gallery-content > .gallery > .center,
.gallery-content > .gallery > .right{
    cursor: pointer;
}

.gallery-content > .gallery > .left,
.gallery-content > .gallery > .center,
.gallery-content > .gallery > .right,
.gallery-content > .gallery > .left-out,
.gallery-content > .gallery > .right-out,
.gallery-content > .gallery > .left-in,
.gallery-content > .gallery > .right-in{
    position: absolute;
    top: 0;
    left: calc(50% - 360px);
    width: 720px;
    height: 405px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.gallery-content > .gallery > .left{
    opacity: 0.6;
    transform: scale(0.8) translate(-540px, 34px);
    z-index: 1;
}

.gallery-content > .gallery > .center{
    opacity: 1;
    z-index: 2;
    cursor: zoom-in;
}

.gallery-content > .gallery > .right{
    opacity: 0.6;
    transform: scale(0.8) translate(540px, 34px);
    z-index: 1;
}

.gallery-content > .gallery > .left-out{
    opacity: 0;
    transform: scale(0.6) translate(-800px, 50px);
    z-index: 0;
}

.gallery-content > .gallery > .right-out{
    opacity: 0;
    transform: scale(0.6) translate(800px, 50px);
    z-index: 0;
}

.gallery-content > .gallery > .right-in{
    opacity: 0;
    transform: scale(0.6) translate(800px, 50px);
    z-index: 0;
}

.gallery-content > .gallery > .left-in{
    opacity: 0;
    transform: scale(0.6) translate(-800px, 50px);
    z-index: 0;
}

.gallery-content > .gallery > .left-arrow, .gallery-content > .gallery > .right-arrow{
    position: absolute;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 3;
    background-image: url('../../images/dreamhealer/boton-siguiente-normal.png');
}

.gallery-content > .gallery > .left-arrow:hover, .gallery-content > .gallery > .right-arrow:hover{
    background-image: url('../../images/dreamhealer/boton-siguiente-hover.png');
}

.gallery-content > .gallery > .left-arrow:active, .gallery-content > .gallery > .right-arrow:active{
    background-image: url('../../images/dreamhealer/boton-siguiente-press.png');
}

.gallery-content > .gallery > .left-arrow{
    left: -60px;
    transform: rotateZ(180deg);
}

.gallery-content > .gallery > .right-arrow{
    right: -60px;
}

.gallery-content > .rrss{
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    gap: 15px;
}

.gallery-content > .rrss > a{
    width: 45px;
    height: 45px;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.center-border > div{
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url('../../images/dreamhealer/gallery-border.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}

.center-border > div:nth-child(1){
    top: -6px;
    left: -6px;
    transform: rotate(270deg);
}

.center-border > div:nth-child(2){
    top: -6px;
    right: -6px;
}

.center-border > div:nth-child(3){
    bottom: -6px;
    right: -6px;
    transform: rotate(90deg);
}

.center-border > div:nth-child(4){
    bottom: -6px;
    left: -6px;
    transform: rotate(180deg);
}

@media(max-width: 1700px){
    .gallery-content > .left-container  > .elard{
        display: none;
    }

    .gallery-content > .left-container > .trees{
        left: -200px;
    }

    .gallery-content > .right-container > .trees{
        right: -200px;
    }
}

@media(max-width: 1000px){

    .gallery-content > .gallery{
        width: 320px;
        height: 180px;
    }

    .gallery-content > .gallery > .left, .gallery-content > .gallery > .center, .gallery-content > .gallery > .right, .gallery-content > .gallery > .left-out, .gallery-content > .gallery > .right-out, .gallery-content > .gallery > .left-in, .gallery-content > .gallery > .right-in{
        width: 320px;
        height: 180px;
        left: calc(50% - 160px);
    }

    .gallery-content > .gallery > .left{
        transform: scale(0.8) translate(-360px, 24px);
    }

    .gallery-content > .gallery > .right{
        transform: scale(0.8) translate(360px, 24px);
    }

    .gallery-content > .gallery > .left-arrow{
        left: -50px;
    }

    .gallery-content > .gallery > .right-arrow{
        right: -50px;
    }

    .gallery-content > .rrss > a{
        width: 30px;
        height: 30px;
    }
    
    .gallery-content > .left-container > .trees{
        left: -200px;
        transform: scale(.8);
    }

    .gallery-content > .right-container > .trees{
        right: -200px;
        transform: scale(.8);
    }
}

@media(max-width: 800px){
    .gallery-content > .left-container > .trees{
        left: -250px;
        transform: scale(.8);
    }

    .gallery-content > .right-container > .trees{
        right: -250px;
        transform: scale(.8);
    }
}

@media(max-width: 640px) {
    .section.section-gallery{
        min-height: 0;
        padding: var(--spacing-lg) 0;
    }

    .gallery-content > .rrss{
        width: 100%;
    }
}

@media(max-width: 580px){
    .gallery-content > .left-container > .trees{
        display: none;
    }

    .gallery-content > .right-container > .trees{
        display: none;
    }

    .gallery-content > .title {
        font-size: 1.2rem;
        width: 270px;
        height: 47px;
    }
}

@media(max-width: 500px) {

    .gallery-content{
        overflow-x: hidden;
    }

    .gallery-content > .gallery > .right-arrow{
        right: -10px;
    }

    .gallery-content > .gallery > .left-arrow{
        left: -10px;
    }

}

/* ============================================
   FOOTER
   ============================================ */
.section-footer {
    display: grid;
    justify-items: center;
    position: relative;
    padding: var(--spacing-md);
    background-color: var(--color-quaternary);
}

.footer-content {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr auto 1fr;
    justify-items: center;
    align-items: center;
    max-width: var(--max-width);
    padding: 20px;
    text-align: center;
    color: var(--color-text);
    font-size: 0.875rem;
}

.footer-content > .logo-gob{
    justify-self: start;
    height: 112.5px;
    width: 250px;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-content > .logo-niebla{
    justify-self: end;
    height: 70px;
    width: 190px;
    background-size: contain;
    background-repeat: no-repeat;
}

@media(max-width: 1000px){
    .footer-content {
        grid-template-columns: 1fr 1fr;
        padding: 0;
        gap: 25px;
    }

    .footer-content > span{
        grid-row: 2;
        grid-column-start: 1;
        grid-column-end: 3;
        font-size: .8em;
    }

    .footer-content > .logo-gob,
    .footer-content > .logo-niebla{
        justify-self: center;
    }
}

@media(max-width: 600px){
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-content > span{
        font-size: .7em;
        grid-row: auto;
        grid-column-start: auto;
        grid-column-end: auto;
        grid-row-start: 3;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-center {
    text-align: center;
}

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

.hidden {
    display: none;
}

/* Animación de fade in para secciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}
/* ============================================
   NOTIFICACIONES
   ============================================ */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    background-color: var(--color-secondary);
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-width: 400px;
    font-size: 14px;
    line-height: 1.5;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-success {
    border-left: 4px solid #00ff00;
}

.notification-error {
    border-left: 4px solid #ff0000;
}

.notification-info {
    border-left: 4px solid var(--color-accent);
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.privacy-policy-page {
    background-color: var(--color-primary);
    min-height: 100vh;
}

.privacy-header {
    background-color: var(--color-secondary);
    padding: var(--spacing-md);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.privacy-header-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

.back-link i {
    font-size: 1.2rem;
}

.privacy-content-section {
    padding: var(--spacing-lg) var(--spacing-md);
    opacity: 1;
}

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

.privacy-content h1 {
    color: var(--color-accent);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.privacy-content .last-updated {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.privacy-section {
    margin-bottom: var(--spacing-lg);
}

.privacy-section h2 {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.privacy-section p {
    margin-bottom: var(--spacing-sm);
}

.contact-section {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    background-color: rgba(22, 22, 45, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.contact-section h2 {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-section a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    text-decoration: underline;
}

.privacy-policy-page .section-footer {
    background-color: var(--color-secondary);
    padding: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.privacy-policy-page .footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

@media(max-width: 768px) {
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

.notification-warning {
    border-left: 4px solid #ffaa00;
}

/* Estado de carga del botón */
button.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}