.btn-start {
    color: #f07e21;
    font-weight: bold;
    width: 16em;
    height: 3em;
    border-radius: 30em;
    font-size: 15px;
    font-family: inherit;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: -2px -2px 59px 0px rgba(0, 0, 0, 0.53);
    -webkit-box-shadow: -2px -2px 59px 0px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: -2px -2px 59px 0px rgba(0, 0, 0, 0.53);
    transition: all ease-out 0.6s;
}

.btn-start::before {
    content: '';
    width: 0;
    height: 3em;
    border-radius: 30em;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #f07e21 0%, #f07e21 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.btn-start:hover::before {
    width: 20em;
}

.btn-start:hover {
    color: white !important;
}

/* Adicione no início do seu CSS */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Garanta que todos os elementos respeitem a largura do container */
.container,
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Para imagens responsivas */
img {
    max-width: 100%;
    height: auto;
}

:root {
    --orange-primary: rgb(255, 132, 17);
    --orange-light: rgba(255, 132, 17, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.background-first {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.background-first::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/imgs/background-first.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(1px);
    z-index: -1;
}

.background-first::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #c57009bb, #c57009bb);
    z-index: -1;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--orange-primary);
    transition: width 0.3s ease;
}

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

.card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

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

.icones-card {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin: 20px auto;
}

.accordion-button:not(.collapsed) {
    background-color: var(--orange-light);
    color: var(--orange-primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 132, 17, 0.25);
}

.btn-primary {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.btn-primary:hover {
    background-color: #e67a00;
    border-color: #e67a00;
}

.footer {
    background-color: #1a1a1a;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Custom Button */
.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    border: 2px solid var(--orange-primary);
    font-size: 16px;
    background-color: transparent;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 132, 17, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-button:hover {
    background-color: var(--orange-primary);
    box-shadow: 0 6px 16px rgba(255, 132, 17, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .background-first {
        text-align: center;
        padding-top: 80px;
    }

    .principal {
        flex-direction: column-reverse;
    }

    .icones-card {
        height: 60px;
    }
}

.start-btn {
    position: relative;
    padding: 12px 30px;
    background-color: var(--orange-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(255, 132, 17, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.start-btn:hover {
    width: 220px;
    box-shadow: 0 8px 25px rgba(255, 132, 17, 0.4);
    transform: translateY(-3px);
}

.start-btn::after {
    content: "→";
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.start-btn:hover::after {
    opacity: 1;
    right: 30px;
}

.start-btn span {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.start-btn:hover span {
    transform: translateX(-10px);
}
