@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #222222;
    --secondary-color: #000000;
    --accent-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f8f8f8;
    --medium-gray: #dddddd;
    --dark-gray: #555555;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat';
    color: var(--text-color);
    background-color: var(--accent-color);
    line-height: 1.6;
}

h1, h3, h4, h5, h6 {
    font-family: 'Montserrat';
    color: white;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

header {
    background-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.logo-img {
    height: 60px;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 15px;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--dark-gray);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Seções Comuns */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: white;
}

/* Hero Sections */
.hero, 
.services-hero, 
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-hero {
    min-height: 50vh;
}

.hero::before,
.services-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content,
.services-hero-content,
.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
        color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.contact-hero .container {
  animation: fadeIn 1.5s ease-out forwards;
}
.product-categories-section {
  background: linear-gradient(145deg, #111, #1c1c1c);
  padding: 5rem 0;
  color: #fff;
}

.product-categories-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.category-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.category-card:hover {
  background-color: #292929;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.category-card i {
  color: #000000; 
  transition: color 0.3s ease;
}

.category-card:hover i {
  color: #000000;
}

.category-card h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: #bbbbbb;
  font-size: 0.875rem;
  margin: 0;
}

/* Botões */
.btn-custom,
.hero-button,
.service-button,
.contact-button,
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.hero-button,
.service-button,
.contact-button {
    background-color: rgb(233, 233, 233);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.hero-button:hover,
.service-button:hover,
.contact-button:hover {
    background-color: grey;
    color: var(--accent-color);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.cta-button:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

/* Sobre */
.about {
    padding: 5rem 0;
    text-align: center;
}

.about-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 0 1.5rem;
    transition: var(--transition);
}

.about-icon:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Serviços */
.services {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 5rem 0;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.service-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
}

/* Página de Serviços Detalhados */
.detailed-services {
    padding: 5rem 0;
}

.service-row {
    padding: 3rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.service-row:last-child {
    border-bottom: none;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.service-features li::before {
    content: '\f00c';
    font-family:'Montserrat';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-image:hover {
    transform: scale(1.02);
}

/* Página de Contato */
.contact-section {
    padding: 5rem 0;
}

.contact-form .form-control {
    height: 50px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(34, 34, 34, 0.1);
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 150px;
}

.info-item {
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: grey;
    transform: translateY(-3px);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color) !important;
    color: var(--accent-color);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-text {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--light-gray);
    transform: translateY(-3px);
}


/* Reset básico e fontes */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #fff;
    line-height: 1.6;
}

/* Logo na navbar */
.logo-img {
    max-height: 50px;
}

/* Hero section */
.hero-section p {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-section h1 {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
}

/* Animations (delays e fade-in) */
.animate-text-banner {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.animate-text-banner.delay-1 {
    animation-delay: 0.4s;
}

.animate-text-banner.delay-2 {
    animation-delay: 0.8s;
}

.animate-text-banner.delay-3 {
    animation-delay: 1.2s;
}

.animate-text-banner.delay-4 {
    animation-delay: 1.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card {
    background-color: #121212 !important;
    border: none !important;
}

.card .card-title {
    color: #fff;
}

.card .card-text {
    color: #ccc;
}


/* Sidebar popular posts */
aside ul li a:hover {
    text-decoration: underline;
}

/* Página Quem Somos - Estilos Específicos */

.about-hero {
    background-color: #000;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
}

.about-us {
    padding: 5rem 0;
}

.about-image {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: gainsboro;
    font-family: 'Montserrat', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: gainsboro;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nossa Missão */
.our-mission {
    padding: 5rem 0;
}

.mission-card {
    background-color: var(--accent-color);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-text {
    color: var(--dark-gray);
    line-height: 1.8;
}

.mission-list {
    list-style: none;
    padding-left: 0;
    color: var(--dark-gray);
}


/* Nosso Time */
.our-team {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-role {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.botao{
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    color:#000; 
}

/*blog*/
   :root {
            --primary-color: #222222;
            --secondary-color: #000000;
            --accent-color: #ffffff;
            --text-color: #ffffff;
            --light-gray: #f8f8f8;
            --medium-gray: #dddddd;
            --dark-gray: #555555;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Montserrat';
            color: var(--text-color);
            background-color: var(--secondary-color);
            line-height: 1.6;
        }
        
        .blog-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .blog-title {
            font-family: 'Montserrat';
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
        
        .blog-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .blog-content p {
            margin-bottom: 1.5rem;
        }

        .titulo{
            color: #fff;
        }