/* Reset e Variáveis CSS */
:root {
    --primary-color: #ff6b9d;
    --secondary-color: #ffd93d;
    --accent-color: #6bcf7f;
    --text-dark: #2d3748;
    --text-light: #51565c;
    --white: #ffffff;
    --light-bg: #f7fafc;
    --gradient-primary: linear-gradient(135deg, #ff6b9d, #ffd93d);
    --gradient-secondary: linear-gradient(135deg, #6bcf7f, #4fd1c7);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --border-radius: 30px;
    --container-max-width: 1200px;
	--yellow-color:	#f2c10a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
	background-color: #fff7ec;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-whatsapp {
    background: #f4c106;
    color: var(--white);
    width: 100%;
    justify-content: center;
	margin-bottom: 10px;
}

.btn-whatsapp:hover {
    background: #d9ab05;
    transform: translateY(-2px);
}

.btn-instagram {
    background: #eb6a4b;
    color: var(--white);
    width: 100%;
    justify-content: center;
}

.btn-instagram:hover {
    background: #d15c40;
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #EB735D;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
	background-image: url('images/background-menu.png');
	background-repeat: repeat-x;
	background-position: right center;
	background-size: auto 100%;
	border-radius: 0px 0px 20px 20px;
}

.navbar {
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
	background-color: #fff;
    padding: 5px 40px;
    border-radius: 30px;
}

.nav-link:hover {
    color: #f4c00a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.7), rgba(255, 217, 61, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title-small {
    font-size: clamp(1.2rem, 2vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
	text-align: left;
	display: flex;
	align-items: center; /* Alinha verticalmente */
	gap: 8px;            /* Espaço entre os elementos */
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Video Section */
.video-section {
    background: var(--text-dark);
    color: var(--white);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.video-player {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery {
    background: #fff7ec;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(235, 115, 93, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
	display: flex;
	align-items: center; /* Alinha verticalmente */
	gap: 8px;            /* Espaço entre os elementos */
}

.about-title-contato {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f4c106;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.about-image {
    /*border-radius: var(--border-radius);*/
    overflow: hidden;    
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
	border-radius: var(--border-radius);
}

/* Testimonials Section */
.testimonials {
    background: #fff7ec;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonial-card {
    padding: 3rem;
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonial-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn.active {
    background: #f1c208;
    transform: scale(1.2);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-header {
    display: block;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.contact-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
	font-family: 'Josefin Sans', sans-serif!important;
}

.contact-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-info i {
    color: var(--primary-color);
}

/* Footer */
	.footer {
		background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/parte7.png');
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
		color: white;
		padding: 80px 0 40px;
		position: relative;
		overflow: hidden;
	}

	.footer::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 217, 61, 0.1));
		z-index: 1;
	}

	.footer-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin-bottom: 40px;
		position: relative;
		z-index: 2;
	}

	.footer-logo {
		margin-bottom: 30px;
	}

	.footer-logo .logo-img {
		height: 80px;
		filter: brightness(0) invert(1);
		margin-bottom: 20px;
		transition: var(--transition);
	}

	.footer-logo .logo-img:hover {
		transform: scale(1.05);
	}

	.footer-tagline {
		color: rgba(255, 255, 255, 0.9);
		font-style: italic;
		font-size: 1.2rem;
		margin-bottom: 40px;
		font-family: var(--font-script);
	}

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

	.footer-social h4 {
		margin-bottom: 20px;
		color: white;
		font-size: 1.3rem;
		font-weight: 600;
	}

	.social-links {
		display: flex;
		gap: 20px;
		justify-content: center;
	}

	.social-links a {
		width: 60px;
		height: 60px;
		background: rgba(255, 255, 255, 0.2);
		backdrop-filter: blur(10px);
		border: 2px solid rgba(255, 255, 255, 0.3);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		transition: var(--transition);
	}

	.social-links a:hover {
		background: rgba(255, 255, 255, 0.3);
		transform: translateY(-5px) scale(1.1);
		border-color: rgba(255, 255, 255, 0.5);
	}

	.footer-bottom {
		text-align: center;
		padding-top: 30px;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		color: rgba(255, 255, 255, 0.8)!important;
		position: relative;
		z-index: 2;
	}

	.footer-bottom p {
		margin-bottom: 8px;
		font-size: 1rem;
		color: rgba(255, 255, 255, 0.8)!important;
	}

	.footer-bottom p:first-child {
		font-weight: 500;
	}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .hero-scroll,
    .lightbox,
    .nav-toggle {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 1rem 0;
        break-inside: avoid;
    }
}

.frase{
	font-family: 'Playfair Display', sans-serif!important;
	font-weight: 100!important;
}

.linha {
    width: 40px;
    height: 3px;
    background: #f1c208;
    margin-left: 10px;
	display: inline-block;
}

.circulo {
    width: 8px;
    height: 8px;
	background: #EB735D;
    margin-left: 2px;
	border-radius: 50%;
	display: inline-block;
}

.borda-lateral {
  background-image: url('images/icone2.png');
  background-repeat: repeat-y;
  background-position: right center;
  background-size: auto 100%;
  padding-right: 40px; /* para evitar que o conteúdo encoste na imagem */
}

.borda-lateral-direito {
  background-image: url('images/icone2.png');
  background-repeat: repeat-y;
  background-position: left center;
  background-size: auto 100%;
  padding-left: 40px; /* para evitar que o conteúdo encoste na imagem */
}

.gallery-carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.gallery-carousel {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0.75rem;
  box-sizing: border-box;
  position: relative;
}

.gallery-nav {
  background: rgba(0, 0, 0, 0.0);
  color: #f1c208;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}

.gallery-nav:hover {
  color: #eb735d;
}

.gallery-prev {
  margin-right: 10px;
}

.gallery-next {
  margin-left: 10px;
}

.icone-contato{
	width: 70%;
	display: block;
	margin-left: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
	
	.hero{
		height: 35vh;
	}
	
	.hero img{
		width: 200%;
	}

    .services-grid {
        grid-template-columns: 1fr;
    }

    .video-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
		gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
	
	.borda-lateral {
	  background-image: url('images/icone2.png');
	  background-repeat: repeat-y;
	  background-position: right center;
	  background-size: auto 50%;
	  padding-right: 40px; /* para evitar que o conteúdo encoste na imagem */
	}
	
	.icone-contato{
		width: 100%;
	}
	
	.footer {
		background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/parte7.png');
		background-repeat:no-repeat;
		background-position: top;
		color: white;
		padding: 80px 0 40px;
		position: relative;
		overflow: hidden;
	}
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .contact-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.video-preview-section {
  padding: 60px 0;
  text-align: center;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
}

.video-thumbnail video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  transition: 0.3s;
  width: 100px;
  height: 100px;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Modal */
.modal-video {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.modal-video.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-height: 90%;
  max-width: 540px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}
