
html{
    scroll-behavior: smooth;
}
section{
    scroll-margin-top:50px;
}
body{
    background: #0f172a;
}


/* Menu Mibile */
/* MENU MOBILE */
#mobileMenu {
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, #0f172a, #020617);
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
}

/* LINKS */
#mobileMenu a {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

/* HOVER MAIS PREMIUM */
#mobileMenu a:hover {
    transform: translateX(8px);
    color: #38bdf8;
}

/* LINHA DIVISÓRIA */
#mobileMenu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 8px;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp-menu {
    display: block;
    margin-top: 20px;
    background: #22c55e;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.btn-whatsapp-menu:hover {
    background: #16a34a;
    transform: scale(1.05);
}

/* OVERLAY SUAVE */
#menuOverlay {
    backdrop-filter: blur(3px);
}
#mobileMenu ul li {
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.4s forwards;
}

#mobileMenu ul li:nth-child(1) { animation-delay: 0.1s; }
#mobileMenu ul li:nth-child(2) { animation-delay: 0.2s; }
#mobileMenu ul li:nth-child(3) { animation-delay: 0.3s; }
#mobileMenu ul li:nth-child(4) { animation-delay: 0.4s; }
#mobileMenu ul li:nth-child(5) { animation-delay: 0.5s; }
#mobileMenu ul li:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Estilo Hero */
/* Estilo Hero */
.hero-section{
    height: 70vh;
    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("image/desenvolvimento.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.hero-section h1{
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

    /* MOBILE */
@media (max-width: 768px){
    .hero-section{
        height: 75vh;
        padding: 80px 20px;
        margin-top: 35px;
        background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)), url("image/websites_01.jpg");
        background-size: cover;
        background-position: center bottom;
    }
}

/* Estilo Serviços */
/* Estilo Serviços */

#servicos{
    margin-top: 0;
}
.service-card{
    transition:0.3s;
    border-radius:14px;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


.service-list{
    list-style: none;
    padding-left: 0;
}

.service-list li{
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child{
    border-bottom: none;
}

.close-circle{
    background-color: rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    padding: 10px;
}

.close-circle:hover{
    background-color: #e4e4e4;
}
.service{
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.207);
}
.service:hover{
    transform: translateY(-8px);
    box-shadow: 0 0 15px #0073ffc5;    
}

/* Estilo projetos */
/* Estilo projetos */
.project-card {
    position: relative;
    overflow: hidden;
    transition:0.3s;
}
.project-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.project-card img {
    transition: transform .5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}
.project-overlay a {
    transform: translateY(20px);
    transition: .4s;
}

.project-card:hover .project-overlay a {
    transform: translateY(0);
}
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: .3s;
}

.project-card:hover .carousel-control-prev,
.project-card:hover .carousel-control-next {
    opacity: 1;
}


/* Estli pacote */
/* TOGGLE */
.toggle-wrapper {
    display: inline-flex;
    background: #e5e7eb;
    border-radius: 30px;
    padding: 5px;
}

.toggle-btn {
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
    transition: .3s;
}

.toggle-btn.active {
    background: #0d6efd;
    color: #fff;
}

/* CARDS */
.price-card {
    background: #fff;
    border-radius: 16px;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.price-card:hover {
    transform: translateY(-10px);
}

/* DESTAQUE */
.featured {
    border: 2px solid #0d6efd;
    transform: scale(1.07);
    box-shadow: 0 0 25px #0d6efd55;
}

/* BADGE */
.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
}

/* BOTÕES */
.btn-outline, .btn-primary-custom, .btn-danger-custom {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    transition: .3s;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #22c55e;
    color: #22c55e;
}

.btn-outline:hover {
    background: #22c55e;
    color: #fff;
}

.btn-primary-custom {
    background: #0d6efd;
    color: #fff;
}

.btn-primary-custom:hover {
    background: #0b5ed7;
}

.btn-danger-custom {
    background: #ef4444;
    color: #fff;
}

.btn-danger-custom:hover {
    background: #dc2626;
}

/* PULSE */
.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 #0d6efd88; }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* NOME DO PLANO MAIS FORTE */
.plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* PREÇO MAIS CHAMATIVO */
.price {
    font-size: 2.rem;
    font-weight: 800;
    margin: 15px 0;
}

/* CORES PERSONALIZADAS (reforço visual) */
.text-green-600 {
    color: #22c55e;
}

.text-blue-600 {
    color: #0d6efd;
}

.text-red-500 {
    color: #ef4444;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.3);
    z-index: 1000;
    transition: background-color 0.3s;
}
.whatsapp-float:hover {
    background-color: #1ebe5b;
}


.carousel-item{
    transition: transform 1s ease-in-out;
}






/* ESTILO DO ABOUT */
.page {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 70vh;
    color: #fdfcfd;
    font-family: "Euclid Circular A", "Poppins";
    padding: 0;
}

.card-7 {
    --card: #0f172ae4;
    display: flex;
    align-items: center;
    width: 75vw;
    max-width: 650px;
    padding: 44px 10px 44px 10px;
    background: var(--card);
    border-radius: 24px;
    transition: .4s;
}
.card-7:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.card-7 img {
    max-width: 280px;
    width: 36vw;
    height: 300px;
    object-fit: cover;
    margin-left: -60px;
    margin-right: 30px;
    border-radius: inherit;
    box-shadow: 0 60px 40px rgb(0 0 0 / 8%);
    transition: border-radius 0.3s;
    transition: .4s;
}
.card-7:hover img {
    transform: scale(1.05);
}
.card-7 h2 {
    font-size: 25px;
    font-weight: 400;
    margin-top: 0;
    margin-right: 30px;
    margin-bottom: 10px;
}

.card-7 h3 {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 12px;
    opacity: 0.75;
}

.card-7 p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.5;
}

.card-7 .socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-7 .socials > a {
    position: relative;
    border: 0;
    background: transparent;
    color: #f8f8f8;
    padding: 0;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.card-7 .socials > a::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 65px;
    height:  65px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(45deg, #0f172a, #1b93d9);
    transition: 0.3s;
}

.card-7 .socials > a > i {
    position: relative;
    z-index: 1;
    border: 4px solid var(--card);
    background: #3f3b39;
    display: grid;
    place-items: center;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 40px;
}
/* LISTA */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-list li {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 5px;
}

@media (width <= 600px) {
    .card-7 {
        margin: 0 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 60px;
        width: 100%;
        text-align: center;
        flex-direction: column;
    }

    .card-7 h2 {
        margin-right: 0;
        font-size: 26px;
    }

    .card-7 img {
        margin: -140px 0 30px 0;
        width: 100%;
        max-width: 1000px;
        height: 250px;
    }

    .card-7 p {
        max-width: 360px;
    }

    .card-7 .socials {
        justify-content: center;
    }
}

@media (width <= 520px) {
    .page{
        margin-top: 120px;
    }
    #sobre h1{
        margin-top: -30px;
    }
    .card-7 img {
        height: 50vw;
        width: 50vw;
        border-radius: 50%;
        padding: 12px;
        background: linear-gradient(45deg, #0f172a, #1b93d9);
        box-shadow: none;
        margin: -140px 0 30px 0;
    }

}


/* Estilo footer */
footer{
    background: linear-gradient(to right, #0f172a, #1b93d9, #0f172a); 
    color: white; 
    border-radius: 10px;
}

.footer_logo{
    width: 80px; 
    height: 80px; 
    background-image: url('./image/1.jpg'); 
    background-size: cover; 
    background-position: center; 
    border-radius: 10px; 
    border: 2px solid white;
}
.footer_title p{
    border-top: 1px solid #ffffff80; padding-top: 6px;
}
