/* Importação da fonte Axiforma */
@import url('https://fonts.cdnfonts.com/css/axiforma');

:root {
    /* Cores da marca conforme especificado */
    --headerDropShadowColor: hsla(0, 0%, 0%, 1);
    --headerBorderColor: hsla(0, 0%, 0%, 1);
    --solidHeaderBackgroundColor: hsla(31.17, 81.75%, 49.41%, 1);
    --solidHeaderNavigationColor: hsla(0, 0%, 0%, 1);
    --gradientHeaderBackgroundColor: hsla(158.3, 92.16%, 10%, 1);
    --gradientHeaderNavigationColor: hsla(0, 0%, 100%, 1);
    
    /* Cores adicionais para o tema */
    --primary-color: hsla(31.17, 81.75%, 49.41%, 1); /* Laranja */
    --secondary-color: hsla(158.3, 92.16%, 10%, 1); /* Verde escuro */
    --accent-color: #f8b133; /* Laranja mais claro para acentos */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --white: #ffffff;
    --gray: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
}

/* Estilos Gerais */
body {
    font-family: 'Axiforma', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

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

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

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    opacity: 0.9;
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Header e Navegação */
header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: var(--solidHeaderBackgroundColor);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--solidHeaderNavigationColor);
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
}

/* Ajuste para versão desktop - redução da fonte do menu */
@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}

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

.navbar-dark .navbar-nav .nav-link:hover:after,
.navbar-dark .navbar-nav .active .nav-link:after {
    width: 70%;
}

.navbar-brand img.logo {
    height: 50px;
}

.btn-orcamento {
    margin-left: 15px;
    background-color: var(--white);
    color: var(--primary-color) !important;
    font-weight: 700;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 13px;
    padding-bottom: 7px;
}

/* Ajuste para versão desktop - redução do botão de orçamento */
@media (min-width: 992px) {
    .btn-orcamento {
        margin-left: 10px;
        
        font-size: 0.9rem;
    }
}

.btn-orcamento:hover {
    background-color: transparent;
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Serviços */
.services-section {
    background-color: var(--light-bg);
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Sobre Nós (Resumo) */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content {
    padding: 30px 0;
}

.about-content h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-feature {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.about-feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Estatísticas */
.stats-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Depoimentos */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonial-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 15px;
    position: relative;
}

.testimonial-item:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 20px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-size: 1.1rem;
    padding: 12px 30px;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--white);
}

/* Formulário de Orçamento */
.form-section {
    padding: 80px 0;
}

.form-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

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

.form-check-label {
    font-size: 0.9rem;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 70px 0 0;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

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

.footer p {
    margin-bottom: 20px;
    color: #aaa;
}

.social-media {
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #aaa;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    color: #aaa;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.copyright {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--primary-color);
}

/* Breadcrumbs */
.breadcrumb-section {
    background-color: var(--light-bg);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gray);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Página de Produto */
.product-section {
    padding: 80px 0;
}

.product-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.product-img img {
    width: 100%;
    height: auto;
}

.product-features {
    margin-top: 30px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.product-feature-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.product-feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.product-feature-item:hover i {
    color: var(--white);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 10px;
    }
    
    .btn-orcamento {
        margin-left: 10px;
        padding: 8px 15px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img.logo {
        height: 40px;
        padding-left: 12px;
    }
    
    .navbar-dark .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .navbar-collapse {
        background-color: var(--solidHeaderBackgroundColor);
        padding: 15px;
        border-radius: 5px;
        margin-top: 10px;
    }
    
    .btn-conheca-andes {
        margin-top: 20px;
    }
    
    .btn-orcamento {
        margin: 10px 0 0;
        display: block;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .footer h4 {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 20px;
    }
}