:root {
    --primary-color: #FF6B00; /* Laranja */
    --secondary-color: #003366; /* Azul marinho */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 70px; /* Adiciona padding no topo do body para acomodar a navbar fixa */
}

/* Navbar */
.navbar {
    background-color: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(0, 51, 102, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: white !important;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand:hover .logo-img {
    transform: rotate(5deg);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
}

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

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

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color), #004080);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.1;
    animation: parallax 20s infinite alternate;
}

@keyframes parallax {
    0% {
        transform: scale(1.1) translateY(0);
    }
    100% {
        transform: scale(1.1) translateY(-20px);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.floating-image {
    animation: float 6s ease-in-out infinite;
}

.floating-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e05a00;
    border-color: #e05a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background: white;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.card-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.card-title {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.card:hover .card-title {
    color: var(--primary-color);
}

/* Stats */
.stats-container {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: white;
}

.stat-item:hover i {
    color: white !important;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

/* Icons */
.text-primary {
    color: var(--primary-color) !important;
}

.fa-3x {
    transition: transform 0.3s ease;
}

.card:hover .fa-3x {
    transform: scale(1.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    text-align: center;
}

section h2 {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

section h2:hover::after {
    width: 80px;
}

/* Quem Somos Section */
#quem-somos {
    background-color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

#quem-somos .lead {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

#quem-somos p {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
}

#quem-somos .card {
    border: none;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#quem-somos .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#quem-somos .card-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

#quem-somos .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#quem-somos .card:hover .card-title::after {
    width: 100px;
}

#quem-somos .list-unstyled li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

#quem-somos .list-unstyled li:hover {
    background-color: rgba(255, 107, 0, 0.1);
    transform: translateX(10px);
}

#quem-somos .list-unstyled li i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

#quem-somos .list-unstyled li:hover i {
    transform: scale(1.2);
}

#quem-somos .list-unstyled li span {
    font-size: 1.1rem;
    color: var(--text-color);
}

@media (max-width: 767.98px) {
    #quem-somos {
        padding: 4rem 0;
    }

    #quem-somos .lead {
        font-size: 1.2rem;
        padding-left: 1rem;
    }

    #quem-somos p {
        font-size: 1rem;
    }

    #quem-somos .card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    #quem-somos .card-title {
        font-size: 1.3rem;
    }

    #quem-somos .list-unstyled li {
        margin-bottom: 1rem;
        padding: 0.5rem;
    }

    #quem-somos .list-unstyled li span {
        font-size: 1rem;
    }
}

/* Serviços Section */
#servicos {
    background-color: var(--light-bg);
}

#servicos .card {
    text-align: left;
    border: none;
    background: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#servicos .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

#servicos .card:hover::before {
    transform: scaleX(1);
}

#servicos .icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#servicos .icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

#servicos .card:hover .icon-wrapper {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#servicos .card:hover .icon-wrapper::before {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

#servicos .icon-wrapper i {
    font-size: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

#servicos .card:hover .icon-wrapper i {
    transform: scale(1.2);
}

#servicos .card-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

#servicos .card:hover .card-title {
    color: var(--primary-color);
}

#servicos .list-unstyled li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

#servicos .list-unstyled li:hover {
    background-color: rgba(255, 107, 0, 0.1);
    transform: translateX(10px);
}

#servicos .list-unstyled li i {
    font-size: 1.1rem;
    margin-right: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

#servicos .list-unstyled li:hover i {
    transform: scale(1.2);
}

#servicos .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

#servicos .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

#servicos .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

#servicos .btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

#servicos .btn-link:hover::after {
    width: 100%;
}

@media (max-width: 767.98px) {
    #servicos .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    #servicos .icon-wrapper i {
        font-size: 2rem;
    }

    #servicos .card-title {
        font-size: 1.3rem;
    }

    #servicos .list-unstyled li {
        font-size: 0.95rem;
    }
}

/* Contato Section */
#contato .card {
    text-align: left;
}

#contato .contact-form {
    text-align: left;
}

/* Contact Form */
.contact-form .input-group {
    margin-bottom: 1rem;
}

.contact-form .input-group-text {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form .invalid-feedback {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    color: #dc3545;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Alertas de Feedback */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Social Links */
.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    position: relative;
    padding: 4rem 0 2rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

footer h5 {
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

footer .social-links {
    margin-top: 1rem;
}

footer .social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

footer .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--hover-shadow);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
}

footer .text-danger {
    color: var(--primary-color) !important;
}

@media (max-width: 767.98px) {
    footer {
        text-align: center;
        padding: 3rem 0 1.5rem;
    }

    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }

    .map-container {
        margin-top: 1rem;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .floating-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .card {
        margin-bottom: 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    footer {
        text-align: center;
        padding: 3rem 0 1.5rem;
    }

    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }

    .map-container {
        margin-top: 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e05a00;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Portfolio Section */
.portfolio-item {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: white;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-info {
    padding: 1.5rem;
    background: white;
    border-top: 3px solid var(--primary-color);
}

.portfolio-info h5 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.portfolio-info p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .portfolio-img img {
        height: 200px;
    }
    
    .portfolio-info {
        padding: 1rem;
    }
    
    .portfolio-info h5 {
        font-size: 1.1rem;
    }
    
    .portfolio-info p {
        font-size: 0.9rem;
    }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

/* Focus Outline */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Font Smoothing */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.back-to-top:hover {
    background-color: #e05a00;
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

@media (max-width: 767.98px) {
    .back-to-top {
        bottom: 20px;
        right: 80px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Melhorias no Formulário */
.contact-form .form-select {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}

.contact-form .form-check {
    margin-top: 1.5rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .form-check-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-form .form-check-label a:hover {
    color: #e05a00;
    text-decoration: underline;
}

/* Melhorias nos Cards de Serviços */
.card.bg-primary {
    border: none;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.card.bg-primary .card-body {
    padding: 3rem;
}

.card.bg-primary h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.card.bg-primary p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.card.bg-primary .btn-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    transition: var(--transition);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.card.bg-primary .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 767.98px) {
    .card.bg-primary {
        margin: 2rem 1rem;
    }

    .card.bg-primary .card-body {
        padding: 2rem 1.5rem;
    }

    .card.bg-primary h4 {
        font-size: 1.5rem;
    }

    .card.bg-primary p {
        font-size: 1rem;
    }
}

/* Melhorias nos Links */
.btn-link {
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
}

.btn-link:hover {
    transform: translateX(5px);
}

/* Melhorias nas Listas */
.list-unstyled li {
    transition: var(--transition);
}

.list-unstyled li:hover {
    transform: translateX(5px);
}

/* Melhorias nos Ícones */
.icon-wrapper i {
    transition: var(--transition);
}

.card:hover .icon-wrapper i {
    transform: scale(1.2) rotate(5deg);
}

/* Melhorias na Responsividade */
@media (max-width: 767.98px) {
    .card.bg-primary {
        margin-top: 2rem;
    }

    .btn-link {
        display: block;
        margin-top: 1rem;
    }

    .contact-form .form-check {
        margin-top: 1rem;
    }
}

/* Melhorias nas Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Melhorias no Scroll */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #e05a00;
}

/* Melhorias na Responsividade Mobile */
@media (max-width: 767.98px) {
    /* Ajustes Gerais */
    body {
        padding-top: 60px;
    }

    section {
        padding: 3rem 0;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .nav-link {
        padding: 0.5rem 0;
        margin: 0.5rem 0;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    /* Cards Mobile */
    .card {
        margin-bottom: 1.5rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }

    /* Serviços Mobile */
    .card.bg-primary {
        margin: 1.5rem 0.5rem;
    }

    .card.bg-primary .card-body {
        padding: 1.5rem;
    }

    .card.bg-primary h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .card.bg-primary p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .card.bg-primary .btn-light {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Formulário Mobile */
    .contact-form .input-group {
        margin-bottom: 1rem;
    }

    .contact-form .input-group-text {
        padding: 0.5rem 0.75rem;
    }

    .contact-form .form-control {
        padding: 0.5rem;
        font-size: 0.95rem;
    }

    .contact-form .form-check {
        margin-top: 0.75rem;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem 0 1rem;
    }

    footer h5 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    footer .social-links {
        margin-top: 1rem;
    }

    footer .social-links a {
        font-size: 1.1rem;
        margin: 0 0.5rem;
    }

    /* Botões Flutuantes Mobile */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 70px;
    }

    /* Links e Botões Mobile */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-link {
        display: inline-block;
        margin-top: 0.5rem;
        font-size: 0.95rem;
    }

    /* Listas Mobile */
    .list-unstyled li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    /* Portfolio Mobile */
    .portfolio-img img {
        height: 200px;
    }

    .portfolio-info {
        padding: 15px;
    }

    .portfolio-info h5 {
        font-size: 1.1rem;
    }

    .portfolio-info p {
        font-size: 0.85rem;
    }

    /* Mapa Mobile */
    .map-container {
        margin: 1rem 0;
        height: 200px;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* Ajustes para Telas Muito Pequenas */
@media (max-width: 375px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .icon-wrapper i {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 30px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

@media (max-width: 767.98px) {
    .logo-img {
        height: 35px;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }
}

@media (max-width: 375px) {
    .logo-img {
        height: 30px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
} 