/* ==================================================
   Acomodações Page - Oásis Motel
   ================================================== */
   :root {
    /* Paleta de cores principal - Harmonizada com o index.html */
    --primary-color: #a11d1a;
    --primary-dark: #8a1915;
    --primary-light: #c62d29;
    --secondary-color: #d5a021;
    --secondary-dark: #b38819;
    --secondary-light: #e9b943;
    
    /* Cores neutras */
    --dark-color: #282828;
    --light-color: #ffffff;
    --bg-color: #f5f5f5;
    --bg-dark: #1a0605;
    --grey-light: #f0f0f0;
    --grey-medium: #cccccc;
    
    /* Opções de layout */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Estilos para destaque de acomodação selecionada */
.suite-highlighted {
    box-shadow: 0 0 25px rgba(213, 160, 33, 0.7) !important;
    transform: translateY(-15px) !important;
    z-index: 10;
    position: relative;
    border: 2px solid var(--secondary-color) !important;
}

.suite-highlight-animation {
    animation: pulse-highlight 1.5s ease;
}

@keyframes pulse-highlight {
    0% {
        box-shadow: 0 0 25px rgba(213, 160, 33, 0.7);
    }
    50% {
        box-shadow: 0 0 40px rgba(213, 160, 33, 0.9);
    }
    100% {
        box-shadow: 0 0 25px rgba(213, 160, 33, 0.7);
    }
}

/* Adiciona uma transição suave para todos os cards */
.suite-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease !important;
}

/* Estilos para o link "sanfona" */
.scroll-to-section {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 151, 194, 0.3);
}

.scroll-to-section:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 151, 194, 0.4);
}

.scroll-to-section i {
    margin-left: 8px;
}

/* Adicionar seta indicadora nas suítes destacadas */
.suite-highlighted::after {
    content: '\f063';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--secondary-color);
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(213, 160, 33, 0.3);
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .suite-highlighted {
        transform: translateY(-10px) !important;
    }
    
    .suite-highlighted::after {
        top: -30px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* Introdução */
.acomodacoes-introducao {
    background-color: var(--primary-color);
    padding: 130px 0 60px 0;
    text-align: center;
}

.introducao-content {
    max-width: 900px;
    margin: 0 auto;
}

.introducao-content h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
}

.introducao-content p {
    font-size: 18px;
    color: var(--light-color);
    line-height: 1.6;
}

.scroll-down {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.scroll-down i {
    font-size: 24px;
    color: var(--secondary-color);
    animation: bounce 2s infinite;
}

.scroll-down i:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Nova Seção: Resumo das Funcionalidades (harmonizada com a Features Section) */
.acomodacoes-resumo {
    padding: 50px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.acomodacoes-resumo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="rgba(0,0,0,0.05)" x="25" y="25" width="50" height="50" transform="rotate(45 50 50)"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.resumo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.resumo-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.resumo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.resumo-item i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.resumo-item h3 {
    font-size: 18px;
    color: var(--light-color);
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
}

.resumo-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}

/* Seção de Suítes - Harmonizada com a Suites Section do index */
.suites-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.suites-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="rgba(255,255,255,0.03)" x="25" y="25" width="50" height="50" transform="rotate(45 50 50)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.suites-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.suites-filter .filter-btn {
    padding: 12px 25px;
    margin: 0 8px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.suites-filter .filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.suites-filter .filter-btn.active {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(213, 160, 33, 0.2);
    border-color: var(--secondary-color);
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.suite-card {
    background: linear-gradient(135deg, rgb(255 255 255 / 17%), rgb(216 0 0 / 15%));
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-strong);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.suite-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.suite-badge span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.suite-card.premium .suite-badge span {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
}

.suite-card.master .suite-badge span {
    background: linear-gradient(135deg, #ffcb80, #ffb347);
}

.suite-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.suite-card:hover .suite-image img {
    transform: scale(1.05);
}

.suite-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.suite-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.suite-slide.active {
    opacity: 1;
}

.suite-prev,
.suite-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(123 17 17 / 78%);
    color: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.suite-prev {
    left: 10px;
}

.suite-next {
    right: 10px;
}

.suite-prev:hover,
.suite-next:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.suite-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--light-color);
}

.suite-header {
    text-align: center;
    margin-bottom: 20px;
}

.suite-type {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suite-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light-color);
}

.suite-card.premium .suite-header h3 {
    color: var(--secondary-color);
}

.suite-card.master .suite-header h3 {
    color: #ffb347;
}

.suite-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.suite-features {
    margin-bottom: 25px;
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.suite-features span {
    font-size: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.suite-features span i {
    width: 25px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 8px;
    font-size: 16px;
}

.suite-card.premium .suite-features span i {
    color: var(--secondary-color);
}

.suite-card.master .suite-features span i {
    color: #ffb347;
}

.suite-features.highlight span {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
}

/* Suite Price Section - Mantido como solicitado */
.suite-price {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.price-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 5px;
    background-color: rgb(122 14 12 / 64%);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.price-item:hover {
    background-color: rgba(156, 28, 25, 0.4);
}

.price-item .period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 3px;
}

.price-item .value {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 700;
}

.price-item .value strong {
    font-size: 22px;
}

.suite-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.suite-actions .btn-primary,
.suite-actions .btn-secondary {
    flex: 1;
    font-size: 14px;
    padding: 12px 15px;
}

/* Modal de Vídeo */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-close:hover {
    background-color: var(--secondary-color);
    transform: rotate(90deg) scale(1.1);
}

.video-title {
    color: var(--light-color);
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.video-container {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366c7;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20b354;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Map Section - Harmonizada com a versão do index */
.map-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="rgba(255,255,255,0.03)" x="25" y="25" width="50" height="50" transform="rotate(45 50 50)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.map-info {
    color: var(--light-color);
}

.map-info h3 {
    font-size: 28px;
    color: var(--light-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.map-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.map-address {
    margin-bottom: 30px;
}

.map-address li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.map-address li i {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 20px;
    transform: translateY(2px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-strong);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section - Harmonizada com o index */
.contact-section {
    padding: 50px 0;
    background-color: var(--bg-color);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(156, 28, 25, 0.2);
}

.contact-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(156, 28, 25, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.hours-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.hours-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.hours-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.hours-list {
    margin-bottom: 25px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    font-weight: 500;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
}

.hours-note {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background-color: rgba(156, 28, 25, 0.1);
    border-radius: var(--border-radius);
}

.hours-note i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 10px;
    margin-top: 2px;
}

.hours-note span {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsividade - Mantendo harmonia com o index */
@media screen and (max-width: 1200px) {
    .resumo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .suite-prev {
        left: 5px;
    }
    
    .suite-next {
        right: 5px;
    }
}

@media screen and (max-width: 1024px) {
    .resumo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .introducao-content h1 {
        font-size: 32px;
    }

    .introducao-content p {
        font-size: 16px;
    }

    .map-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        margin-top: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .resumo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .suite-image {
        height: 300px;
    }

    .suites-grid {
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    }

    .introducao-content h1 {
        font-size: 28px;
    }

    .suite-actions {
        flex-direction: column;
        gap: 10px;
    }

    .map-info h3 {
        font-size: 24px;
    }
    
    .map-info p {
        font-size: 16px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .video-title {
        font-size: 24px;
    }
    
    .video-close {
        top: -40px;
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .resumo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .resumo-item {
        padding: 20px 15px;
    }

    .suite-image {
        height: 280px;
    }

    .suites-grid {
        grid-template-columns: 1fr;
    }

    .introducao-content h1 {
        font-size: 24px;
    }

    .introducao-content p {
        font-size: 14px;
    }

    .suite-header h3 {
        font-size: 24px;
    }

    .suite-features span {
        font-size: 14px;
    }

    .map-container {
        height: 300px;
    }

    .video-title {
        font-size: 20px;
    }

    .suite-price {
        margin-bottom: 10px;
    }

    .price-item .period {
        font-size: 12px;
    }

    .price-item .value {
        font-size: 20px;
    }

    .price-item .value strong {
        font-size: 20px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .hours-card {
        padding: 25px 20px;
    }
}

/* Acessibilidade */
.suite-prev:focus,
.suite-next:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Animações adicionais para melhorar a experiência */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.suite-card {
    animation: fadeIn 0.8s ease-out forwards;
}

.section-title, 
.section-title-line {
    animation: slideIn 0.8s ease-out forwards;
}