:root {
    --primary-blue: #19263f;
    --secondary-orange: #73a7af;
    --dark-blue: #004d80;
    --light-blue: #e6f0f7;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-orange);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: var(--shadow);
    min-height: 44px;
    min-width: 44px;
}

.btn:hover {
    background-color: #19263f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 130, 32, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-orange);
    margin: 0 auto;
    border-radius: 2px;
}

.section-padding {
    padding: 100px 0;
}

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-orange);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-blue);
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--secondary-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
}

.nav-cta:hover {
    background-color: #e07215;
    color: var(--white);
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    position: relative;
}

.menu-toggle .fa-times {
    display: none;
}

.hero {
    background: linear-gradient(rgba(1, 26, 43, 0.8), rgba(0, 49, 82, 0.8)), url('images/forno5.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 650px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--secondary-orange);
}

.sobre {
    background-color: var(--white);
    position: relative;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.sobre-texto p {
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.sobre-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.sobre-imagem {
    flex: 1;
    position: relative;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 100%;
    height: auto;
}

.sobre-imagem::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-orange);
    border-radius: 10px;
    top: 15px;
    left: 15px;
    z-index: -1;
}

.produtos {
    background-color: var(--light-blue);
    position: relative;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.produto-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.produto-imagem {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.1);
}

.produto-info {
    padding: 25px;
}

.produto-info h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.produto-info p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.produto-link {
    color: var(--secondary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    min-height: 44px;
}

.produto-link:hover {
    gap: 10px;
}

.diferenciais {
    background-color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diferencial {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light-blue);
    border-radius: 10px;
    transition: var(--transition);
}

.diferencial:hover {
    transform: translateY(-5px);
    background-color: var(--primary-blue);
    color: var(--white);
}

.diferencial:hover i,
.diferencial:hover h3,
.diferencial:hover p {
    color: var(--white);
}

.diferencial i {
    font-size: 2.5rem;
    color: var(--secondary-orange);
    margin-bottom: 20px;
    transition: var(--transition);
}

.diferencial h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.diferencial p {
    color: var(--medium-gray);
    transition: var(--transition);
}

.contato {
    background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

.contato .section-title h2 {
    color: var(--white);
}

.contato-content {
    display: flex;
    gap: 50px;
}

.contato-info {
    flex: 1;
}

.contato-info h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: left;
}

.contato-info p {
    margin-bottom: 0px;
    opacity: 0.9;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 12px 0;
    text-align: left;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--secondary-orange);
    margin-right: 15px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    text-align: center;
}

.info-item p {
    margin: 0;
    line-height: 1.5;
    text-align: left;
    flex: 1;
}

.contato-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contato-form h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 30px;
    max-width: 100%;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    min-height: 14px;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    min-height: 44px;
    min-width: 44px;
}

.social-icons a:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

#whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

#whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

#whatsapp-button img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    max-width: 100%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #080808;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #104ffa;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

@media (max-width: 992px) {
    .sobre-content {
        flex-direction: column;
    }

    .sobre-imagem::before {
        display: none;
    }

    .contato-content {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        padding: 30px;
        overflow-y: auto;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
        margin-left: 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        justify-content: center;
    }

    .hero {
        min-height: 100vh;
        text-align: center;
        padding-top: 70px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .sobre-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    nav.active~.container .menu-toggle .fa-bars {
        display: none;
    }

    nav.active~.container .menu-toggle .fa-times {
        display: block;
    }

    .contato-form iframe {
        width: 100%;
        height: 300px;
    }

    .btn,
    a {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .btn:focus,
    a:focus {
        outline: 2px solid var(--secondary-orange);
        outline-offset: 2px;
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
    }
    
    .contato-info {
        width: 100%;
        order: 2;
        margin-top: 40px;
    }
    
    .info-item {
        margin-bottom: 25px;
        padding: 15px;
        align-items: flex-start;
        text-align: left;
    }
    
    .info-item i {
        margin-right: 12px;
        font-size: 1.3rem;
        text-align: center;
    }
    
    .info-item p {
        font-size: 0.95rem;
        line-height: 1.4;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header .container {
        padding: 10px 15px;
    }

    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferencial {
        padding: 30px 20px;
    }

    .contato-form {
        padding: 25px 20px;
    }

    .info-item {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 20px;
        padding: 12px 10px;
        text-align: left;
    }

    .info-item i {
        margin-bottom: 0;
        margin-right: 12px;
        font-size: 1.2rem;
        text-align: center;
    }

    .info-item p {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .section-padding {
        padding: 60px 0;
    }

    #whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    #whatsapp-button img {
        width: 35px;
        height: 35px;
    }
    
    .contato-info h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .contato-info p {
        text-align: left;
        margin-bottom: 30px;
    }
}

.touch-feedback {
    opacity: 0.7;
    transform: scale(0.98);
    transition: opacity 0.2s, transform 0.2s;
}

@media (max-width: 768px) {
    body {
        -webkit-overflow-scrolling: touch;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.hero-sac {
    background: linear-gradient(rgba(1, 26, 43, 0.8), rgba(0, 49, 82, 0.8)), url('images/forno5.jpg') no-repeat center center/cover;
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.canal-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.canal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.canal-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.canal-icon i {
    font-size: 2rem;
    color: var(--secondary-orange);
}

.canal-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.canal-card p {
    margin-bottom: 10px;
    color: var(--medium-gray);
}

.canal-card .btn {
    margin-top: 20px;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-question h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--secondary-orange);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light-gray);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--medium-gray);
}

.sac-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sac-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sac-form .btn-large {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
}

.hero-tempera {
    background: linear-gradient(rgba(1, 26, 43, 0.8), rgba(0, 49, 82, 0.8)), url('images/forno6.jpg') no-repeat center center/cover;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.info-box {
    background: var(--light-blue);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-orange);
    margin: 25px 0;
}

.info-box h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h4 i {
    color: var(--secondary-orange);
}

.benefits-list {
    list-style: none;
    margin: 25px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefits-list li i {
    color: var(--secondary-orange);
    margin-top: 3px;
}

.content-image {
    text-align: center;
}

.content-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--medium-gray);
}

.selo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.selo-info {
    display: grid;
    gap: 30px;
}

.selo-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.selo-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.selo-icon i {
    font-size: 1.8rem;
    color: var(--secondary-orange);
}

.selo-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.selo-visual {
    text-align: center;
}

.selo-example img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.selo-description h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.selo-description ul {
    list-style: none;
    text-align: left;
}

.selo-description li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.selo-description li:before {
    content: "✓";
    color: var(--secondary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.aplicacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.aplicacao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.aplicacao-card:hover {
    transform: translateY(-5px);
}

.aplicacao-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.aplicacao-icon i {
    font-size: 2rem;
    color: var(--secondary-orange);
}

.aplicacao-card h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.aplicacao-card ul {
    list-style: none;
    text-align: left;
}

.aplicacao-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.aplicacao-card li:before {
    content: "•";
    color: var(--secondary-orange);
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.comparacao-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparacao-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

.comparacao-header .comparacao-item {
    padding: 20px;
    text-align: center;
}

.comparacao-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.comparacao-row:nth-child(even) {
    background: var(--light-gray);
}

.comparacao-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparacao-row .comparacao-item:first-child {
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
}

.cta-final {
    background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {

    .content-grid,
    .selo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sac-form .form-row {
        grid-template-columns: 1fr;
    }

    .comparacao-header,
    .comparacao-row {
        grid-template-columns: 1fr;
    }

    .comparacao-item {
        justify-content: center !important;
        text-align: center !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    .sac-form-container,
    .canal-card,
    .selo-card,
    .aplicacao-card {
        padding: 25px 20px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

.hero-trabalhe {
    background: linear-gradient(rgba(1, 26, 43, 0.8), rgba(0, 49, 82, 0.8)), url('images/forno6.jpg') no-repeat center center/cover;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.beneficio-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.beneficio-icon i {
    font-size: 2rem;
    color: var(--secondary-orange);
}

.beneficio-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.vagas-container {
    display: grid;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.vaga-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-orange);
    transition: var(--transition);
}

.vaga-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vaga-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.vaga-header h3 {
    color: var(--primary-blue);
    margin: 0;
}

.vaga-tag {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vaga-info {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vaga-detalhe {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
}

.vaga-detalhe i {
    color: var(--secondary-orange);
    width: 16px;
}

.vaga-descricao {
    margin-bottom: 25px;
}

.vaga-descricao p {
    margin-bottom: 10px;
}

.vaga-descricao ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.vaga-descricao li {
    margin-bottom: 5px;
    color: var(--medium-gray);
}

.btn-candidatar {
    width: 100%;
    margin-top: 10px;
}

.candidatura-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.form-header h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.form-section {
    padding: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4 i {
    color: var(--secondary-orange);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 30px;
    background: var(--light-gray);
}

.form-actions .btn {
    min-width: 200px;
}

.btn-large {
    padding: 16px 30px;
    font-size: 1.1rem;
}

.form-control:invalid {
    border-color: #3b3a3a;
}

.form-control:valid {
    border-color: #00C851;
}

small {
    display: block;
    margin-top: 5px;
    color: var(--medium-gray);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .vaga-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .vaga-info {
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        min-width: auto;
        width: 100%;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .vaga-card,
    .beneficio-card,
    .form-section {
        padding: 20px 15px;
    }

    .form-header {
        padding: 20px 15px;
    }
}

.info-item.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid transparent;
}

.info-item.clickable:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.info-item.clickable:hover i {
    color: #25D366;
}

.info-item.clickable.email:hover i {
    color: #D44638;
}

.info-item.clickable.address:hover i {
    color: #4285F4;
}

.info-item.clickable.hours:hover i {
    color: #FF6B00;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-item.clickable::after {
    content: "↗";
    margin-left: 8px;
    font-size: 0.9em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.info-item.clickable:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .contato-info {
        order: 2;
        margin-top: 40px;
    }
    
    .contato-form {
        order: 1;
    }
    
    .info-item {
        margin-bottom: 20px;
        padding: 15px 10px;
    }
    
    .info-item i {
        font-size: 1.4rem;
        margin-right: 15px;
    }
    
    .info-item p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .info-item {
        margin-bottom: 15px;
        padding: 12px 8px;
    }
    
    .info-item i {
        font-size: 1.3rem;
        margin-right: 12px;
    }
    
    .info-item p {
        font-size: 0.95rem;
    }
}
/* Validação do formulário de contato */
.contato-form .error { color: #c62828; font-size: 0.875rem; margin-top: 4px; }
.contato-form .form-status { margin-top: 8px; font-weight: 600; }

/* Toast popup */
.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    background: #19263f;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease;
    max-width: 90vw;
    font-weight: 600;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #2e7d32; }
.toast.error { background: #c62828; }
