/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: #040120;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    width: auto;
    height: 55px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #0984e3 !important;
}

/* Hamburger Menu Styles */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #040120;
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
    }

    .navbar-nav {
        padding: 10px 0;
    }

    .nav-item {
        padding: 8px 0;
    }
}

.nav-link {
    font-weight: 500;
    color: white;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0984e3 !important;
}

.nav-link.active {
    color: #0984e3 !important;
}

/* Header Styles */
.header {
    position: relative;
    min-height: 100vh;
    background: url('../img/banner-bg.avif') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top: 92px;
}

.header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 32, 96, 0.8));
}

.header .container {
    position: relative;
    z-index: 1;
}

.header h1 {
    font-weight: normal !important;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-size: 30px !important;
}

.header .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: #0984e3;
    border: none;
    padding: 15px 35px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #0769b5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 132, 227, 0.4);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .header {
        text-align: center;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 15px 0;
    }

    .header .lead {
        font-size: 1.1rem;
    }
}

/* Services Section */
.services {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
}

.section-title {
    font-weight: 700;
    color: #040120;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #0984e3;
}

.section-subtitle {
    color: #636e72;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0984e3, #00f2fe);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0984e3, #00f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #040120;
    margin-bottom: 15px;
}

.service-card p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #2d3436;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #0984e3;
    margin-right: 10px;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .services {
        padding: 60px 0;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #ffffff;
}

.about .section-subtitle {
    color: #0984e3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.about .section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #040120;
    font-weight: 700;
    line-height: 1.2;
}

.about .section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #0984e3;
    font-size: 1.2rem;
}

.feature-item span {
    color: #2d3436;
    font-weight: 500;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translateY(-10px);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #0984e3, #00f2fe);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.2);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Team Carousel Styles */
#sociosCarousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member {
    position: relative;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 30px;
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #0984e3;
    transform: translateY(-3px);
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: #0984e3;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

#sociosCarousel:hover .carousel-control-prev,
#sociosCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

@media (max-width: 991.98px) {
    .team-member img {
        height: 400px;
    }
    
    .member-info {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .team-member img {
        height: 350px;
    }
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
    padding: 120px 0;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-info-item {
    text-align: center;
    flex: 0 0 auto;
    width: 250px;
    margin: 0 15px;
}

.contact-info-item:last-child {
    margin-bottom: 40px;
}

.contact-info-item .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0984e3, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-item .icon-wrapper i {
    font-size: 24px;
    color: white;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #040120;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: #636e72;
    margin: 0;
}

.contact-info-item a {
    color: #636e72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #0984e3;
}

.social-media {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #f1f2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040120;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #0984e3;
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 50px;
    padding: 10px 20px;
    border: 2px solid #f1f2f6;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3436;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0984e3;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

.form-control::placeholder {
    color: #b2bec3;
}

.contact .btn-primary {
    padding: 15px 40px;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .contact {
        padding: 80px 0;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-info-item {
        width: 100%;
        margin: 0;
    }
    
    .contact-info {
        padding: 30px;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px;
    }

    .form-control {
        height: 45px;
    }
}

/* Footer Styles */
.footer {
    background-color: #040120;
    color: #ffffff;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    height: 55px;
    width: auto;
}

.footer-info p {
    margin: 20px 0;
    color: #b2bec3;
    line-height: 1.8;
}

.footer .social-links {
    margin-top: 30px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #0984e3;
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #0984e3;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b2bec3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #b2bec3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #0984e3;
    font-size: 1.1rem;
}

.footer-contact a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #b2bec3;
    font-size: 0.9rem;
}

.copyright strong {
    color: #ffffff;
}

.credits {
    color: #b2bec3;
    font-size: 0.9rem;
}

.credits a {
    color: #ffffff;
    text-decoration: none;
}

.credits i {
    color: #e74c3c;
    margin: 0 3px;
}

@media (max-width: 991.98px) {
    .footer-top {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom {
        text-align: center;
    }
    
    .credits {
        margin-top: 10px;
        text-align: center !important;
    }
}

/* Estilos para os botões de Saiba Mais */
.service-card .btn-outline-primary {
    border-color: #0984e3;
    color: #0984e3;
    transition: all 0.3s ease;
    width: 100%;
}

.service-card .btn-outline-primary:hover {
    background-color: #0984e3;
    color: #ffffff;
}

/* Estilos para os modais de serviços */
.modal-content {
    background-color: #ffffff;
    border: none;
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    color: #040120;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-body h4 {
    color: #040120;
    font-weight: 600;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.modal-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.modal-features li i {
    color: #0984e3;
    margin-right: 0.5rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 2rem;
}

.modal-footer .btn-secondary {
    background-color: #808e9b;
    border: none;
}

.modal-footer .btn-primary {
    background-color: #0984e3;
    border: none;
}

.modal-footer .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Feedback Section */
.feedback {
    background-color: #f8f9fa;
}

.feedback-item {
    padding: 30px 15px;
}

.feedback-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.feedback-text {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.feedback-text i {
    color: #0984e3;
    font-size: 30px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.feedback-text p {
    font-size: 1.1rem;
    color: #2d3436;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.feedback-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-info h4 {
    margin: 0;
    color: #2d3436;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0;
    color: #636e72;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
}

.rating i {
    margin: 0 2px;
}

#feedbackCarousel .carousel-control-prev,
#feedbackCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: #0984e3;
    border-radius: 50%;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
}

#feedbackCarousel .carousel-control-prev {
    left: -20px;
}

#feedbackCarousel .carousel-control-next {
    right: -20px;
}

#feedbackCarousel .carousel-control-prev:hover,
#feedbackCarousel .carousel-control-next:hover {
    opacity: 1;
}

#feedbackCarousel .carousel-indicators {
    bottom: -50px;
}

#feedbackCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0984e3;
    opacity: 0.5;
    margin: 0 5px;
}

#feedbackCarousel .carousel-indicators button.active {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .feedback-content {
        padding: 30px 20px;
    }

    .feedback-text p {
        font-size: 1rem;
    }

    .feedback-author {
        flex-direction: column;
        text-align: center;
    }

    .rating {
        margin-top: 10px;
    }

    #feedbackCarousel .carousel-control-prev,
    #feedbackCarousel .carousel-control-next {
        display: none;
    }
} 