/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --color-white: #fff;
    --primary-color: #333 ;
    --secondary-color: #BB3539;
    --accent-color: #FDAF53;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*Animation*/
@keyframes zoomIn {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes mover1 {
    0% {
    transform: translate(100vw, -50%); /* fora da tela à direita */
}
    100% {
    transform: translate(-50%, -50%); /* centralizado */
}
}

@keyframes mover2 {
    0% { transform: translatex(800px); }
    100% { transform: translatex(0); }
}

@keyframes name-of-animation {
    0%   { scale: 0.95;}
    100%  { scale: 1; }
}

@keyframes mover3 {
    0% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

@keyframes mover4 {
    0% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

@keyframes mover5 {
    0% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@keyframes loading2 {
    0% {
    transform: rotateY(0)
}

100% {
    transform: rotateY(20deg)

}
}

/*Efeitos*/
.box {
    opacity: 0;
    transform: translateY(100px);
    transition: 1s ease-in-out;
}
.box.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    background-color: #f9f9f9;
}

#home{
    scroll-margin-top: 130px;
}

#services{
   scroll-margin-top: 120px; 
}

#products{
    scroll-margin-top: 120px;
}

#about{
   scroll-margin-top: 120px; 
}
#contact{
    scroll-margin-top: 120px;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 4% 0;   
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

.btn-button{
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background-color: var(--accent-color);
    color: var(--color-white);
    margin-top: 3%;
    box-shadow: 0 1px 5px var(--accent-color);
}

.btn-button:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 1px 7px var(--secondary-color);
}

.btn-button2{
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background-color: var(--secondary-color);
    color: var(--color-white);
    margin-top: 3%;
    box-shadow: 0 1px 5px var(--secondary-color);
}

.btn-button2:hover {
    transform: translateY(-3px);
    background-color: var(--accent-color) ;
    color: white;
    box-shadow: 0 1px 7px var(--accent-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

/* Header e Navegação */
header {
    background-color: rgb(255, 255, 255);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo{
    flex: 0 0 auto; 
    max-height: 100%; 
    display: flex;
    align-items: center;
}

.logo img{
    max-height: 6em; 
    height: auto;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/*carrossel*/
.c-img {
    height: 80vh;
    object-fit: cover; /* Evita distorções */
    filter: brightness(0.90);
    box-shadow: 0 3px 10px rgba(8, 15, 29, 0.479);
}

.c-img2 {
    height: 80vh;
    object-fit: cover; /* Evita distorções */
    filter: brightness(1);
    box-shadow: 0 3px 10px rgba(8, 15, 29, 0.479);
}

.carousel{
    width: 100%;
    margin-top: 125px; /* centraliza horizontalmente */
    box-shadow: 0 3px 10px rgba(8, 15, 29, 0.479);  
}

.carousel-item {
  position: relative;
}

/*slogan-container com animação*/
.slogan-container-animation{
    width: 80%;
    position: absolute;
    z-index: 1;
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
    text-align: center; 
    animation: mover1 3s;
}

.slogan-container-animation h1{
    color: #ffffff;
    font-size: 3.5em;
    font-weight: 600;
}

.slogan-container-animation span{
    font-size: 1.2em;
    font-weight: 700;
}

.slogan-container-animation p{
    font-size: 2em;
   color: #ffffff;
}

/*slogan-container sem animação*/
.slogan-container-animation-static{
    width: 80%;
    position: absolute;
    z-index: 1;
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
    text-align: center; 
    animation: mover1 3s;
}

.slogan-container-animation-static h1{
    color: #ffffff;
    font-size: 3.5em;
    font-weight: 600;
}

.slogan-container-animation-static span{
    font-size: 1.2em;
    font-weight: 700;
}

.slogan-container-animation-static p{
    font-size: 2em;
   color: #ffffff;
}

/*Início*/
.section-inicio{
    text-align: center;
}

/* Sobre */
.about {
    background-color: rgb(255, 255, 255);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #57708a;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Serviços */
.services {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image1{
    height: 200px;
    overflow: hidden;
    background-image: url("../img/pet5.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 190px 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #FDAF53;
}

.service-image2{
    height: 200px;
    overflow: hidden;
    background-image: url("../img/construcao1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 190px 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #fd4b4b;
}

.service-image3{
    height: 200px;
    overflow: hidden;
    background-image: url("../img/atendimento1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 190px 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #BF9964;
}


.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Produtos */
.products {
    height: 1210px;
    overflow: hidden;
    background-image: url("../img/img_bg_produtos.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.products-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.descricao-container{
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 4em;
}

.descricao-container h3{
    text-align: center;
    color: var(--color-white);
}

.descricao-container p{
    text-align: center;
    color: var(--color-white);
    font-size: 1.2em;
}

.container-tabela{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;/*AQUI*/
    gap: 2em;
}

.tab-container-pet{
    width: 100%;
}

.title-pet{
    text-align: center;
    background-color: #FDAF53;
    padding: 1em 5em;
    border-radius: 6px;
    margin-bottom: 2em;
}

.title-pet h3{
    color: var(--color-white);
}

.tab-container-construcao{
    width: 100%;
}

.title-construcao{
    text-align: center;
    background-color: #BB3539;
    padding: 1em 5em;
    border-radius: 6px;
    margin-bottom: 2em;
}

.title-construcao h3{
    color: var(--color-white);
}

/*Itens-Produtos*/
.construracao-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.construracao-item img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.construracao-question {
  width: 100%;
  padding: 15px;
  background: hsla(0, 0%, 100%, 0.63);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
  color: var(--primary-color);
}

.construracao-question:hover {
  background: #ffffff;
}

.construcao-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #e0bc91;
    transition: max-height 0.4s ease;
    padding: 0 15px;
    color: #fff;
}

.racao-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #d1989a;
  transition: max-height 0.4s ease;
  padding: 0 15px;
    color: #fff;
}

.construracao-answer p {
  margin: 10px 0;
  
}

/* Contato */
.contact {
    background-color: var(--light-color);
}

.contact-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.contact-img img{
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-links img:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-footer{
    text-align: center;
    width: 100%;
    padding-bottom: 2%;
}

.logo-footer img{
    width: 10%;
}

.logo-footer a{
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 768px) {

    /*eFEITOS*/
.box {
    opacity: 0;
    transform: translateY(100px);
    transition: 1s ease-in-out;
}
.box.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 10% 0;   
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

.btn-button{
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background-color: var(--accent-color);
    color: var(--color-white);
    margin-top: 3%;
}

.btn-button:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}


/* Header e Navegação */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Container principal do header */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2% 0;
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.8em;
}

.logo img {
    max-height: 3.5em;
    width: auto;
}

/* Menu */
.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: row; /* empilha os itens no mobile */
    align-items: center;
    justify-content: center;
    gap: 0.8em; /* espaçamento entre links */
    width: 100%;
    padding: 0 0;
    margin: 0;
}

.nav-menu li {
    margin: 0;
    margin-bottom: 5px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}


/*carrossel*/
.c-img {
    height: 75vh;
    object-fit: cover; /* Evita distorções */
    filter: brightness(0.85);
    box-shadow: 0 3px 10px rgba(8, 15, 29, 0.479);
}

.carousel{
    width: 100%;
    margin-top: 102px; /* centraliza horizontalmente */
    box-shadow: 0 3px 10px rgba(8, 15, 29, 0.479);  
}

.carousel-item {
  position: relative;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 0.5 = 50% escuro */
    z-index: 1;
}
/*slogan-container com animação*/
.slogan-container-animation{
    width: 80%;
    position: absolute;
    z-index: 10;
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
    text-align: center; 
    animation: mover1 3s;
}

.slogan-container-animation h1{
    color: var(--color-white);
    font-size: 1.8em;
    font-weight: 600;
}


.slogan-container-animation p{
    color: var(--color-white);
    font-size: 1.1em;
}

/*slogan-container sem animação*/
.slogan-container-animation-static{
    width: 80%;
    position: absolute;
    z-index: 10;
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
    text-align: center;
    animation: mover1 2s;
}

.slogan-container-animation-static h1{
    color: var(--color-white);
    font-size: 1.8em;
    font-weight: 600;
}


.slogan-container-animation-static p{
    color: var(--color-white);
    font-size: 1.1em;
}

/* Sobre */
.about {
    background-color: rgb(255, 255, 255);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #57708a;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Produtos */
.products {
    height: 100%;
    overflow: hidden;
    background-image: url("../img/bg_mobile_produtos1.png");
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
}

.products-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.descricao-container{
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 4em;
}

.descricao-container h3{
    text-align: center;
    color: var(--color-white);
}

.descricao-container p{
    text-align: center;
    color: var(--color-white);
    font-size: 1.2em;
}

.container-tabela{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5em;
}

.tab-container-pet{
    width: 100%;
}

.tab-container-pet p{
    text-align: center;
    padding: 0.5em 5em;
    border-radius: 6px;
}

.title-pet{
    text-align: center;
    background-color: #FDAF53;
    padding: 1em 5em;
    border-radius: 6px;
    margin-bottom: 2em;
}

.title-pet h3{
    color: var(--color-white);
}

.tab-container-construcao{
    width: 100%;
}

.tab-container-construcao p{
    text-align: center;
    padding: 0.5em 5em;
    border-radius: 6px;
}

.title-construcao{
    text-align: center;
    background-color: #BB3539;
    padding: 1em 5em;
    border-radius: 6px;
    margin-bottom: 2em;
}

.title-construcao h3{
    color: var(--color-white);
}

/*Itens-Produtos*/
.construracao-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.construracao-item img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.construracao-question {
  width: 100%;
  padding: 15px;
  background: #ffffffa1;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
  color: var(--primary-color);
}

.construracao-question:hover {
  background: #ffffff;
}

.construcao-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #e0bc91;
    transition: max-height 0.4s ease;
    padding: 0 0px;
    color: #fff;
}

.racao-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #d1989a;
  transition: max-height 0.4s ease;
  padding: 0 0px;
    color: #fff;
}

.construracao-answer p {
  margin: 0px 0;
}

.racao-answer p{
    margin: 0px 0;
}

/* Contato */
.contact {
    background-color: var(--light-color);
}

.contact-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.contact-info h3{
    font-size: 1.2em;
}

.contact-img{
    text-align: center;
}

.contact-img img{
    width: 280px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-links img:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-footer{
    text-align: center;
    width: 100%;
    padding-bottom: 2%;
}

.logo-footer img{
    width: 24%;
}

.logo-footer a{
    text-decoration: none;
    color: var(--light);
}
}

 @media screen and (max-width:768px) {
       /* Esconde as tags <img> em dispositivos móveis */
       .carousel-item img {
        height: 0vh;
      }

        .carousel-control-prev,
    .carousel-control-next {
        margin-left: 2%;
        margin-right: 2%;
        display: none;
    }

    .carousel-item {
        transition: transform 0.3s ease-in-out !important; /* Reduz a duração para 0.3s */
      }

.sr-only{
    visibility: hidden;
}
    .slide-1 {
        width: 100%;
        height: 87vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: cover;
        object-position: center;
        background-image: url('../img/SLIDE_FACHADA_MOBILE.png'); 
      }
    
      .slide-2 {
        width: 100%;
        height: 87vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/SLIDE_MOBILE_1.png'); 
      }
    
      .slide-3 {
        width: 100%;
        height: 87vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/SLIDE_MOBILE_4.png'); 
      }
    
      .slide-4 {
        width: 100%;
        height: 87vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/SLIDE_MOBILE_3.png'); /* Imagem 9:16 */
      }

      .slide-5 {
        width: 100%;
        height: 87vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/SLIDE_MOBILE_2.png'); /* Imagem 9:16 */
      }

      .slide-6 {
        width: 100%;
        height: 87vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/SLIDE_MOBILE_5.png'); /* Imagem 9:16 */
      }

      .slide-7 {
        width: 100%;
        height: 87vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/SLIDE_MOBILE_6.png'); /* Imagem 9:16 */
      }

      .slide-8 {
        width: 100%;
        height: 87vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/SLIDE_MOBILE_7.png'); /* Imagem 9:16 */
      }
  }

  

