/* Hero Section com Slideshow */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

/* Suas 3 imagens - substitua pelos nomes corretos */
.hero-slide:nth-child(1) {
    background-image: linear-gradient(rgba(44, 24, 16, 0.3), rgba(142, 78, 198, 0.3)), 
                     url('/images/slides/slide1.png');
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(rgba(44, 24, 16, 0.3), rgba(142, 78, 198, 0.3)), 
                     url('/images/slides/slide2.png');
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(44, 24, 16, 0.3), rgba(142, 78, 198, 0.3)), 
                     url('/images/slides/slide3.png');
}

/* Navigation Dots (Vertical Left) */
.hero-slide-nav {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-nav-dot.active {
    background: #ffd700;
    border-color: #ffd700;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Social Media Bar (Fixed Right) */
.hero-social-bar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #ffc10769;
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 2px 1px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    /* border: 1px solid #f6e74b59 */
    border: 1px solid #f7e952 /* rgba(255, 255, 255, 0.2); */
    /* rgba(255, 255, 255, 0.2); */
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Instagram */
.hero-social-link.instagram::before {
    color: white;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Facebook */
.hero-social-link.facebook::before {
    color: white;
    background: #1877f2;
}

/* Google */
.hero-social-link.google::before {
    color: white;
    background: linear-gradient(45deg, #ea4335, #fbbc05, #34a853, #4285f4);
}

/* LinkedIn */
.hero-social-link.linkedin::before {
    color: white;
    background: #0077b5;
}

/* LinkedIn */
.hero-social-link.nextdoor::before {
    color: white !important; 
    background: #1D8751;
}

/* LinkedIn */
.hero-social-link.thumbtack::before {
    color: white; 
    background: #009FD9;
}

.hero-social-link:hover::before {
    opacity: 1;
}

.hero-social-link:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    word-wrap: break-word;
    line-height: 1.3;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    hyphens: auto;
    
}

/* NOVO: Card Transparente para o Formulário */
.hero-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Efeito glassmorphism adicional */
.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.hero-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* Título do formulário */
.form-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.form-title i {
    color: #ffd700;
    margin-right: 0.5rem;
}

/* Grupos do formulário */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Ícones do formulário */
.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    pointer-events: none;
}

/* Botão principal */
.cta-primary {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #2c1810;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #ffed4a, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.cta-primary i {
    margin-right: 0.5rem;
}

/* Garantia do formulário */
.form-guarantee {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-guarantee i {
    color: #ffd700;
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    

    .hero .hero-title {
        margin-top: 0rem;
        font-size: 1.8rem;
        line-height: 1.15;
        margin-bottom: 0rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        word-wrap: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        font-size: clamp(22px, 6.2vw, 36px); 
        -webkit-hyphens: none !important;      /* Safari/iOS */
        -ms-word-break: normal !important;     /* legado */
        word-break: normal !important;        /* padrão */
    }
    .nb { white-space: nowrap; display: inline-block; }
    
    .hero-subtitle {
        display: none;
        font-size: 1.1rem;
    }
    
    .hero-form {
        padding: 0rem;
        margin-top: 0rem;
    }
    
    .form-title {
        font-size: 1.0rem;
    }
    
    .hero-slide-nav {
        left: 15px;
        gap: 10px;
    }
    
    .hero-nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-social-bar {
        right: 5px;
        gap: 12px;
    }
    
    .hero-social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
    
    .form-icon {
        left: 0.8rem;
    }
}


/* Desliga gradiente no título About em qualquer tela */
.about-us .about-text .section-title {
  -webkit-text-fill-color: initial !important;
  color: var(--dark-purple) !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: border-box !important;
  animation: none !important;
}