/* Custom Styles for Nilfisk DryFt Landing Page */
:root {
    /* by masp */
    --nf-bg-color-darkblue: #28313f;
    --nf-text-color: #505f7c;
    --nf-bg-twice-color: #eff0f2;
    --nf-text-adv-p-color: #556480;
    --nf-btn-color: #38aed8;
    --nf-btn-color-hover: #2595bc;
    --nf-color-text: #505f7c;
}

body {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #28313f !important;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 400;

    /* Roboto Regular */
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;

    /* Roboto Black */
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;

    /* Roboto Bold */
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.2rem;
    font-weight: 300;

    /* Roboto Light */
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Scrub Section */
.scrub-section {
    padding: 100px 0;
}

.scrub-image-container img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Speed Section */
.speed-section {
    padding: 100px 0;
}

.speed-image-container {
    position: relative;
}

.speed-image-container img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

.feature-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    font-weight: 400;

    /* Roboto Regular */
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;

    /* Roboto Bold */
    font-size: 1.2rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.feature-card {
    padding: 40px 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 500;

    /* Roboto Medium */
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    font-weight: 300;

    /* Roboto Light */
    line-height: 1.6;
}

/* S-Motion Section */
.s-motion-section {
    padding: 100px 0;
}

.s-motion-image-container {
    position: relative;
    display: inline-block;
}

.s-motion-image-container img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Product Showcase */
.product-showcase {
    padding: 100px 0;
}

.product-image-container img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--nf-bg-twice-color);
}

.contact-form .form-control {
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-weight: 400;

    /* Roboto Regular */
    margin-bottom: 10px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

.contact-form .form-label {
    font-weight: 500;

    /* Roboto Medium */
    margin-bottom: 8px;
}

.contact-form .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;

    /* Roboto Medium */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    padding: 40px 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;

    /* Roboto Regular */
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;

    /* Roboto Medium para links */
}

.footer a:hover {
    color: var(--accent-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-description {
        font-size: 1.1rem;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .hero-section,
    .scrub-section,
    .speed-section,
    .features-section,
    .s-motion-section,
    .product-showcase,
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 18px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Adicionar estilos específicos para diferentes elementos de texto */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

h3 {
    font-weight: 500;

    /* Roboto Medium */
}

h4 {
    font-weight: 500;

    /* Roboto Medium */
}

p {
    font-family: "Roboto", sans-serif;
    font-weight: 300;

    /* Roboto Light para parágrafos */
}

.btn {
    font-family: "Roboto", sans-serif;
    font-weight: 500;

    /* Roboto Medium para botões */
}

.navbar-brand {
    font-family: "Roboto", sans-serif;
    font-weight: 700;

    /* Roboto Bold */
}

/* Estilos específicos para diferentes contextos */
.hero-section p {
    font-weight: 400;

    /* Roboto Regular para texto hero */
}

.contact-section .section-title {
    font-weight: 700;

    /* Roboto Bold */
}

.contact-section .section-description {
    font-weight: 300;

    /* Roboto Light */
}

/* Form elements */
input,
textarea,
select {
    font-family: "Roboto", sans-serif !important;
}

/* Navegação mobile */
.navbar-toggler {
    font-family: "Roboto", sans-serif;
}

/* Breadcrumbs e elementos de navegação */
.nav-link {
    font-family: "Roboto", sans-serif;
}

.nf-container {
    max-width: 1648px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.header {
    background-color: var(--nf-bg-color-darkblue);
    display: flex;
}

.sec {
    padding-top: 6rem;
}

.h1 {
    color: var(--nf-bg-color-darkblue);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 2.75rem;
    line-height: 3.3125rem;
}

.nf-grid-12c {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;

    /* Espaço entre as colunas */
}

.grid-centered {
    grid-column: 3 / span 8;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.video-1 {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.titulo {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Roboto', sans-serif;
    color: var(--nf-text-color);
}

.h2 {
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 3.125rem;
    line-height: 3.75rem;
    font-weight: 700;
    color: var(--nf-bg-color-darkblue);
    margin-bottom: 1.25rem;
}

.video-2 {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.sec-v {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.twice {
    max-width: 1728px;
    margin-left: auto;
    margin-right: auto;
}

.title-twice {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--nf-bg-color-darkblue);
    font-size: 3.125rem;
    line-height: 3.75rem;
}

.sec-tw {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--nf-bg-twice-color);
}

.texto-twice {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.sec-adv {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

p.adv {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--nf-text-adv-p-color);
}

.video-3 {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.book {
}

.book-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    row-gap: 10;
}

.book-text-int {
    width: 100%;
}

.sec-book {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.nilfisk-btn {
    width: 205px;
    height: 53px;
    background-color: var(--nf-btn-color);
    border: none;
    border-radius: 54px;
    text-decoration: none;

    /* cantos arredondados */
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    line-height: 1.625rem;
}

.nilfisk-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #2595bc;
    transition: height 0.3s ease;
    z-index: 1;
}

.nilfisk-btn:hover::before {
    height: 100%;
}

.nilfisk-btn span {
    position: relative;
    z-index: 2;
}

.texto-link {
    font-family: 'Roboto', sans-serif;
    color: var(--nf-bg-color-darkblue);
}

/* Placeholder com vídeo */
.video-container {
    position: relative;
    width: 640px;
    height: 360px;
    cursor: pointer;
    margin: 20px auto;
}

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

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-icon::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #333;
    margin-left: 5px;
}

.video-embed {
    width: 100%;
    height: 100%;
    display: none;
}

p.texto-centro {
    font-family: 'Roboto', sans-serif;
    font-size: 1.375rem;
    line-height: 2.0625rem;
    color: var(--nf-color-text);
    text-align: center;
}

p.texto-esq {
    font-family: 'Roboto', sans-serif;
    font-size: 1.375rem;
    line-height: 2.0625rem;
    color: var(--nf-color-text);
    text-align: left;
}

table tr td {
    font-family: 'Roboto', sans-serif;
    font-size: 1.12rem;
    line-height: 1.75rem;
    font-weight: 300;
    color: var(--nf-text-adv-p-color);
}