
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: linear-gradient(145deg, #2a0b0b 0%, #4b1a1a 30%, #3a1f2a 70%, #1a0f1a 100%);
    min-height: 100vh;
    color: #ffd7d7;
    position: relative;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 10px 30px, #ffaaaa, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 30px 80px, #ff6b6b, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 90px 140px, #ff8a8a, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 180px 230px, #ffb3b3, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 280px 90px, #ffc0c0, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 350px 400px, #cd5c5c, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 450px 180px, #ffb6b6, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 520px 350px, #ff9999, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 600px 600px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    animation: estrelasBrilho 5s ease-in-out infinite;
}

@keyframes estrelasBrilho {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

header {
    background: rgba(40, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #8b0000;
    padding: 20px 40px;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-principal {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffd7d7;
    text-decoration: none;
    padding: 12px 30px;
    background: rgba(139, 0, 0, 0.4);
    border: 1px solid #cd5c5c;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(205, 92, 92, 0.3);
}

.nav-link:hover {
    background: #cd5c5c;
    color: #1a0a0a;
    box-shadow: 0 0 25px #cd5c5c, 0 0 40px #8b0000;
    transform: translateY(-2px);
}

h1 {
    font-size: 3.2em;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #fff, #ffb3b3, #cd5c5c, #8b0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 40px auto 20px;
    text-shadow: 0 0 30px rgba(205, 92, 92, 0.5);
    max-width: 1000px;
    padding: 0 20px;
    line-height: 1.3;
}

h2 {
    font-size: 2.2em;
    color: #ffb3b3;
    border-left: 6px solid #8b0000;
    padding-left: 20px;
    margin: 50px 40px 25px 40px;
    text-shadow: 0 0 15px #cd5c5c;
    background: linear-gradient(90deg, rgba(139,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

h3 {
    font-size: 1.6em;
    color: #ffc0c0;
    margin: 30px 40px 15px 40px;
    display: inline-block;
    border-bottom: 2px dashed #8b0000;
    padding-bottom: 5px;
}

p {
    margin: 20px 40px;
    font-size: 1.1em;
    color: #ffe0e0;
    background: rgba(40, 10, 10, 0.5);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid #8b0000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    line-height: 1.8;
}

ul {
    margin: 20px 60px 30px 60px;
    background: rgba(139, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    padding: 30px 40px;
    border-radius: 25px;
    border: 1px solid #8b0000;
    list-style-type: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

li {
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #ffd7d7;
}

li::before {
    content: "✦";
    color: #cd5c5c;
    font-size: 1.3em;
    position: absolute;
    left: 0;
    text-shadow: 0 0 10px #cd5c5c;
}

li strong {
    color: #ffb3b3;
    font-weight: 600;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b0000, #cd5c5c, #8b0000, transparent);
    margin: 50px 40px;
    box-shadow: 0 0 15px #cd5c5c;
}

h3 + p {
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

h3 + p::before {
    content: "⚡";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    opacity: 0.1;
    color: #cd5c5c;
    transform: rotate(15deg);
}

h3:nth-of-type(1) + p { border-left: 4px solid #ff4d4d; } /* Física - vermelho vivo */
h3:nth-of-type(2) + p { border-left: 4px solid #ff9999; } /* Psicológica - rosa */
h3:nth-of-type(3) + p { border-left: 4px solid #ff6b6b; } /* Sexual - coral */
h3:nth-of-type(4) + p { border-left: 4px solid #b22222; } /* Patrimonial - vermelho tijolo */
h3:nth-of-type(5) + p { border-left: 4px solid #dc143c; } /* Moral - carmesim */

h2:contains("Linha do Tempo") + ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

h2:contains("Linha do Tempo") + ul li strong {
    min-width: 60px;
    color: #ff9999;
    text-shadow: 0 0 10px #ff6b6b;
}



footer::before {
    content: "✦ ✦ ✦";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #cd5c5c;
    font-size: 1.2em;
    letter-spacing: 10px;
    opacity: 0.5;
    animation: estrelasFooter 3s ease-in-out infinite;
}

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2632 100%);
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 3px solid #e91e63;
    position: relative;
}

.footer-conteudo {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
}

.contatos-pessoais {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: inline-block;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.footer-mensagem {
    color: #ff69b4;
    font-size: 0.85rem;
    font-weight: bold;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.link-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.link-instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.link-instagram i {
    font-size: 1.1rem;
}

.link-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.link-email:hover {
    background: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.link-email i {
    font-size: 1rem;
}

.simbolos-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ff69b4;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer::before {
    content: "❤️";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #e91e63;
    font-size: 1.5rem;
    padding: 0 15px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0.8rem;
    }
    
    .contatos-pessoais {
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .link-instagram,
    .link-email {
        font-size: 0.85rem;
        padding: 4px 10px;
    }
    
    .simbolos-footer {
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contatos-pessoais {
        width: 90%;
        min-width: auto;
    }
    
    .link-instagram,
    .link-email {
        font-size: 0.75rem;
        word-break: break-all;
    }
    
    .simbolos-footer {
        font-size: 0.75rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    animation: fadeInUp 0.6s ease-out;
}

.contatos-pessoais {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.simbolos-footer {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes estrelasFooter {
    0%, 100% { opacity: 0.3; letter-spacing: 10px; }
    50% { opacity: 0.8; letter-spacing: 15px; }
}


@keyframes simbolosPulsar {
    0%, 100% { text-shadow: 0 0 15px #ff6b6b; }
    50% { text-shadow: 0 0 30px #ff4d4d, 0 0 20px #8b0000; }
}

@media (max-width: 768px) {
    footer {
        padding: 30px 15px;
    }
    
    .copyright {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    
    .footer-mensagem {
        font-size: 1em;
        padding: 15px 20px;
        margin: 20px 15px;
    }
    
    .simbolos-footer {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .footer-mensagem {
        font-size: 0.9em;
        padding: 12px 15px;
    }
    
    .simbolos-footer {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
        margin: 30px 20px;
    }
    
    h2 {
        font-size: 1.8em;
        margin: 30px 20px;
    }
    
    h3 {
        font-size: 1.4em;
        margin: 25px 20px;
    }
    
    p {
        margin: 15px 20px;
        padding: 15px 20px;
    }
    
    ul {
        margin: 15px 30px;
        padding: 20px 25px;
    }
    
    hr {
        margin: 30px 20px;
    }
    
    .menu-principal {
        gap: 15px;
    }
    
    .nav-link {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    ul {
        margin: 15px 15px;
        padding: 15px 15px;
    }
    
    li {
        padding-left: 20px;
        font-size: 0.95em;
    }
}

h2:hover, h3:hover {
    text-shadow: 0 0 20px #cd5c5c;
    transition: text-shadow 0.3s;
}



p:hover, ul:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(205,92,92,0.3);
    border-color: #cd5c5c;
}

p:contains("Ligue 180") {
    background: linear-gradient(145deg, rgba(255,69,0,0.1), rgba(205,92,92,0.2));
    border: 2px solid #ff4500;
    text-align: center;
    font-weight: 600;
    font-size: 1.3em;
    color: #ffd7d7;
}

p:contains("Ligue 180")::before {
    content: "📞";
    margin-right: 15px;
    font-size: 1.2em;
    filter: drop-shadow(0 0 10px #ff4500);
}

p strong, li strong {
    color: #ff9999;
    text-shadow: 0 0 5px rgba(255,75,75,0.5);
}

p:contains("Ligue 180") {
    animation: pulsoImportante 2s ease-in-out infinite;
}

@keyframes pulsoImportante {
    0%, 100% { box-shadow: 0 0 20px rgba(255,69,0,0.3); }
    50% { box-shadow: 0 0 40px rgba(255,69,0,0.7); }
}

