/* Estilos Gerais */
:root {
    --primary-color: #ff6a00;
    --secondary-color: #ff8533;
    --dark-color: #000000;
    --light-color: #f8f9fa;
    --accent-color: #ffa366;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Home Hero Section */
#inicio {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 76px;
}

#inicio .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#inicio h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#inicio p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#inicio .btn {
    text-shadow: none;
}

/* Service Pages Hero */
.service-hero {
    background-color: var(--dark-color);
    padding: 100px 0 80px;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.service-hero .service-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-hero .lead {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-hero .price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-hero .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-hero .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    min-width: 200px;
}

.service-hero .btn-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-hero .btn-whatsapp:hover {
    background-color: #128c7e !important;
    border-color: #128c7e !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-hero .btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-hero .btn-whatsapp i {
    transition: transform 0.3s ease;
}

.service-hero .btn-whatsapp:hover i.fa-whatsapp {
    transform: scale(1.2);
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--dark-color) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: white !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Cards de Serviços */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 2rem;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Botões */
.btn-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e !important;
    border-color: #128c7e !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp i {
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover i.fa-whatsapp {
    transform: scale(1.2);
}

/* Seção Sobre */
#sobre {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 5rem 0;
}

#sobre h2, #sobre h4 {
    color: var(--primary-color);
}

#sobre p, #sobre .lead {
    color: #e0e0e0;
}

#sobre .list-unstyled li {
    color: #e0e0e0;
}

#sobre .fa-3x {
    color: var(--primary-color);
}

#sobre .img-fluid {
    /* Removendo a borda laranja */
}

#sobre .text-center {
    color: #e0e0e0;
}

/* Responsividade */
@media (max-width: 768px) {
    #sobre {
        padding: 3rem 0;
    }

    .navbar-brand {
        gap: 5px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .main-image {
        height: 300px;
    }

    .overlay-content h3 {
        font-size: 1.3rem;
    }

    .overlay-content h4 {
        font-size: 1.1rem;
    }
}

/* Formulário de Contato */
.form-control {
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
    border-color: var(--primary-color);
}

/* Informações de Contato */
.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.social-links a {
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Animações */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Sobre Nós Section */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.team-card img {
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.team-card .card-body {
    padding: 1.5rem;
}

.team-card .card-title {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Valores List */
.list-unstyled li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.list-unstyled li i {
    color: var(--primary-color);
}

/* Estrutura Icons */
.fa-3x {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Sobre Nós Section */
.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container iframe {
    transition: transform 0.5s ease;
    flex: 1;
    min-height: 250px;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.contact-info {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 25px;
    margin-right: 10px;
}

/* Imagens da Empresa */
.img-fluid {
    transition: transform 0.3s ease;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.img-fluid:hover {
    transform: scale(1.02);
}

/* Logo */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .img-fluid {
        max-height: 300px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

/* Efeitos de Hover */
.navbar-brand:hover,
.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Scroll Suave */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Image Containers */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.image-overlay p {
    margin: 5px 0 0;
    font-size: 1rem;
    opacity: 0.9;
}

.overlay-content {
    color: white;
    text-align: center;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.overlay-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.overlay-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.main-image {
    height: 400px;
}

/* Estilos para a seção de serviços */
.service-card {
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .card-img-top {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0));
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.price-tag {
    position: relative;
    display: inline-block;
}

.price-tag:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover .price-tag:before {
    transform: scaleX(1);
}

/* Map Button Styles */
.map-button {
    background-color: #ff6a00;
    border-color: #ff6a00;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.map-button:hover {
    background-color: #ff8533;
    border-color: #ff8533;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.map-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-button i {
    transition: transform 0.3s ease;
}

.map-button:hover i.fa-map-marker-alt {
    transform: scale(1.2);
}

.map-button:hover i.fa-external-link-alt {
    transform: translateX(3px);
} 