:root {
    --primary-color: #c98956;
    --secondary-color: #252525;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --dark-gray: #c98956;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
    padding-top: 70px; /* Espaço para o header fixo */
}

/* Header Styles */
.header {
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    padding: 8px 12px;
}

.navbar-nav .nav-link:hover {
    color: var(--light-color);
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--light-color);
    bottom: 0;
    left: 12px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after {
    width: calc(100% - 24px);
}

.navbar-nav .btn {
    margin-left: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(37, 37, 37, 0.7), rgba(37, 37, 37, 0.7)), url('../img/fundo\ hero.jpg') no-repeat center center;
    background-size: cover;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.slogan-box {
    margin: 25px 0;
}

.slogan {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-color);
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.benefit-badge i {
    color: gold;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Seção Custo-Benefício */
.price-benefit {
    margin: 40px 0;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slogan-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

/* Destaques */
.destaque-item {
    transition: transform 0.3s ease;
    height: 100%;
}

.destaque-item:hover {
    transform: translateY(-5px);
}

.destaque-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Carousel */
.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 15px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: 90%;
}

/* Diferenciais */
.diferencial-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.diferencial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.diferencial-icon i {
    color: var(--primary-color);
}

.seller-video-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
    padding: 80px 0;
    position: relative;
}

.seller-video-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.seller-video-section .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: 300px;
}

.seller-video-section .divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #c98956, transparent);
}

.seller-video-section .divider i {
    color: #c98956;
    margin: 0 15px;
    font-size: 1.2rem;
}

.video-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-player-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    background: #000;
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 2;
}

.video-thumbnail-overlay:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(201, 137, 86, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.video-controls-bar {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f5f5f5;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.control-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.watch-again {
    background: #f0f0f0;
    color: #555;
}

.watch-again:hover {
    background: #e0e0e0;
}

.contact-now {
    background: #25D366;
    color: white;
}

.contact-now:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.seller-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.seller-profile {
    position: relative;
    margin-bottom: 25px;
}

.seller-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f5f5f5;
    display: block;
    margin: 0 auto;
}

.seller-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.seller-badges span {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-experience {
    background: rgba(201, 137, 86, 0.1);
    color: #c98956;
}

.badge-projects {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.seller-name {
    text-align: center;
    font-size: 1.8rem;
    color: #252525;
    margin-bottom: 20px;
}

.seller-name span {
    display: block;
    font-size: 1rem;
    color: #777;
    font-weight: 400;
    margin-top: 5px;
}

.seller-expertise {
    list-style: none;
    margin: 30px 0;
}

.seller-expertise li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.seller-expertise i {
    color: #c98956;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.2rem;
}

.seller-cta {
    background: rgba(201, 137, 86, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #c98956;
    margin-top: 30px;
}

.seller-cta p {
    font-style: italic;
    margin-bottom: 20px;
    color: #252525;
}

.whatsapp-btn {
    background: #25D366;
    width: 100%;
    text-align: center;
}

.whatsapp-btn:hover {
    background: #1da851;
}

.guarantee-seal {
    text-align: center;
    margin-top: 50px;
}

.guarantee-seal img {
    max-width: 120px;
    margin-bottom: 15px;
}

.guarantee-seal p {
    color: #777;
    font-size: 0.95rem;
}

/* Responsivo */
@media (max-width: 992px) {
    .video-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .seller-info-card {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .seller-video-section {
        padding: 60px 0;
    }
    
    .video-controls-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .control-btn {
        justify-content: center;
    }
    
    .seller-name {
        font-size: 1.5rem;
    }
}

/* Depoimentos */
.depoimento-item {
    transition: transform 0.3s ease;
    height: 100%;
}

.depoimento-item:hover {
    transform: translateY(-5px);
}

.depoimento-text i {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.google-review {
    background-color: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
}

/* Formulário */
.form-container {
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
}

/* WhatsApp Float */
/* .whatsapp-float {
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    
} */
 .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Notificação estilo WhatsApp */
.whatsapp-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #ff3b30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px white;
}


.location-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #252525;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: none;
}

.cta-location {
    margin-top: 40px;
    text-align: center;
}

.cta-location p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #c98956
}

.cta-location .btn {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-location .btn:hover {
    background-color: #1ebe5d;
}

.social-hero {
    margin-top: 30px;
    gap: 24px;
    display: flex;
    justify-content: center;
}

.social-hero a {
    color: white;
    font-size: 40px; /* Ícone maior */
    padding: 12px;
    border-radius: 20%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-hero a:hover {
    transform: scale(1.2);
    color: #c98956; /* Ou alguma cor do tema */
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #333;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    margin-bottom: 15px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.btn-accept {
    background-color: #007bff;
    color: white;
    border: none;
}

.btn-customize {
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
}

.btn-reject {
    background-color: transparent;
    border: 1px solid #6c757d;
    color: #6c757d;
}

.cookie-customization {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: none;
}

.cookie-customization.active {
    display: block;
}

.cookie-option {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.cookie-option input {
    margin-right: 10px;
}

.cookie-option label {
    flex: 1;
}