html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* VWTech Dev - Base CSS */

/* Cores customizadas */
.bg-custom-black {
    background-color: #070808;
}

.text-custom-orange {
    color: #ca692d;
}

.bg-custom-orange {
    background-color: #ca692d;
}

.border-custom-orange {
    border-color: #ca692d;
}

.hover\:bg-custom-orange:hover {
    background-color: #ca692d;
}

.hover\:text-custom-black:hover {
    color: #070808;
}

/* Cards de planos */
.plan-card {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}

.plan-card:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: 0 10px 25px rgba(202, 105, 45, 0.3);
}

/* Cards de depoimentos */
.testimonial-card {
    transition: all 0.3s ease;
    min-height: 300px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(202, 105, 45, 0.1);
}

/* Controles do carrossel */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Projetos com overlay */
.project-item {
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 8, 8, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

/* Títulos do hero */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
}

/* Imagem do hero com animação */
.hero-image {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(202, 105, 45, 0.2));
}

/* Animações keyframe */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.float-bounce {
    animation: float-bounce 3s ease-in-out infinite;
}

/* Background do hero */
.hero-bg {
    background: radial-gradient(circle at center, rgba(202, 105, 45, 0.1) 0%, rgba(7, 8, 8, 0.9) 70%);
}

/* Botão do WhatsApp */
.whatsapp-button {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.whatsapp-button:hover {
    animation: none;
    transform: scale(1.1);
} 

/* Animações de entrada CSS puro */
.fade-in {
    opacity: 0;
    transform: none;
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
} 

/* Efeito de zoom suave para todos os cards */
.card-hover-zoom {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}
.card-hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(202, 105, 45, 0.15);
} 

/* Animação flutuante para SVG na hero section */
.floating-svg {
  animation: floatY 3.5s ease-in-out infinite;
}

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-32px); }
  100% { transform: translateY(0); }
} 

/* Ajustes responsivos para mobile */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
  }
  .plan-card {
    margin-bottom: 1.5rem;
  }
  .floating-svg {
    display: none !important;
  }
  .floating-buttons-container {
    right: 1rem !important;
    bottom: 1rem !important;
    left: auto !important;
    max-width: 100vw !important;
  }
  .fixed.right-6.bottom-6.flex {
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 100vw !important;
  }
  #back-to-top {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    z-index: 10000 !important;
  }
  .whatsapp-button {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10000 !important;
  }
  .project-item img {
    height: 180px !important;
  }
  .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .fade-in, .fade-up, .fade-right, .fade-left {
    opacity: 1 !important;
    transform: none !important;
  }
} 

.floating-buttons-container {
  right: 1.5rem;
  bottom: 1.5rem;
} 

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94, 0); }
}

.pulse-white {
  animation: pulse-white 2s infinite;
}
@keyframes pulse-white {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}