* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --logo-blue: #0b1b6b;
    --logo-blue-dark: #06124d;
    --logo-red: #1f4ed8;
    --logo-red-dark: #153aab;
    --logo-silver: #e9edf2;
    --logo-white: #ffffff;
    --logo-text: #1b2242;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-image:
        linear-gradient(120deg, rgba(7, 17, 30, 0.88), rgba(10, 34, 54, 0.8)),
        url('imagens/logo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVEGAÇÃO */
.navbar {
    background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-blue-dark) 100%);
    padding: 1.2rem 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 16px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.nav-logo-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(11, 27, 107, 0.55);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-red-dark) 100%);
    color: var(--logo-white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: slideInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.42);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* SEÇÃO SERVIÇOS */
.servicos {
    padding: 80px 0;
    background: rgba(11, 27, 107, 0.85);
}

.servicos h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.servicos-subtitulo {
    text-align: center;
    color: #b0bde0;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
}

.servico-icon {
    font-size: 2.4rem;
    color: #4d88ff;
    margin-bottom: 1rem;
}

.servico-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.servico-card p {
    color: #b0bde0;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* SEÇÃO SOBRE */
.sobre {
    padding: 80px 0;
    background: transparent;
}

.sobre h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-texto p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--logo-silver);
}

.sobre-texto ul {
    list-style: none;
}

.sobre-texto li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--logo-white);
}

.sobre-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-card {
    background: var(--logo-silver);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(11, 27, 107, 0.35);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--logo-red);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* GALERIA */
.galeria {
    padding: 80px 0;
    background: transparent;
}

.galeria h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 27, 107, 0.78), rgba(225, 27, 34, 0.78));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay h3 {
    display: none;
}

/* AVALIACOES */
.avaliacoes {
    padding: 80px 0;
    background: transparent;
}

.avaliacoes h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.avaliacoes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.avaliacao-form,
.midia-preview {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(6, 18, 77, 0.25);
}

.avaliacao-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.avaliacao-form label {
    color: var(--logo-text);
    font-weight: 600;
}

.avaliacao-form input,
.avaliacao-form select,
.avaliacao-form textarea {
    width: 100%;
    border: 1px solid #cfd6e3;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-family: inherit;
    font-size: 1rem;
    color: #1f2937;
    background: #ffffff;
}

.avaliacao-form input:focus,
.avaliacao-form select:focus,
.avaliacao-form textarea:focus {
    outline: none;
    border-color: var(--logo-red);
    box-shadow: 0 0 0 3px rgba(31, 78, 216, 0.15);
}

.avaliacao-btn {
    margin-top: 0.4rem;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--logo-white);
    background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-red-dark) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.avaliacao-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.avaliacao-status {
    min-height: 1.2rem;
    color: var(--logo-blue-dark);
    font-weight: 500;
    margin-top: 0.3rem;
}

.midia-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-card h3 {
    color: var(--logo-text);
    margin-bottom: 0.6rem;
}

.preview-card img,
.preview-card video {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    border-radius: 12px;
    background: #0d1a36;
}

.preview-hidden {
    display: none;
}

.preview-card p,
.avaliacao-aviso {
    color: #334155;
    font-size: 0.95rem;
}

.avaliacoes-publicadas {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(6, 18, 77, 0.25);
}

.avaliacoes-publicadas h3 {
    color: var(--logo-text);
    margin-bottom: 1rem;
}

.avaliacoes-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.avaliacao-item {
    background: #f8fafc;
    border: 1px solid #d7e1ef;
    border-radius: 12px;
    padding: 1rem;
}

.avaliacao-item-topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.avaliacao-item-topo strong {
    color: #0f172a;
}

.avaliacao-nota {
    color: #d97706;
    font-weight: 700;
}

.avaliacao-item p {
    color: #334155;
    margin-bottom: 0.6rem;
}

.avaliacao-midia {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    background: #0d1a36;
    margin-top: 0.4rem;
}

.avaliacoes-vazia {
    color: #475569;
}

/* CONTATO */
.contato {
    padding: 80px 0;
    background: transparent;
}

.contato h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contato-info h3,
.redes-sociais h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--logo-white);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--logo-red);
    width: 30px;
}

.info-item a {
    color: var(--logo-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--logo-red);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    justify-content: center;
}

.social-btn i {
    font-size: 1.3rem;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f58529 0%, #feda77 24%, #dd2a7b 52%, #8134af 76%, #515bd4 100%);
}

.social-btn.facebook {
    background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-red-dark) 100%);
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.telefone {
    background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-red-dark) 100%);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
    background: rgba(10, 20, 30, 0.72);
    backdrop-filter: blur(3px);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-section a:hover {
    color: var(--logo-red);
    padding-left: 0.5rem;
}

.creator-link {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-red-dark) 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.creator-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    padding-left: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--logo-blue);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    padding: 0;
}

.footer-social a:hover {
    background: var(--logo-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #bbb;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: pulse-whatsapp 1.8s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 14px 28px rgba(0, 0, 0, 0.3);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 14px 28px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 14px 28px rgba(0, 0, 0, 0.3);
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .sobre-content,
    .contato-content,
    .avaliacoes-content {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .galeria-item {
        height: 200px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.7rem;
    }

    .nav-logo-img {
        width: 76px;
        height: 76px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        font-size: 1.7rem;
    }
}
