* {
    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));
    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);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

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: 20px 0 10px;
    text-shadow: 0 0 30px rgba(205, 92, 92, 0.5);
}

.subtitulo-contato {
    text-align: center;
    font-size: 1.3em;
    color: #ffc0c0;
    margin-bottom: 40px;
    font-style: italic;
}

.container-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.formulario-card, .info-card {
    background: rgba(40, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid #8b0000;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: all 0.3s;
}

.formulario-card:hover, .info-card:hover {
    border-color: #cd5c5c;
    box-shadow: 0 0 30px #cd5c5c;
    transform: translateY(-5px);
}

.formulario-card h2, .info-card h2 {
    font-size: 2em;
    color: #ffb3b3;
    margin-bottom: 25px;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 10px;
    text-shadow: 0 0 10px #cd5c5c;
}

.campo-form {
    margin-bottom: 20px;
}

.campo-form label {
    display: block;
    margin-bottom: 8px;
    color: #ffb3b3;
    font-weight: 500;
    font-size: 1.1em;
}

.campo-form label i {
    margin-right: 8px;
    color: #cd5c5c;
}

.campo-form input,
.campo-form select,
.campo-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(20, 5, 5, 0.7);
    border: 2px solid #8b0000;
    border-radius: 15px;
    color: #ffd7d7;
    font-size: 1em;
    transition: all 0.3s;
    font-family: inherit;
}

.campo-form input:focus,
.campo-form select:focus,
.campo-form textarea:focus {
    outline: none;
    border-color: #cd5c5c;
    box-shadow: 0 0 20px #cd5c5c;
    background: rgba(40, 10, 10, 0.8);
}

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

.campo-form select option {
    background: #2a0b0b;
    color: #ffd7d7;
}

.campo-checkbox {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.campo-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #cd5c5c;
}

.campo-checkbox label {
    color: #ffb3b3;
}

.btn-enviar {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #8b0000, #cd5c5c);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-enviar:hover {
    background: linear-gradient(135deg, #cd5c5c, #ff6b6b);
    box-shadow: 0 0 30px #cd5c5c;
    transform: scale(1.02);
}

.btn-enviar i {
    font-size: 1.2em;
}

.canal-apoio {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s;
}

.canal-apoio:hover {
    background: rgba(205, 92, 92, 0.2);
    transform: translateX(10px);
}

.icone-canal {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b0000, #cd5c5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    box-shadow: 0 0 20px #cd5c5c;
}

.info-canal h3 {
    color: #ffb3b3;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.info-canal p {
    color: #ffd7d7;
    font-size: 0.95em;
    margin: 0;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

.detalhe-canal {
    color: #ff9999 !important;
    font-size: 0.85em !important;
    margin-top: 3px !important;
}

.redes-sociais {
    margin-top: 30px;
    text-align: center;
}

.redes-sociais h3 {
    color: #ffb3b3;
    margin-bottom: 15px;
}

.icones-redes {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.icone-rede {
    width: 45px;
    height: 45px;
    background: rgba(139, 0, 0, 0.3);
    border: 2px solid #8b0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd7d7;
    font-size: 1.3em;
    transition: all 0.3s;
    text-decoration: none;
}

.icone-rede:hover {
    background: #cd5c5c;
    border-color: #ffb3b3;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 30px #cd5c5c;
}

.mapa-card {
    background: rgba(40, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid #8b0000;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.mapa-card h2 {
    font-size: 2em;
    color: #ffb3b3;
    margin-bottom: 25px;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 10px;
}

.mapa-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.info-mapa p {
    margin: 15px 0;
    background: none;
    border: none;
    box-shadow: none;
    padding: 10px;
    border-left: 4px solid #8b0000;
}

.info-mapa p i {
    color: #cd5c5c;
    margin-right: 10px;
}

.mapa-imagem img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid #8b0000;
    box-shadow: 0 0 30px rgba(205, 92, 92, 0.3);
}

.faq-card {
    background: rgba(40, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid #8b0000;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 40px;
}

.faq-card h2 {
    font-size: 2em;
    color: #ffb3b3;
    margin-bottom: 25px;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    padding: 20px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(205, 92, 92, 0.2);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #ffb3b3;
    margin-bottom: 10px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #cd5c5c;
}

.faq-item p {
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    color: #ffd7d7;
}


footer {
    background: rgba(30, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    border-top: 3px solid #8b0000;
    padding: 40px 20px;
    margin-top: 60px;
    box-shadow: 0 -10px 30px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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;
}

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

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

.copyright {
    background: rgba(205, 92, 92, 0.15);
    border: 1px solid #8b0000;
    border-radius: 30px;
    padding: 12px 25px;
    margin: 10px auto;
    max-width: 400px;
    font-size: 1em;
    color: #ffb3b3;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-mensagem {
    background: rgba(139, 0, 0, 0.3);
    border: 2px dashed #cd5c5c;
    border-radius: 50px;
    padding: 20px 30px;
    margin: 25px auto;
    max-width: 600px;
    font-size: 1.2em;
    font-weight: 500;
    color: #ffd7d7;
}

.simbolos-footer {
    font-size: 1.3em;
    color: #ffb3b3;
    margin: 20px 0 10px;
    padding: 15px;
    text-shadow: 0 0 15px #ff6b6b;
    animation: simbolosPulsar 3s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .container-contato,
    .mapa-container,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.2em;
    }

    .subtitulo-contato {
        font-size: 1.1em;
    }

    .formulario-card h2,
    .info-card h2,
    .mapa-card h2,
    .faq-card h2 {
        font-size: 1.6em;
    }

    .menu-principal {
        gap: 15px;
    }

    .nav-link {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    main {
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.8em;
    }

    .formulario-card,
    .info-card,
    .mapa-card,
    .faq-card {
        padding: 20px;
    }

    .canal-apoio {
        flex-direction: column;
        text-align: center;
    }

    .icone-canal {
        margin-bottom: 10px;
    }

    .faq-item h3 {
        font-size: 1.1em;
    }

    .footer-mensagem {
        font-size: 1em;
        padding: 15px;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-enviar {
    animation: pulse 2s infinite;
}

.btn-enviar:hover {
    animation: none;
}

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;
}