/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    scroll-padding-top: 80px;
    /* Impede que o cabeçalho coma o topo ao pular */
}

body {
    font-family: 'Lato', 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Header */
.mkd-page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mkd-menu-area {
    padding: 20px 0;
}

.mkd-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mkd-vertical-align-containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mkd-logo-wrapper {
    display: flex;
    align-items: center;
}

.mkd-logo-wrapper img {
    height: 38px;
    width: auto;
}

.mkd-light-logo {
    display: none;
}

.mkd-main-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.mkd-main-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.mkd-main-menu a:hover,
.mkd-main-menu .current {
    color: #cc1f41;
}


.mkd-social-icon-widget-holder {
    color: #333;
    font-size: 18px;
    transition: opacity 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.mkd-social-icon-widget-holder:hover {
    opacity: 0.7;
}

.mkd-social-icon-widget-holder img {
    transition: transform 0.3s;
}

.mkd-social-icon-widget-holder:hover img {
    transform: scale(1.1);
}

/* Mobile Header */
.mkd-mobile-header {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mkd-mobile-header-inner {
    position: relative;
}

.mkd-mobile-header-holder {
    padding: 15px 0;
}

.mkd-mobile-menu-opener {
    cursor: pointer;
}

.mkd-mobile-menu-opener i {
    font-size: 24px;
    color: #fff;
}

.mkd-mobile-logo-wrapper img {
    height: 38px;
    width: auto;
}

.mkd-mobile-nav {
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #333;
}

.mkd-mobile-nav.active {
    display: block;
}

.mkd-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mkd-mobile-nav li {
    border-bottom: 1px solid #eee;
}

.mkd-mobile-nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
}

.mkd-mobile-nav a:hover,
.mkd-mobile-nav .current-menu-item a {
    background-color: rgba(204, 31, 65, 0.2);
    color: #cc1f41;
}

/* Hero Section */
.hero-section {
    margin-top: 0;
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    /* Puxa e ancora a sessão para a borda superior do monitor na descida. */
}

.hero-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-panel-1 {
    background-image: url('../images/home-1.png');
    animation: heroKenBurns1 20s ease-in-out infinite alternate;
}

.hero-panel-2 {
    background-image: url('../images/home-2.png');
}

/* Gradiente de transição no bottom da primeira seção hero */
.hero-transition-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}



@keyframes heroKenBurns1 {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.06) translate(-0.5%, -0.5%);
    }
}

@keyframes heroKenBurns2 {
    0% {
        transform: scale(1.04) translate(0.5%, 0);
    }

    100% {
        transform: scale(1) translate(0, 0.5%);
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 31, 65, 0.7) 0%, rgba(176, 26, 56, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 20px;
    padding-top: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 10px;
    animation: fadeInUp 1s;
    font-family: 'Lato', sans-serif;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 72px;
    animation: fadeInUp 1.2s;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s;
}

.mkd-btn-download {
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.mkd-btn {
    display: inline-block;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.mkd-btn-primary {
    background-color: #cc1f41;
    color: #ffffff;
}

.mkd-btn-primary:hover {
    background-color: #b01a38;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 31, 65, 0.4);
}

.mkd-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.mkd-btn-secondary:hover {
    background-color: #ffffff;
    color: #cc1f41;
    transform: translateY(-2px);
}

.mkd-btn-large {
    padding: 16px 45px;
    font-size: 18px;
}

.mkd-btn-solid {
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffffff;
}

.mkd-btn-solid:hover {
    background-color: #ffffff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mkd-btn i {
    margin-left: 5px;
}

/* Content */
.mkd-content {
    margin-top: -90px;
    position: relative;
    z-index: 1;
}

.mkd-content-inner {
    background-color: #fff;
}

/* Sections */
.mkd-section {
    padding: 100px 0;
}

.mkd-full-width {
    width: 100%;
}

.mkd-full-width-inner {
    max-width: 100%;
    margin: 0 auto;
}

.highlights-section {
    background-color: #f6f6f6;
}

.mkd-elements-holder.mkd-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.highlight-item {
    background-color: #f6f6f6;
    padding: 130px 101px 150px 117px;
}

.highlight-item:nth-child(2) {
    background-color: #fcfcfc;
}

.highlight-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.highlight-item p {
    margin-bottom: 42px;
    color: #666;
    line-height: 1.8;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 100px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    font-weight: 400;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    background-color: #f9f9f9;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-image {
    width: auto;
    height: auto;
    margin: 0 auto 25px;
    overflow: hidden;
    display: inline-block;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Services Section */
.services-section {
    background-color: #f6f6f6;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #cc1f41 0%, #b01a38 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    min-height: 60px;
}

.service-item p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #fff;
}

.portfolio-categories {
    margin-bottom: 80px;
}

.portfolio-categories:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(204, 31, 65, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    color: #fff;
    font-size: 32px;
    text-decoration: none;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.portfolio-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.portfolio-tag {
    display: inline-block;
    background-color: #f6f6f6;
    color: #cc1f41;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Clients Section */
.clients-section {
    background-color: #282828;
    padding: 100px 0;
}

.clients-section .section-header h2 {
    color: #fff;
}

.clients-section .section-header p {
    color: #ccc;
}

.mkd-carousel-holder {
    width: 100%;
}

.mkd-carousel {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.mkd-carousel-item-holder {
    flex: 0 0 auto;
}

.mkd-carousel-item-holder a {
    display: block;
    transition: transform 0.3s;
}

.mkd-carousel-item-holder a:hover {
    transform: scale(1.1);
}

.mkd-carousel-item-holder img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mkd-carousel-item-holder img:hover {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f6f6f6;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #cc1f41 0%, #b01a38 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .mkd-btn-primary {
    background-color: #fff;
    color: #cc1f41;
}

.cta-section .mkd-btn-primary:hover {
    background-color: #f6f6f6;
    color: #cc1f41;
}

/* Contact Section */
.contact-section {
    background-color: #f6f6f6;
    padding: 60px 0;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 32px;
    color: #cc1f41;
    margin-bottom: 10px;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.contact-casting {
    margin-top: 50px;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-casting i.fa-star {
    font-size: 32px;
    color: #cc1f41;
    margin-bottom: 15px;
}

.contact-casting h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.contact-casting p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

.contact-casting a {
    color: #cc1f41;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-casting a:hover {
    color: #111;
}

.contact-casting .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    margin-top: 8px;
    font-family: inherit;
}

.contact-casting .whatsapp-link i {
    font-size: 20px;
}

.contact-casting .whatsapp-link:hover {
    color: #128C7E;
}

.contact-social {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-social p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #282828;
    color: #fff;
    padding: 40px 0 0;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.mkd-footer-top {
    padding: 20px 0;
}

.mkd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mkd-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 147px;
    height: auto;
}

.mkd-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    transition: opacity 0.3s, transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.footer-social a:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.footer-social a img {
    display: block;
}

.mkd-footer-widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    padding: 10px 0;
    border-bottom: 1px solid #444;
    color: #ccc;
}

.footer-list li:last-child {
    border-bottom: none;
}

.footer-list li i {
    margin-right: 10px;
    color: #fff;
}

.footer-list li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list li a:hover {
    color: #cc1f41;
}

/* Back to Top */
#mkd-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #cc1f41;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#mkd-back-to-top.visible {
    opacity: 1;
}

#mkd-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

#mkd-back-to-top i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .mkd-elements-holder.mkd-three-columns {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 80px 50px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .mkd-three-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mkd-page-header {
        display: none;
    }

    .mkd-mobile-header {
        display: block;
    }

    .hero-section {
        margin-top: 0;
        min-height: 100vh;
        height: 100vh;
        max-height: none;
    }

    .hero-section-2 {
        margin-top: 0;
    }

    /* Agora com as artes verticais novas de celular instaladas, usamos o esqueleto inteiro */
    .hero-panel {
        background-size: cover;
        background-position: center;
    }

    .hero-panel-1 {
        background-image: url('../images/home-1-mob.png');
    }

    .hero-panel-2 {
        background-image: url('../images/home-2-mob.png');
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .mkd-btn {
        width: 100%;
        max-width: 300px;
    }

    .mkd-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }


    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .mkd-btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mkd-carousel {
        gap: 20px;
    }

    .mkd-carousel-item-holder img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .about-text .lead {
        font-size: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}