/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais - SUPER VIBRANTES */
    --azul-piscina: #00d4ff;
    --azul-escuro: #0077ff;
    --verde-agua: #00ffcc;
    --rosa-flamingo: #ff2d92;
    --coral-flamingo: #ff6b9d;
    --laranja-vibrante: #ff6600;
    --amarelo-sol: #ffd700;
    --roxo-vibrante: #9d4edd;
    --branco: #ffffff;
    --cinza-claro: #f0f8ff;
    --cinza-medio: #555555;
    --cinza-escuro: #222222;
    
    /* Gradientes SUPER COLORIDOS */
    --gradiente-azul: linear-gradient(135deg, #00d4ff 0%, #0077ff 50%, #00ffcc 100%);
    --gradiente-rosa: linear-gradient(135deg, #ff2d92 0%, #ff6b9d 50%, #ffa07a 100%);
    --gradiente-arco-iris: linear-gradient(135deg, #ff2d92 0%, #ff6600 25%, #ffd700 50%, #00d4ff 75%, #9d4edd 100%);
    --gradiente-tropical: linear-gradient(135deg, #00ffcc 0%, #00d4ff 50%, #9d4edd 100%);
    --gradiente-verao: linear-gradient(135deg, #ffd700 0%, #ff6600 50%, #ff2d92 100%);
    
    /* Sombras COLORIDAS */
    --sombra-azul: 0 5px 20px rgba(0, 212, 255, 0.4);
    --sombra-rosa: 0 5px 20px rgba(255, 45, 146, 0.4);
    --sombra-colorida: 0 8px 30px rgba(255, 45, 146, 0.3);
    --sombra-forte: 0 10px 40px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transicao-rapida: all 0.3s ease;
    --transicao-media: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--cinza-escuro);
    background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho COLORIDO */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 45, 146, 0.95) 0%, rgba(0, 212, 255, 0.95) 100%);
    box-shadow: 0 5px 30px rgba(255, 45, 146, 0.4);
    z-index: 1000;
    transition: var(--transicao-rapida);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(255, 45, 146, 1) 0%, rgba(0, 212, 255, 1) 100%);
    box-shadow: 0 8px 40px rgba(255, 45, 146, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 180px;
    width: 180px;
    object-fit: cover;              /* Preenche melhor o círculo */
    object-position: center;        /* Centraliza a imagem */
    transform: scale(1.12);         /* 🔍 aumenta a imagem dentro da logo */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border-radius: 50%;
    border: 5px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.logo-img:hover {
    transform: scale(1.17);         /* Hover suave */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicao-rapida);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.05rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6600);
    transition: var(--transicao-rapida);
    border-radius: 2px;
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-orcamento {
    background: linear-gradient(135deg, #ffd700 0%, #ff6600 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transicao-rapida);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
    border: 3px solid #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 102, 0, 0.8);
    }
}

.btn-orcamento:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.8);
    background: linear-gradient(135deg, #ff6600 0%, #ffd700 100%);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 4px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--transicao-rapida);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Hero Section SUPER COLORIDO */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 45, 146, 0.4) 0%, rgba(0, 212, 255, 0.4) 100%), 
                url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 195px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 45, 146, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.3) 0%, transparent 50%);
    animation: gradient-move 10s ease infinite;
}

@keyframes gradient-move {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    color: var(--branco);
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-glow 3s ease infinite;
}

@keyframes title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transicao-rapida);
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #00ff00 0%, #00d4ff 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
    border: 3px solid #ffffff;
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 255, 0, 0.8);
    }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 255, 0, 0.8);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--branco);
    border: 3px solid #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ff6600 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 102, 0, 0.8);
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd700;
    font-size: 2.5rem;
    animation: bounce-colorful 2s infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes bounce-colorful {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Animações de Fade In */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.5s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Seções */
section {
    padding: 100px 0;
    position: relative;
}

/* Logo em Destaque */
.logo-destaque {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.logo-destaque::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 146, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.logo-destaque::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.logo-destaque-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-destaque-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-slow 3s ease-in-out infinite;
}

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

.logo-principal {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(255, 45, 146, 0.3));
    transition: all 0.5s ease;
}

.logo-principal:hover {
    transform: scale(1.08) rotate(5deg);
    filter: drop-shadow(0 25px 60px rgba(255, 45, 146, 0.5));
}

.logo-destaque-text {
    text-align: left;
}

.destaque-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradiente-rosa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destaque-subtitle {
    font-size: 1.4rem;
    color: var(--cinza-medio);
    margin-bottom: 40px;
    line-height: 1.8;
}

.destaque-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--cinza-escuro);
    font-weight: 600;
}

.feature-item i {
    color: var(--verde-agua);
    font-size: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradiente-arco-iris);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    animation: rainbow-shift 5s ease infinite;
}

@keyframes rainbow-shift {
    0%, 100% {
        filter: hue-rotate(0deg) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    }
    50% {
        filter: hue-rotate(30deg) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--cinza-medio);
    font-weight: 400;
}

/* Serviços COLORIDOS */
.servicos {
    background: linear-gradient(180deg, #f0f8ff 0%, #ffe6f0 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.servicos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 45, 146, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.servico-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transicao-rapida);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradiente-tropical);
    opacity: 0;
    transition: var(--transicao-rapida);
    z-index: 0;
}

.servico-card:hover::before {
    opacity: 0.1;
}

.servico-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 50px rgba(255, 45, 146, 0.4);
    border-color: var(--rosa-flamingo);
}

.servico-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--gradiente-rosa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: var(--branco);
    transition: var(--transicao-rapida);
    box-shadow: 0 5px 20px rgba(255, 45, 146, 0.4);
    position: relative;
    z-index: 1;
}

.servico-card:hover .servico-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 45, 146, 0.6);
    background: var(--gradiente-verao);
}

.servico-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--cinza-escuro);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.servico-description {
    color: var(--cinza-medio);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Projetos COLORIDOS */
.projetos {
    background: linear-gradient(180deg, #ffe6f0 0%, #f0f8ff 100%);
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.projeto-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 45, 146, 0.3);
    cursor: pointer;
    height: 320px;
    border: 4px solid transparent;
    transition: var(--transicao-rapida);
}

.projeto-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 45, 146, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    opacity: 0;
    transition: var(--transicao-rapida);
    pointer-events: none;
}

.projeto-card:hover {
    border-color: var(--rosa-flamingo);
    box-shadow: 0 15px 50px rgba(255, 45, 146, 0.5);
    transform: translateY(-8px) scale(1.02);
}

.projeto-card:hover::after {
    opacity: 1;
}

.projeto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transicao-media);
    filter: brightness(1);
}

.projeto-card:hover .projeto-img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.projeto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 45, 146, 0.95), rgba(0, 212, 255, 0.95));
    padding: 35px 25px 25px;
    transform: translateY(100%);
    transition: var(--transicao-rapida);
    opacity: 0;
    pointer-events: none;
}

.projeto-card:hover .projeto-overlay {
    transform: translateY(100%);
    opacity: 0;
}

.projeto-titulo {
    color: var(--branco);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.projeto-descricao {
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Sobre COLORIDO */
.sobre {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffe6f0 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 45, 146, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(255, 45, 146, 0.4);
    border: 5px solid #ffffff;
    transition: var(--transicao-rapida);
}

.sobre-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px rgba(255, 45, 146, 0.6);
}

.sobre-text h2 {
    text-align: left;
    margin-bottom: 35px;
}

.sobre-text p {
    margin-bottom: 22px;
    color: var(--cinza-medio);
    line-height: 1.9;
    font-size: 1.08rem;
}

.sobre-text strong {
    color: var(--rosa-flamingo);
    font-weight: 700;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
    transition: var(--transicao-rapida);
    border: 3px solid transparent;
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(255, 45, 146, 0.4);
    border-color: var(--rosa-flamingo);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradiente-rosa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--cinza-medio);
    font-size: 1rem;
    font-weight: 600;
}

/* Contato COLORIDO */
.contato {
    background: linear-gradient(135deg, #ffe6f0 0%, #f0f8ff 100%);
    position: relative;
}

.contato-content {
    max-width: 900px;
    margin: 0 auto;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-radius: 20px;
    transition: var(--transicao-rapida);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
    border: 3px solid transparent;
}

.contato-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 45, 146, 0.4);
    border-color: var(--rosa-flamingo);
}

.contato-icon {
    width: 70px;
    height: 70px;
    background: var(--gradiente-tropical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--branco);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: var(--transicao-rapida);
}

.contato-item:hover .contato-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 45, 146, 0.6);
}

.contato-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--cinza-escuro);
    font-weight: 700;
}

.contato-details a {
    color: var(--rosa-flamingo);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transicao-rapida);
}

.contato-details a:hover {
    color: var(--azul-piscina);
    text-decoration: underline;
}

.contato-cta {
    text-align: center;
    padding: 60px 45px;
    background: var(--gradiente-arco-iris);
    border-radius: 25px;
    color: var(--branco);
    box-shadow: 0 15px 50px rgba(255, 45, 146, 0.5);
}

.cta-text {
    font-size: 1.4rem;
    margin-bottom: 35px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer COLORIDO */
.footer {
    background: linear-gradient(135deg, #222222 0%, #333333 100%);
    color: var(--branco);
    padding: 50px 0 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradiente-arco-iris);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.footer-logo img {
    height: 110px;
    width: 110px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 4px solid #ffffff;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transicao-rapida);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* WhatsApp Flutuante COLORIDO */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: var(--transicao-rapida);
    animation: pulse-whats 2.5s infinite;
    border: 4px solid #ffffff;
}

@keyframes pulse-whats {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
}

/* Botão voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradiente-rosa);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 5px 20px rgba(255, 45, 146, 0.5);
    border: 3px solid #ffffff;
}

/* Responsividade */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 195px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 195px);
        background: linear-gradient(135deg, rgba(255, 45, 146, 0.98) 0%, rgba(0, 212, 255, 0.98) 100%);
        transition: var(--transicao-rapida);
        box-shadow: 0 10px 40px rgba(255, 45, 146, 0.5);
        backdrop-filter: blur(10px);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px;
        gap: 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .btn-orcamento {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .projetos-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
    }
    
    .logo-destaque-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .logo-destaque-text {
        text-align: center;
    }
    
    .destaque-features {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 110px;
        width: 110px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .projetos-grid {
        grid-template-columns: 1fr;
    }
    
    .destaque-title {
        font-size: 2.5rem;
    }
    
    .destaque-subtitle {
        font-size: 1.1rem;
    }
    
    .logo-principal {
        max-width: 450px;
    }
}

/* Animação de scroll para elementos */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}
