@charset "utf-8";

.destaque {
background-color: #E9DCC9; 
border-radius: 50px; 
padding: 12px 28px;
text-align: center;
color: #633;
font-weight: 500;
}

/*-------------------------------------------PERFIL PORTFOLIO------------------------------------------*/

.container-portfolio {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}

.box-projetos {
display: inline-block;
width: 100%;
height: auto;
max-width: 630px;
margin: 5px;
margin-bottom: 10px;
text-align: center;
}

.box-portfolio {
display: inline-block;
max-width: 630px;
margin: 5px;
margin-bottom: 10px;
text-align: center;
background-color: #703036;
}


.img-responsive {
max-width: 100%;
max-height: auto;
}

.img-responsive-portfolio {
width: 80%;
max-height: 35rem;
margin-bottom: 8px;
}

.img-responsive-portfolio-vet {
width: 35rem;
}

.img-responsive-left {
max-width: 100%;
max-height: auto;
padding-right: 20px;
padding-bottom: 3px;
vertical-align: middle;
margin-bottom: 10px;
}

.img-responsive-right {
max-width: 100%;
max-height: auto;
padding-left: 20px;
padding-bottom: 3px;
vertical-align: middle;
}

.legenda-portfolio {

font-size: 1.2rem;
color: #FFF;
text-align: center;
padding-top: 5px;
font-weight: 500;
line-height: 1.6;
}

/* ===== ESPECIFICO PERFIL ===== */
/*-------------------------------------------PERFIL OVERLAY------------------------------------------*/

.perfil-overlay {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.container-perfil-overlay {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

/* Foto de fundo que ocupa toda a lateral direita */
.photo-background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.bg-photo-overlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Efeito gradiente suave na transição entre texto e foto */
.photo-background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

/* Conteúdo de texto sobreposto */
.text-overlay-content {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.text-content-wrapper {
    max-width: 800px;
    padding: 40px;
}

.titulos-medios-overlay {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a2a6c;
    margin-bottom: 15px;
    line-height: 1.2;
}

.observacoes-overlay {
    font-size: 1.3rem;
    color: #b21f1f;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
}

.descricao-overlay {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    text-align: justify;
}

/* Links */
.link-menu-overlay {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.link-item-overlay {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a2a6c;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.link-item-overlay:hover {
    color: #b21f1f;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.link-item-overlay img {
    margin-right: 15px;
    width: 35px;
    height: 35px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .text-overlay-content {
        width: 60%;
        padding: 0 30px;
    }
    
    .photo-background-overlay {
        width: 50%;
    }
    
    .text-content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .container-perfil-overlay {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .text-overlay-content {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        order: 2;
    }
    
    .photo-background-overlay {
        position: relative;
        width: 100%;
        height: 50vh;
        order: 1;
    }
    
    .photo-background-overlay::before {
        background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
    }
    
    .text-content-wrapper {
        padding: 20px 0;
    }
    
    .titulos-medios-overlay {
        font-size: 2rem;
        text-align: center;
    }
    
    .observacoes-overlay {
        font-size: 1.1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .text-overlay-content {
        padding: 30px 15px;
    }
    
    .text-content-wrapper {
        padding: 0;
    }
    
    .titulos-medios-overlay {
        font-size: 1.8rem;
    }
    
    .link-item-overlay {
        padding: 8px 12px;
    }
    
    .link-item-overlay img {
        width: 30px;
        height: 30px;
        margin-right: 12px;
    }
}

/*-------------------------------------------PERFIL OVERLAY------------------------------------------*/


/* ===== ESPECIFICO CLIENTES ===== */
/*-------------------------------------------------botao-oval-------------------------------------------------*/

.botao-oval {
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.botao-oval {
display: inline-flex;
align-items: center;
gap: 8px;
background-color: #333;
color: #fff;
font-size: 16px;
font-weight: 500;
border: none;
border-radius: 50px;
padding: 12px 28px;
cursor: pointer;
transition: all 0.3s ease;
}

.botao-oval:hover {
background-color: #703036;
transform: translateY(-2px);
}

.botao-oval svg {
transition: transform 0.3s ease;
}

.botao-oval:hover svg {
transform: translateX(4px);
}

/*-------------------------------------------------botao-oval-------------------------------------------------*/

/* ===== ESPECIFICO DIRETRIZES ===== */

hr {
border: none;
height: 1px;
background-color: #703036;
}

.obs {

font-style: italic;
color: #703036;
text-align:center;
}

.borda-botao {
border-radius: 100%;
background-color: #703036;
text-transform: uppercase;
}

.circle-container {
width: 20em; /* Defina a largura */
height: 20em; /* Defina a altura */
background-color: #FFF; /* Cor de fundo */
border-radius: 50%; /* Faz a div se tornar um círculo */
display: flex; /* Para centralizar o conteúdo com flexbox */
justify-content: center; /* Centraliza horizontalmente */
align-items: center; /* Centraliza verticalmente */
color: #333; /* Cor do texto */
font-size: 16px; /* Tamanho da fonte */
text-align: center; /* Centraliza o texto */
margin: 7px;
padding: 5px;
}

.img-responsive {
max-width: 100%;
max-height: auto;
}

/* ===== PARALAX REDESOCIAL ===== */
  .parallax-rdsocial {
    background-image: url(imagens/portfolio-residenciais/salas/sala-51.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    position: relative;
  }

  /* Efeito de overlay sobre a imagem de fundo */
  .parallax-rdsocial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.8), rgba(178, 31, 31, 0.6));
    z-index: 1;
  }

  .info-item {
    text-align: center;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 260px;
    position: relative;
    z-index: 2;
  }

  .info-item a {
    color: #f2e6c9;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .info-item a:hover {
    color: #ffffff;
    transform: scale(1.05);
  }

  .info-item svg {
    width: 70px;
    height: 70px;
    fill: #ffffff;
    margin-bottom: 10px;
    transition: fill 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .info-item a:hover svg {
    fill: #ff6600;
  }

  .info-item h3 {
    margin: 10px 0 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .info-item p {
    margin: 0;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .parallax-rdsocial {
      flex-direction: column;
      align-items: center;
    }
  }

/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary: #333333; /* cor da font do site */
    --secondary: #c35310; /* Detalhes, botoes e links */
    --accent: #33ff00; /* ? */
    --light: #ffffff; /* titulos brancos */
    --dark: #663333; /* Titulos */ 
    --gray: #666633; /* Muda cor no depoimento */
    --bg-color: #f3efe7; /*cor de fundo de todo o site ccccff */
}

body {
    color: #333; /*cor do texto*/
    background: var(--bg-color); /*cor de fundo de todo o site - backup:  linear-gradient(150deg, rgba(204,255,204,1) 40%, rgba(255,153,102,1) 60%);*/
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 0.1px 0;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

h3 {
    font-size: 1.55rem;
    color: var(--dark);
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
	border-radius: 50px;
    cursor: pointer;
}

.btn:hover {
    background-color: #ff6600;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: white;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
header {
    background-color: #5F2230;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;	
	font-weight: 400;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFF;
}

/* ===== HERO SECTION COM BASE CURVA ===== */
.hero {
    width: 100%;
    min-height: 130vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF; /* cor do texto */
    clip-path: ellipse(195% 90% at 50% 0%);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
    position: relative;
	padding: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0  20px;	
	animation: fadeIn 1s ease-in-out forwards;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about {
    padding-top: 0.5px; /* reduz o espaço superior */
}

/* ===== SEÇÕES COMUNS ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img, .about-img-2 {
    border-radius: 8px;
    overflow: hidden;
}

.about-img img, .about-img-2 img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SERVIÇOS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    background-color: var(--gray);
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

/* ===== PROJETOS ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.project-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
    color: white;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* ===== DEPOIMENTOS ===== */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: """;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #7b775b;
    object-fit: cover;
    margin: 10px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== SEÇÃO DE CONTATO ===== */
.contact-section {
    background-color: #090c11;
    color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-image-ajust {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
footer {
    background-image: linear-gradient(180deg, #5F2230 0%, #4d0f17 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    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: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ffffff;
}

/* ===== ESTILOS ESPECÍFICOS DAS PÁGINAS ===== */

/* Página Sobre */
.content-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.shape-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.organic-shape {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background-color: #fff;
    border-radius: 50% 60% 40% 55% / 70% 40% 70% 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.organic-shape:hover {
    transform: scale(1.05);
}

.shape-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.organic-shape:hover .shape-image {
    transform: scale(1.1);
}

.text-wrapper {
    flex: 1;
}

.text-container {
    padding: 20px;
	position: relative;
	padding: 1.5rem;
}

.text-container p {
	margin-bottom: 1.5rem;
	text-align: left;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 8px;
}

/* Página Perfil */
.container-perfil {
    display: flex;
    min-height: 100vh;
    margin-top: -80px;
}

.photo-section {
    flex: 1;
    background-image: url('../imagens/fotos/perfil-02.jpg');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
}

.text-section {
    flex: 1;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Página Serviços */
.container-serv-pag-inicial {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.container-serv-pag-inicial > a {
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.container-serv-pag-inicial > a img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.container-serv-pag-inicial > a img:hover {
    transform: scale(1.05);
}

.container-padrao {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.div-inline {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    padding: 20px;
}

/* Parallax Sections */
.parallax-section {
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.8), rgba(178, 31, 31, 0.6));
    backdrop-filter: blur(2px) brightness(0.9);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.parallax-content h1 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .content-wrapper:nth-child(odd),
    .content-wrapper:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #5F2230;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .container-perfil {
        flex-direction: column;
    }
    
    .photo-section {
        min-height: 50vh;
        width: 100%;
    }
    
    .container-serv-pag-inicial > a {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .parallax-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        clip-path: ellipse(140% 90% at 50% 0%);
    }
}

