:root {
    --bs-primary: #f47500;
    --bs-secondary: #6c757d;
    --bs-dark: #032847;
    --bs-light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Top Bar */
.top-bar {
    background-color: var(--bs-dark);
    font-size: 0.9rem;
}
.top-bar .social-icons a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar-brand img {
    transition: transform 0.3s ease;
}
.navbar-brand img:hover {
    transform: scale(1.05);
}
.navbar .nav-link {
    font-weight: 500;
    color: #555;
    transition: color 0.3s;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--bs-primary);
}
.navbar .btn-primary {
    border-radius: 50px;
    padding: 8px 25px;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.navbar .btn-primary:hover {
    background-color: #d96800;
    border-color: #d96800;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1614850523011-8f49ffc73908?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    height: 80vh;
    min-height: 500px;
}

/* Services Section */
#servicos .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
}
#servicos .row > div:hover .icon-box {
    transform: translateY(-10px);
    background-color: #d96800; /* Darker orange */
}

/* Plans Section */
.plan-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.plan-card .card-header {
    background-color: var(--bs-dark);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 5px solid var(--bs-primary);
}
.plan-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bs-dark);
}
.plan-card .price span {
    font-size: 1rem;
    color: var(--bs-secondary);
}
.plan-card .btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: bold;
}
.plan-card .display-4 {
    color: var(--bs-primary) !important;
}


/* FAQ Section */
.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--bs-primary);
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(244, 117, 0, 0.25);
}
.accordion-item {
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #dee2e6;
}

/* Contact Section */
#contato .form-control {
    border-radius: 10px;
    padding: 12px;
}
#contato .btn {
    font-weight: bold;
    padding: 12px;
    border-radius: 10px;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
#contato .btn:hover {
    background-color: #d96800;
    border-color: #d96800;
}
#contato .text-primary {
    color: var(--bs-primary) !important;
}


/* Footer */
.footer {
    background-color: var(--bs-dark);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
