/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

/* HEADER */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav {
    width: 90%;
    margin: auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 1px;
}

.logo span {
    color: #ff3d3d;
}

/* MENU */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff3d3d;
}

/* SOCIAL */
.social a {
    color: #222;
    font-size: 1.3rem;
    margin-left: 12px;
    transition: 0.3s;
    text-decoration: none;
    border: none;
}

.social a i {
    border: none;
}

.social a:hover {
    color: #ff3d3d;
}

.hero {
    width: 100%;
    height: 100vh;
    background: url('img/anastase-maragos-FP7cfYPPUKM-unsplash.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    position: relative;
}

/* overlay escuro para destacar o texto */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    max-width: 500px;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    overflow: hidden;
}

.hero-content p {
    margin: 20px 0 30px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #e0e0e0;
}

/* BOTÃO */
.hero-content a {
    display: inline-block;
    padding: 14px 34px;
    background: #ffffff;
    border-radius: 40px;
    color: #000;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.25);
}

.hero-content a:hover {
    background: #ff3d3d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0px 6px 20px rgba(255, 61, 61, 0.5);
}
/* FOTO DO PERSONAL */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.7));
}

/* --- CARDS --- */
.funciona-section {
    text-align: center;
    padding: 80px 0;
    background: #000;
}

.funciona-section h2 {
    color: #fff;
}

.funciona-subtitle {
    max-width: 800px;
    margin: 10px auto 40px;
    color: #aaa;
    font-size: 1.1rem;
}

.funciona-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    width: 90%;
    margin: 0 auto;
}

.funciona-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.funciona-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.funciona-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.funciona-card h3 {
    margin: 18px 0 10px;
    color: #fff;
    font-size: 1.4rem;
}

.btn-saiba {
    background: #ff6a00;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: .3s ease;
}

/* --- MODAIS --- */
.modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 15px;
    color: #fff;
}

.modal-content p {
    margin-bottom: 25px;
    color: #ccc;
}

.close-modal {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}


.btn-saiba {
    background: transparent;
    border: none;
    color: #ff3d3d;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-saiba:hover {
    color: #ff6a6a;
}

.processo-2 {
    padding: 60px 0;
    text-align: center;
    background-color: #000;
}

.processo-2 h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 40px;
}

.cards-processo-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-p2 {
    background: #111111;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
}

.card-p2:hover {
    border: 1px solid #e53935;
    transform: translateY(-4px);
}

.icon-p2 {
    background: #e53935;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-p2 i {
    font-size: 28px;
    color: #fff;
}

.sobre-mim {
    background: #f3f5f7;
    padding: 80px 0;
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.sobre-img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.registro {
    margin-top: 15px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.sobre-tag {
    color: #ff4d30;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sobre-info h2 {
    font-size: 38px;
    color: #111;
    margin: 10px 0 25px;
    font-weight: 800;
}

.sobre-info p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 18px;
}

.btn-whats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-whats:hover {
    filter: brightness(0.9);
}

/* ========================= SEÇÃO PLANOS ========================= */

.planos-section {
    padding: 80px 5%;
    background: #0d0d0d;
    color: #fff;
    text-align: center;
}

.titulo-planos {
    font-size: 2.8rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.linha-planos {
    display: block;
    width: 70px;
    height: 4px;
    background: #ff3d3d;
    margin: 0 auto 50px auto;
    border-radius: 50px;
}

/* ========================= CATEGORIAS ========================= */

.categoria-planos {
    margin-bottom: 80px;
}

.categoria-titulo {
    font-size: 2rem;
    margin-bottom: 25px;
}

.aviso-personal {
    font-size: .9rem;
    color: #ccc;
    margin-bottom: 25px;
    font-style: italic;
}

/* ========================= CARDS - NORMAL E DESTAQUE ========================= */

.planos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.plano-card,
.plano-card-destaque {
    background: #111;
    width: 320px;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 40px rgba(0,0,0,0.4);
    transition: .3s ease;
}

.plano-card:hover,
.plano-card-destaque:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255, 61, 61, 0.5);
}

/* Destaque */
.plano-card-destaque {
    border: 2px solid #ff3d3d;
    background: #141414;
}

/* ========================= TÍTULOS E PREÇOS ========================= */

.plano-tempo {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.plano-preco, 
.plano-card p {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ff3d3d;
    font-weight: 800;
}

/* ========================= LISTA ========================= */

.plano-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plano-lista li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #f1f1f1;
    line-height: 1.4;
}

.service-card {
    background: #0e0e0e;
    border: 1px solid #ff3d3d;
    border-radius: 20px;
    padding: 35px;
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.service-card h3 {
    font-size: 28px;
    text-align: center;
}

.service-card .price {
    display: block;
    font-size: 26px;
    text-align: center;
    color: #ff3d3d;
    font-weight: bold;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover {
    box-shadow: 0 0 20px rgba(255, 61, 61, 0.5);
}

.service-card ul li::before {
    content: "✔";
    color: #ff3d3d;
}

.btn-want {
    background: #ff3d3d;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-want:hover {
    opacity: 0.8;
}

.plano-lista li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff3d3d;
    font-weight: bold;
}

.btn-plano {
    display: block;
    padding: 14px 0;
    text-align: center;
    background: #ff3d3d;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 10px;
    transition: .3s ease;
    font-size: 1.1rem;
}

.btn-plano:hover {
    background: #fff;
    color: #ff3d3d;
}

.testimonials-section {
    padding: 80px 20px;
    text-align: center;
    columns: #fff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: #9c9c9c;
    margin-bottom: 50px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #111111;
    padding: 40px;
    width: 500px;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(255, 61, 61, 0.18);
    border: 1px solid rgba(255, 61, 61, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 35px;
    text-align: left;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff3d3d;
}

.testimonial-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #ccc;
}

.testimonial-stars {
    font-size: 1.2rem;
    color: #ff3d3d;
    font-weight: bold;
}


.faq-section {
    background: #000;
    padding: 100px 20px;
    text-align: center;
}

.faq-subtitle {
    color: #ff3d3d;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.faq-title {
    color: #fff;
    font-size: 42px;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #111;
    border: 1px solid #222;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    text-align: left;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #1a1a1a;
}

.faq-icon {
    font-size: 20px;
    transition: transform .3s ease;
}
.faq-answer {
    background: #000;
    color: #fff;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 20px 0;
    line-height: 1.6;
}

/* ÍCONE ROTACIONA QUANDO ABRE */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* MOSTRAR RESPOSTA */
.faq-item.active .faq-answer {
    max-height: 300px;
}

footer {
    background: #000;
    padding: 60px 0 25px;
    color: #fff;
    border-top: 1px solid #111;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: #ff3d3d;
}

.footer-column p {
    line-height: 1.6;
    font-size: 1.05rem;
    color: #dcdcdc;
    max-width: 350px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eaeaea;
}

.footer-column li i {
    color: #ff3d3d;
    font-size: 1.2rem;
}

/* Instagram botão */
.social-instagram {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    transition: 0.3s ease;
}

.social-instagram:hover {
    background: #ff3d3d;
    color: #fff;
    transform: translateY(-4px);
}

/* COPYRIGHT */
.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
}

/* ========================= RESPONSIVO ========================= */

@media (max-width: 768px) {
    .plano-card,
    .plano-card-destaque {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 16px;
        gap: 10px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-icons {
        gap: 10px;
    }
}

@media (max-width: 950px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-image img {
        width: 280px;
        margin-top: 30px;
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 900px) {
    .cards-processo-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-processo-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
        padding: 30px;
    }

    .testimonial-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .footer-column h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 500px) {
    footer {
        padding: 45px 0 20px;
    }

    .social-instagram {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .footer-copy {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .sobre-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sobre-info h2 {
        font-size: 30px;
    }
}