@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

:root {
    --font-base: 'Jost', sans-serif;
    --font-title: 'Jost', serif;

    --color-text: #222;
    --color-soft: #666;
    --primary: #115b66;
    --bg-soft: #f4f4f4;
}

/* HEADER */

.header-perfil {
    background-image: url('../assets/perfils/bg.svg');
    background-size: cover;
    background-position: center;
    padding: 70px;
    text-align: center;
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-perfil .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.header-perfil .header-content {
    position: relative;
    z-index: 2;
}

.header-perfil h1 {
    font-size: 64px;
    font-weight: 400;
    font-family: var(--font-title);
    color: #fff;
    margin-bottom: 15px;
}

.header-perfil h3 {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

/* INTRO */

.intro {
    padding: 80px 70px;
    text-align: center;
}

.intro h2 {
    font-size: 44px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-title);
}

.intro p {
    font-size: 22px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-text);
}

/* LINHAS DE PRODUTOS */

.linhas {
    padding: 80px 70px;
    text-align: center;
}

.linhas h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 40px;
}

.cards-linhas {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.card-linha {
    background: #fff;
    width: 320px;
    border-radius: 16px;
    padding-bottom: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    transition: .3s ease;
}

.card-linha:hover {
    transform: translateY(-6px);
}

.card-linha img {
    width: 100%;
    border-radius: 16px 16px 0 0;
}

.card-linha h3 {
    font-size: 24px;
    margin: 18px 0 10px;
    color: var(--primary);
}

.card-linha p {
    font-size: 18px;
    color: var(--color-soft);
    padding: 0 20px;
}

/* BENEFÍCIOS */

.beneficios {
    padding: 80px 70px;
}

.beneficios h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 35px;
    color: var(--primary);
}

.beneficios ul {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.beneficios li {
    font-size: 22px;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.beneficios li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 28px;
    color: var(--primary);
}

/* GALERY */
/* CARROSSEL AUTOMÁTICO */
.carousel.auto {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.carousel.auto .carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel.auto .slide {
    min-width: 100%;
}

.carousel.auto img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}


.carousel h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}


/* CATALOGO */

.catalogo { 
  padding: 28px 0; 
  text-align:center; 
}
.catalogo p { 
  font-size:18px; 
  color:var(--color-soft); 
}

.link-pdf {
    background: none;
    border: none;
    color: #115b66;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.link-pdf:hover {
    opacity: 0.8;
}

.pdf-container {
    display: none;
    margin-top: 20px;
    width: 100%;
    height: 80vh;
    border-radius: 12px;
    overflow: hidden;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.catalogo-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.catalogo-modal.active {
    display: flex;
}

.catalogo-box {
    position: relative;
    width: 90%;
    height: 90%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}

.catalogo-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-catalogo {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

/*Whatsapp link*/
.whatsapp {
	margin: 20px auto;
	text-align: center;
}

.whatsapp-fixed {
	padding: 10px;
	background-color: #25D366;
	color: #fff;
	font-size: 32px;
	text-decoration: none;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	animation: blink 3.3s infinite ease-in-out;
	border-radius: 5px;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Keyframe for whats link */
@keyframes blink {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* hover effect */
.whatsapp-float:hover {
    transform: scale(1.2);
    transition: 0.3s;
}

/* FADE-IN */

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all .7s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/*RESPONSIVIDADE*/

/*1024px*/
@media (max-width: 1024px) {

    /* HEADER */
    .header-perfil {
        height: 420px;
        padding: 100px 20px;
    }

    .header-perfil h1 {
        font-size: 48px;
    }

    .header-perfil h3 {
        font-size: 28px;
        max-width: 600px;
    }


    /* INTRO */
    .intro {
        padding: 60px 40px;
    }

    .intro h2 {
        font-size: 36px;
    }

    .intro p {
        font-size: 20px;
        max-width: 750px;
    }


    /* LINHAS DE PRODUTOS */
    .cards-linhas {
        gap: 25px;
    }

    .card-linha {
        width: 280px;
    }

    .card-linha h3 {
        font-size: 22px;
    }

    .card-linha p {
        font-size: 17px;
    }


    /* BENEFÍCIOS */
    .beneficios ul {
        max-width: 700px;
    }

    .beneficios li {
        font-size: 20px;
    }


    /* GALERIA */
    .galeria-grid {
        gap: 25px;
    }

    .galeria-grid img {
        width: 320px;
        height: 240px;
    }
}

/* 768px*/

@media (max-width: 768px) {

    /* HEADER */
    .header-perfil {
        height: 360px;
        padding: 80px 20px;
    }

    .header-perfil h1 {
        font-size: 40px;
    }

    .header-perfil h3 {
        font-size: 24px;
        max-width: 500px;
    }

    /* INTRO */
    .intro {
        padding: 50px 30px;
    }

    .intro h2 {
        font-size: 32px;
    }

    .intro p {
        font-size: 18px;
        max-width: 600px;
    }

    /* LINHAS */
    .cards-linhas {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .card-linha {
        width: 80%;
        max-width: 380px;
    }

    /* BENEFÍCIOS */
    .beneficios ul {
        max-width: 600px;
    }

    .beneficios li {
        font-size: 18px;
    }

    /* CARROSSEL */
    .carousel.auto {
        max-width: 100%;
        height: 400px;
        border-radius: 12px;
        margin: 50px auto;
    }

    .carousel.auto img {
        height: 260px;
    }
}

/* RESPONSIVIDADE 480px */

@media (max-width: 480px) {

    /* HEADER */
    .header-perfil {
        height: 320px;
        padding: 60px 20px;
    }

    .header-perfil h1 {
        font-size: 32px;
    }

    .header-perfil h3 {
        font-size: 20px;
        max-width: 95%;
    }

    /* INTRO */
    .intro {
        padding: 40px 20px;
    }

    .intro h2 {
        font-size: 26px;
    }

    .intro p {
        font-size: 16px;
    }

    /* LINHAS */
    .card-linha {
        width: 100%;
    }

    .card-linha h3 {
        font-size: 20px;
    }

    .card-linha p {
        font-size: 16px;
    }

    /* BENEFÍCIOS */
    .beneficios li {
        font-size: 17px;
    }

    /* CARROSSEL */
    .carousel h2 {
        font-size: 28px;
    }

    .carousel.auto {
        border-radius: 10px;
        margin: 40px auto;
    }

    .carousel.auto img {
        height: 210px;
    }
}

/* RESPONSIVIDADE 360px*/

@media (max-width: 360px) {

    /* HEADER */
    .header-perfil {
        height: 300px;
        padding: 50px 15px;
    }

    .header-perfil h1 {
        font-size: 26px;
    }

    .header-perfil h3 {
        font-size: 18px;
    }

    /* INTRO */
    .intro h2 {
        font-size: 22px;
    }

    .intro p {
        font-size: 15px;
    }

    /* LINHAS */
    .card-linha h3 {
        font-size: 18px;
    }

    .card-linha p {
        font-size: 15px;
    }

    /* BENEFÍCIOS */
    .beneficios h2 {
        font-size: 26px;
    }

    .beneficios li {
        font-size: 15px;
    }

    /* CARROSSEL */
    .carousel h2 {
        font-size: 24px;
    }

    .carousel.auto {
        border-radius: 8px;
        margin: 30px auto;
    }

    .carousel.auto img {
        height: 180px;
    }
}
