/* Customizações do projeto Polaroid */
:root {
    --brand-primary: #0d6efd;
    --brand-dark: #0b2239;
}

body {
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'Cascadia Code', monospace;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Títulos H1 até H6 com fonte bold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cascadia Code', monospace;
    font-weight: 700;
}

/* Parágrafos e demais textos com fonte normal */
p, span, div, a, button, input, textarea, select, label {
    font-family: 'Cascadia Code', monospace;
    font-weight: 400;
}

/* Header e navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .navbar {
        background-color: transparent !important;
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1001;
    }

.navbar-brand {
    color: #ffffff !important;
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 1px;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.separator {
    width: 1px;
    height: 25px;
    background-color: #fff;
    margin: 0 20px;
}

.navbar-nav {
    display: flex;
    margin-left: auto;
}

.nav-link {
    color: #ffffff !important;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
}

.header-options {
    margin-left: 20px;
}

/* Fundo: duas linhas em letreiro */
.image-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Garantir que não afete o layout da página */
    contain: layout style paint;
    /* Otimizações de performance */
    will-change: transform;
    transform: translateZ(0);
}

/* Garantir que o carrossel fique acima do fundo animado */
.text-carousel-container {
    z-index: 1000 !important;
    position: relative;
}

.scroll-row {
    display: flex;
    white-space: nowrap;
    height: 240px;
    animation: scroll-left 60s linear infinite;
    margin: 10px 0;
    position: relative;
    /* Garantir que não afete o layout */
    will-change: transform;
    transform: translateZ(0);
}

.scroll-row-reverse {
    animation: scroll-right 60s linear infinite;
    margin-bottom: 10px;
    /* Garantir que não afete o layout */
    will-change: transform;
    transform: translateZ(0);
}

.image-container {
    flex-shrink: 0;
    width: 360px;
    height: 240px;
    margin: 0 8px;
    border-radius: 24px;
    overflow: hidden;
    opacity: 0.4;
    /* Otimizações de performance */
    will-change: transform;
    transform: translateZ(0);
    /* Placeholder para lazy loading */
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Estados de lazy loading */
.image-container img.lazy {
    opacity: 0;
    filter: blur(5px);
}

.image-container img.loaded {
    opacity: 1;
    filter: blur(0);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes scroll-right {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Círculos animados */
.hero-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.circles-container {
    position: relative;
    width: 550px;
    height: 550px;
}

.outer-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.rotating-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotate-curve 12s linear infinite;
}

.rotating-curve svg {
    width: 100%;
    height: 100%;
}

.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-curve {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Conteúdo central */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    letter-spacing: 15px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: normal;
}

.hero-content h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    font-weight: normal;
    color: #e0e0e0;
}

.explore-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    color: #a0a0a0 !important;
    font-size: 0.8rem;
}

.footer-left {
    display: flex;
    gap: 30px;
}

.footer-left span {
    color: #a0a0a0 !important;
}

.footer-right {
    color: #a0a0a0 !important;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Títulos das páginas centralizados */
main.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 160px); /* Altura total menos header e footer */
    text-align: center;
    padding-top: 80px; /* Espaço para o header fixo */
}

/* Seção hero do portfólio - REFEITA COMPLETAMENTE */
.portfolio-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    /* Otimizações para parallax */
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Esquilo Amigo.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.20;
    z-index: 1;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.portfolio-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.portfolio-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* Portfolio Grid Layout */
.portfolio-container {
    padding: 4rem 0 120px 0; /* Adicionado padding-bottom para evitar sobreposição do footer */
    min-height: 200vh;
    overflow-x: hidden;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    grid-auto-rows: 350px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

/* Todos os itens do portfólio com tamanho uniforme */
.portfolio-item {
    aspect-ratio: 12/9; /* Proporção 1920x1080 */
    height: auto;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Estilo específico para fotos do Lucas */
.portfolio-item.lucas-item {
    cursor: pointer;
}

.portfolio-item.lucas-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

/* Caption para as imagens do portfólio */
.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 0 0 15px 15px;
}

.portfolio-item:hover .portfolio-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Grid automático de 3 colunas - layout limpo */


/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Responsividade - Desktop e Laptop */
@media (min-width: 1128px) and (max-width: 2560px) {
    .portfolio-hero-section {
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
    
    .portfolio-hero-title {
        font-size: 4rem;
    }
    
    .portfolio-hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Responsividade - Tablet */
@media (min-width: 769px) and (max-width: 1127px) {
    .portfolio-hero-section {
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
    
    .portfolio-hero-title {
        font-size: 3rem;
    }
    
    .portfolio-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        padding: 0 1.5rem;
    }
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
    /* Otimização das animações de fundo para mobile */
    .image-grid {
        overflow: hidden;
        width: 100vw;
        height: 100vh;
    }
    
    .scroll-row {
        width: 200vw; /* Garante que as imagens saiam da tela */
        animation: scroll-left-mobile 40s linear infinite;
        /* Otimizações para mobile */
        will-change: transform;
        transform: translateZ(0);
    }
    
    .scroll-row-reverse {
        width: 200vw; /* Garante que as imagens saiam da tela */
        animation: scroll-right-mobile 40s linear infinite;
        /* Otimizações para mobile */
        will-change: transform;
        transform: translateZ(0);
    }
    
    .image-container {
        width: 280px; /* Reduzido para mobile */
        height: 180px; /* Reduzido para mobile */
        margin: 0 6px; /* Margem reduzida */
    }
    
    /* Animações otimizadas para mobile */
    @keyframes scroll-left-mobile {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }
    
    @keyframes scroll-right-mobile {
        from { transform: translateX(-50%); }
        to { transform: translateX(0); }
    }
    
    /* Header mobile - layout melhorado */
    .header-options {
        display: none !important;
    }
    
    .navbar {
        justify-content: space-between !important;
        align-items: center;
        position: relative;
        padding: 0 20px;
    }
    
    .navbar-left {
        justify-content: flex-start;
        flex: 1;
    }
    
    .separator {
        display: none;
    }
    
    .navbar-brand {
        text-align: left;
        width: auto;
        margin: 0;
    }
    
    /* Menu hambúrguer posicionado corretamente */
    .navbar-toggler {
        border: none !important;
        padding: 8px 12px;
        background: transparent;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-left: auto;
        order: 2;
    }
    
    /* Garantir que o container do navbar tenha layout flexível */
    .navbar .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    /* Posicionar o menu hambúrguer à direita */
    .navbar .container-fluid .navbar-toggler {
        order: 2;
    }
    
    /* Posicionar o navbar-left à esquerda */
    .navbar .container-fluid .navbar-left {
        order: 1;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 24px;
        height: 24px;
    }
    
    .circles-container {
        width: 300px;
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 8px;
    }
    
    /* Footer mobile - layout melhorado */
    .footer-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .footer-left span {
        display: block;
        font-size: 0.75rem;
        line-height: 1.4;
        word-break: break-all;
    }
    
    .footer-divider {
        width: 60px;
        margin: 0 auto;
    }
    
    .footer-right {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    /* Portfolio responsivo */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 1rem;
    }
    
    .portfolio-item {
        aspect-ratio: 4/3;
        height: auto;
    }
    
    /* Ajuste da seção hero no mobile */
    .portfolio-hero-section {
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
    
    .portfolio-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .portfolio-hero-subtitle {
        font-size: 1rem;
    }
    
    .portfolio-hero-content {
        padding: 0 1rem;
    }
}

/* Carrossel de Texto - Página Sobre */
.text-carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0px;
    padding: 20px;
    margin-top: 150px;
    position: absolute;
    max-width: 1600px;
    width: 95%;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* Garantir que o texto seja sempre visível */
.text-carousel-container * {
    color: #ffffff !important;
    visibility: visible !important;
}

.carousel-slide h2,
.carousel-slide p {
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Forçar visibilidade do slide ativo */
.carousel-slide.active h2,
.carousel-slide.active p {
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    z-index: 999 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Garantir que o texto seja sempre visível */
.carousel-title,
.carousel-text {
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    z-index: 999 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1400px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.carousel-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    padding: 3rem 4rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    border: none;
    box-shadow: none;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    text-align: center;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    box-sizing: border-box;
    overflow: visible;
}

.carousel-slide.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    display: flex !important;
    visibility: visible !important;
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 20;
    position: relative;
    text-align: center;
}

.carousel-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff !important;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 20;
    position: relative;
    text-align: center;
    padding: 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: scale(0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.carousel-indicators {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    .carousel-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .carousel-btn-prev {
        left: 1rem;
    }
    
    .carousel-btn-next {
        right: 1rem;
    }
    
    .carousel-content {
        order: 1;
        min-height: 250px;
    }
    
    .carousel-slide {
        padding: 1rem;
    }
    
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .carousel-text {
        font-size: 1rem;
    }
    
    .carousel-indicators {
        order: 2;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .carousel-text {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Portfolio mobile - 1 coluna */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 1rem;
        grid-auto-rows: 220px;
    }

    .portfolio-item {
        aspect-ratio: 3/2;
        height: auto;
    }
}

/* Footer para telas muito pequenas (360px) */
@media (max-width: 360px) {
    .footer-content {
        padding: 0 10px;
        gap: 12px;
    }
    
    .footer-left span {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .footer-right {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .footer-divider {
        width: 50px;
    }
    
    /* Espaçamento adicional para página de detalhes em telas muito pequenas */
    .detalhes-grid-section {
        padding-bottom: 160px; /* Mais espaço para footer em telas muito pequenas */
    }
}

/* Seção Hero da página Detalhes */
.detalhes-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    /* Otimizações para parallax */
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
}

.detalhes-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Fusca ao por do sol.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 1;
}

.detalhes-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    margin-left: 5%;
    padding-left: 2rem;
}

.hero-line {
    width: 60px;
    height: 2px;
    background-color: white;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
    line-height: 1.4;
}

.hero-dots {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-right: 5%;
    padding-right: 2rem;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Responsividade da seção detalhes */
@media (max-width: 768px) {
    .detalhes-hero-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .detalhes-hero-content {
        margin-left: 0;
        margin-bottom: 2rem;
        max-width: 90%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-dots {
        margin-right: 0;
        flex-direction: row;
        gap: 12px;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-line {
        width: 40px;
        margin: 0 auto 1rem auto;
    }
}

/* Segunda Seção - Grid de Fotos */
.detalhes-grid-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0 0 120px 0; /* Adicionado padding-bottom para evitar sobreposição do footer */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #151515;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
}

.grid-container {
    display: flex;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

/* Container do Conteúdo Lateral */
.lateral-content {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    margin: 2rem 0 2rem 2rem;
    gap: 1.5rem;
}

/* Imagem Lateral Esquerda */
.lateral-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 50vh;
    max-height: 400px;
}

.lateral-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Texto Lateral */
.lateral-text {
    padding: 0 0.5rem;
}

.lateral-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lateral-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

/* Botão WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

.whatsapp-btn svg {
    flex-shrink: 0;
}

/* Container do Grid de Fotos */
.photos-grid-container {
    flex: 0 0 60%;
    background-color: #151515;
    padding: 2rem 3rem 2rem 2rem;
    overflow-y: auto;
    max-height: 100vh;
    border-radius: 0 20px 20px 0;
    margin: 2rem 2rem 2rem 0;
}

/* Grid de Fotos */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/3;
}

.photo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

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

/* Scrollbar personalizada */
.photos-grid-container::-webkit-scrollbar {
    width: 8px;
}

.photos-grid-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.photos-grid-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.photos-grid-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsividade da segunda seção */
@media (max-width: 1024px) {
    .lateral-image {
        flex: 0 0 35%;
    }
    
    .photos-grid-container {
        flex: 0 0 65%;
    }
}

@media (max-width: 768px) {
    .detalhes-grid-section {
        min-height: auto;
        padding-bottom: 140px; /* Aumentado para telas menores */
    }
    
    .grid-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    
    .lateral-content {
        flex: none;
        margin: 1rem;
        gap: 1rem;
    }
    
    .lateral-image {
        height: 250px;
        border-radius: 20px;
    }
    
    .lateral-image img {
        border-radius: 20px;
    }
    
    .lateral-text {
        padding: 0;
        text-align: center;
    }
    
    .lateral-title {
        font-size: 1.3rem;
    }
    
    .lateral-description {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .photos-grid-container {
        flex: none;
        max-height: none;
        padding: 1rem 2rem 1rem 1rem;
        margin: 0 1rem 1rem 1rem;
        border-radius: 20px;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .photo-item {
        aspect-ratio: 16/9;
    }
}

/* Seção Hero da página Preços */
.preco-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    /* Otimizações para parallax */
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preco-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Paisagem relogio paranapiaacaba.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.20;
    z-index: 1;
}

.preco-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.preco-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.preco-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* Container de Preços */
.preco-container {
    padding: 4rem 0 120px 0; /* Adicionado padding-bottom para evitar sobreposição do footer */
    min-height: 100vh;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Grid de Preços */
.preco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

/* Cards de Preços */
.preco-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.preco-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.preco-card-featured {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.preco-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Badge do Card Destacado */
.preco-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Header do Card */
.preco-card-header {
    margin-bottom: 2rem;
}

.preco-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preco-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.preco-currency {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
}

.preco-value {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.preco-period {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 400;
}

/* Body do Card */
.preco-card-body {
    text-align: left;
}

.preco-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.preco-features li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.preco-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 1rem;
}

/* Botões de Preços */
.preco-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.preco-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.preco-btn-featured {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border-color: #ff6b6b;
    color: white;
}

.preco-btn-featured:hover {
    background: linear-gradient(45deg, #ff5252, #ff7979);
    border-color: #ff5252;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Seção de Serviços Adicionais */
.servicos-adicionais {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.servicos-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.servico-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.servico-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.servico-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.servico-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.servico-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção de Informações */
.preco-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.info-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Página de Contato */
.contact-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
    padding-top: 80px; /* Espaço para o header fixo */
    padding-bottom: 80px; /* Espaço para o footer fixo */
    box-sizing: border-box;
    min-height: calc(100vh - 160px); /* Altura total menos header e footer */
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-item {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-link:hover {
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
}

.email-link:hover {
    border-color: rgba(66, 133, 244, 0.5);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.2);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.whatsapp-link:hover .contact-icon {
    background: rgba(37, 211, 102, 0.2);
}

.email-link:hover .contact-icon {
    background: rgba(66, 133, 244, 0.2);
}

.contact-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Sistema de Partículas */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.particle:nth-child(odd) {
    animation-delay: -2s;
    animation-duration: 8s;
}

.particle:nth-child(3n) {
    animation-delay: -4s;
    animation-duration: 10s;
}

.particle:nth-child(4n) {
    animation-delay: -1s;
    animation-duration: 7s;
}

.particle:nth-child(5n) {
    animation-delay: -3s;
    animation-duration: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.15;
    }
}

/* Responsividade da página de contato */
@media (max-width: 768px) {
    .contact-title {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-link {
        padding: 1.2rem 1.5rem;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .contact-link {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
}

/* ===== SEÇÃO DE CATÁLOGO ===== */

/* Seção de Catálogo */
.catalogo-section {
    background-color: #000000;
    padding: 4rem 0;
    margin: 2rem 0;
}

.catalogo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catalogo-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Imagem do Catálogo */
.catalogo-image {
    flex: 0 0 45%;
    max-width: 500px;
}

.catalogo-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.catalogo-img:hover {
    transform: scale(1.02);
}

/* Informações do Catálogo */
.catalogo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catalogo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.catalogo-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.catalogo-currency {
    font-size: 1.5rem;
    color: #cccccc;
    font-weight: 400;
}

.catalogo-value {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

/* Botões do Catálogo */
.catalogo-buttons {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.catalogo-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 200px;
}

.catalogo-btn-primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.catalogo-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.catalogo-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.catalogo-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Descrição do Catálogo */
.catalogo-description {
    margin-top: 1rem;
}

.catalogo-description h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalogo-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalogo-features li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.catalogo-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* WhatsApp Link */
.catalogo-whatsapp {
    margin-top: 2rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-link svg {
    color: #25d366;
    flex-shrink: 0;
}

/* Responsividade da Seção de Catálogo */
@media (max-width: 768px) {
    .catalogo-content {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .catalogo-image {
        flex: none;
        width: 100%;
        max-width: none;
    }
    
    .catalogo-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .catalogo-value {
        font-size: 3rem;
    }
    
    .catalogo-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .whatsapp-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .catalogo-section {
        padding: 2rem 0;
    }
    
    .catalogo-container {
        padding: 0 1rem;
    }
    
    .catalogo-content {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .catalogo-title {
        font-size: 1.5rem;
    }
    
    .catalogo-value {
        font-size: 2.5rem;
    }
    
    .catalogo-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Responsividade da página de preços */
@media (max-width: 768px) {
    .preco-hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .preco-hero-subtitle {
        font-size: 1rem;
    }
    
    .preco-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .preco-card {
        padding: 1.5rem;
    }
    
    .preco-card-featured {
        transform: none;
    }
    
    .preco-card-featured:hover {
        transform: translateY(-10px);
    }
    
    /* Ajuste da tag "Mais Popular" para mobile */
    .preco-badge {
        top: -8px;
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
    }
    
    .preco-value {
        font-size: 2.5rem;
    }
    
    .servicos-title,
    .info-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .servicos-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .servico-item,
    .info-item {
        padding: 1.5rem;
    }
    
    /* Espaçamento para evitar sobreposição do footer na página de preços */
    .preco-container {
        padding-bottom: 140px; /* Aumentado para telas menores */
    }
}

@media (max-width: 480px) {
    .preco-hero-title {
        font-size: 2.5rem;
    }
    
    .preco-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .preco-card {
        padding: 1rem;
    }
    
    /* Ajuste adicional da tag "Mais Popular" para telas muito pequenas */
    .preco-badge {
        top: -6px;
        font-size: 0.65rem;
        padding: 0.3rem 1rem;
    }
    
    .preco-value {
        font-size: 2rem;
    }
    
    .preco-card-title {
        font-size: 1.5rem;
    }
    
    .servicos-title,
    .info-title {
        font-size: 1.8rem;
    }
    
    /* Espaçamento adicional para telas muito pequenas */
    .preco-container {
        padding-bottom: 160px; /* Aumentado para telas muito pequenas */
    }
}

/* ===== PÁGINA DE AGENDAMENTO ===== */

/* Hero Section da página de Agendamento */
.agendamento-hero-section {
    background-color: #000000;
    padding: 8rem 2rem 2rem 2rem;
    text-align: center;
}

.agendamento-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.agendamento-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.agendamento-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #ffffff;
    opacity: 0.8;
}

/* Container de Agendamento */
.agendamento-container {
    background-color: #000000;
    padding: 4rem 2rem;
    min-height: 100vh;
}

/* Resumo do Plano */
.plano-resumo {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.plano-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.plano-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.plano-preco {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.plano-moeda {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.8;
}

.plano-valor {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.plano-periodo {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.6;
}

.plano-detalhes p {
    color: #ffffff;
    opacity: 0.8;
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Seção do Calendário */
.calendar-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.calendar-month-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.calendar-grid {
    width: 100%;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.weekday {
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.7;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.6;
    background: transparent;
    border: 1px solid transparent;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.calendar-day.available {
    opacity: 1;
    color: #ffffff;
}

.calendar-day.available:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #0d6efd;
    color: #ffffff;
    opacity: 1;
    transform: scale(1.05);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: transparent;
    transform: none;
}

/* Seção de Horários */
.horarios-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.horarios-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.horario-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.horario-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.horario-btn.selected {
    background: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-2px);
}

.horario-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.horario-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

/* Botão de Agendamento */
.agendamento-actions {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.agendamento-btn {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    border-radius: 15px;
    padding: 1.2rem 3rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.agendamento-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.agendamento-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.agendamento-btn:hover:not(:disabled) .btn-icon {
    transform: translateX(3px);
}

/* ===== PÁGINA DE CHECKOUT ===== */

/* Hero Section da página de Checkout */
.checkout-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.checkout-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Paisagem relogio paranapiaacaba.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.20;
    z-index: 1;
}

.checkout-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.checkout-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.checkout-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* Container de Checkout */
.checkout-container {
    background-color: #000000;
    padding: 4rem 2rem;
    min-height: 100vh;
}

.checkout-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

/* Resumo do Agendamento */
.checkout-resumo {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.resumo-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resumo-item:last-child {
    border-bottom: none;
}

.resumo-item.resumo-total {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.resumo-label {
    color: #ffffff;
    opacity: 0.8;
}

.resumo-value {
    color: #ffffff;
    font-weight: 600;
}

/* Formulário de Checkout */
.checkout-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.form-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.form-group label {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d6efd;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Seção de Pagamento */
.pagamento-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.pagamento-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pagamento-opcoes {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pagamento-opcao {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.pagamento-opcao:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pagamento-opcao.selected {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
}

.opcao-radio input[type="radio"] {
    display: none;
}

.opcao-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.opcao-icon {
    color: #ffffff;
    opacity: 0.8;
}

.opcao-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.opcao-nome {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.opcao-desc {
    color: #ffffff;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Formulário de Cartão */
.cartao-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Informações PIX */
.pix-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.pix-qr {
    text-align: center;
    margin-bottom: 1.5rem;
}

.qr-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 0.6;
}

.pix-text {
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
}

.pix-codigo {
    margin-top: 1rem;
}

.pix-codigo label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.pix-input-group {
    display: flex;
    gap: 0.5rem;
}

.pix-input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.pix-copy-btn {
    background: #0d6efd;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pix-copy-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* Botões de Ação */
.checkout-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.checkout-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.2rem 2rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.checkout-btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    border-radius: 15px;
    padding: 1.2rem 3rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.checkout-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Responsividade para Agendamento e Checkout */
@media (max-width: 768px) {
    .agendamento-hero-section {
        padding: 6rem 2rem 2rem 2rem;
    }
    
    .agendamento-hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .agendamento-hero-subtitle {
        font-size: 1rem;
    }
    
    .checkout-hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .checkout-hero-subtitle {
        font-size: 1rem;
    }
    
    .plano-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .plano-valor {
        font-size: 2.5rem;
    }
    
    .calendar-weekdays,
    .calendar-days {
        gap: 0.5rem;
    }
    
    .calendar-day {
        font-size: 0.9rem;
    }
    
    .horarios-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .checkout-btn-secondary,
    .checkout-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .agendamento-hero-section {
        padding: 5rem 1rem 2rem 1rem;
    }
    
    .agendamento-hero-title {
        font-size: 2rem;
    }
    
    .agendamento-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .checkout-hero-title {
        font-size: 2.5rem;
    }
    
    .checkout-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .plano-valor {
        font-size: 2rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
    
    .horarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pix-input-group {
        flex-direction: column;
    }
}

/* ===== BOTÃO FLUTUANTE DO INSTAGRAM ===== */

/* Botão Flutuante do Instagram */
.instagram-float-btn {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.instagram-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(188, 24, 136, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.instagram-float-btn svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.instagram-float-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Animação de pulso */
@keyframes instagram-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(188, 24, 136, 0.6), 0 0 0 10px rgba(188, 24, 136, 0.1);
    }
}

.instagram-float-btn {
    animation: instagram-pulse 2s ease-in-out infinite;
}

/* Responsividade do Botão do Instagram */
@media (max-width: 768px) {
    .instagram-float-btn {
        width: 55px;
        height: 55px;
        bottom: 120px;
        left: 15px;
    }
    
    .instagram-float-btn svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .instagram-float-btn {
        width: 50px;
        height: 50px;
        bottom: 130px;
        left: 12px;
    }
    
    .instagram-float-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== PÁGINA DE CURRÍCULO ===== */

/* Container Principal do Currículo */
.cv-main-container {
    display: flex;
    min-height: 100vh;
    background-color: #000000;
    padding: 0;
}

/* Sidebar de Navegação */
.cv-sidebar {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.cv-profile {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cv-title {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Navegação do Currículo */
.cv-navigation {
    margin-top: 2rem;
}

.cv-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-nav-item {
    margin-bottom: 1rem;
}

.cv-nav-link {
    display: block;
    color: #cccccc;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.cv-nav-link:hover,
.cv-nav-link.active {
    color: #ffffff;
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.5rem;
}

/* Área de Conteúdo */
.cv-content {
    flex: 1;
    margin-left: 350px;
    padding: 2rem 3rem;
    background-color: #0a0a0a;
    min-height: 100vh;
}

.cv-section {
    margin-bottom: 4rem;
}

.cv-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.cv-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Resumo Profissional */
.cv-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cv-summary p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cv-summary p:last-child {
    margin-bottom: 0;
}

/* Experiência Profissional */
.cv-experience-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cv-experience-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cv-experience-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cv-experience-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cv-experience-info {
    flex: 1;
}

.cv-experience-date {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-experience-role {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-experience-company {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

.cv-experience-description {
    margin-top: 1rem;
}

.cv-experience-description p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cv-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cv-tool {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Habilidades */
.cv-skills-grid {
    display: grid;
    gap: 2rem;
}

.cv-skill-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cv-skill-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cv-skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cv-skill-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.cv-skill-percentage {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.cv-skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.cv-skill-progress {
    height: 100%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 10px;
    transition: width 0.8s ease;
    position: relative;
}

.cv-skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Formação Acadêmica */
.cv-education-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cv-education-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cv-education-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cv-education-info {
    flex: 1;
}

.cv-education-date {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-education-course {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-education-institution {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Seção de Contato */
.cv-contact-grid {
    display: grid;
    gap: 1.5rem;
}

.cv-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cv-contact-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cv-contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cv-contact-info {
    flex: 1;
}

.cv-contact-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-contact-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.cv-contact-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Responsividade do Currículo */
@media (max-width: 1024px) {
    .cv-sidebar {
        position: fixed;
        top: 0;
        left: -350px;
        transition: left 0.3s ease;
        z-index: 1001;
    }
    
    .cv-sidebar.open {
        left: 0;
    }
    
    .cv-content {
        margin-left: 0;
        padding: 2rem;
    }
    
    .cv-mobile-toggle {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1002;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 10px;
        color: white;
        cursor: pointer;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .cv-mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    .cv-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .cv-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Perfil Mobile */
.cv-mobile-profile {
    display: none;
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-mobile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cv-mobile-title {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .cv-mobile-profile {
        display: block;
    }
}

@media (min-width: 1025px) {
    .cv-mobile-profile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cv-sidebar {
        padding: 2rem 1rem;
    }
    
    .cv-content {
        padding: 1rem;
    }
    
    .cv-section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .cv-experience-header,
    .cv-education-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cv-experience-icon,
    .cv-education-icon {
        align-self: flex-start;
    }
    
    .cv-tools {
        gap: 0.3rem;
    }
    
    .cv-tool {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .cv-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cv-contact-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .cv-section-title {
        font-size: 1.8rem;
    }
    
    .cv-experience-item,
    .cv-education-item,
    .cv-summary {
        padding: 1.5rem;
    }
    
    .cv-skill-item {
        padding: 1rem;
    }
    
    .cv-experience-role,
    .cv-education-course {
        font-size: 1.1rem;
    }
    
    .cv-skill-name {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .cv-tools {
        flex-direction: column;
    }
    
    .cv-tool {
        text-align: center;
    }
    
    .cv-contact-item {
        padding: 1rem;
    }
    
    .cv-contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .cv-contact-title {
        font-size: 0.9rem;
    }
    
    .cv-contact-link {
        font-size: 0.9rem;
    }
    
    .cv-mobile-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .cv-mobile-title {
        font-size: 1rem;
    }
}
