/* Home Page Specific Styles */

/* Hero Section */
/* Hero Section - Refatorado do Zero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    contain: layout style paint;
}

/* Video Background - Optimized */
.video-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-bg,
.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 125vw;
    min-height: 125vh;
    max-width: none;
    max-height: none;
}

/* Vídeo SEMPRE começa com blur e opacity 0 - estado inicial */
#youtube-player-bg,
.video-bg {
    opacity: 0 !important;
    filter: blur(100px) !important;
    transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}

/* Aplicar blur também no iframe dentro do player */
#youtube-player-bg iframe,
.video-bg iframe {
    opacity: 0 !important;
    filter: blur(100px) !important;
    transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}

/* Quando vídeo carregar (após tempo mínimo), remover blur e mostrar */
.video-bg-wrapper.video-loaded #youtube-player-bg,
.video-bg-wrapper.video-loaded .video-bg {
    opacity: 1 !important;
    filter: blur(0) !important;
}

.video-bg-wrapper.video-loaded #youtube-player-bg iframe,
.video-bg-wrapper.video-loaded .video-bg iframe {
    opacity: 1 !important;
    filter: blur(0) !important;
}

/* No mobile, manter blur de 3px para melhor performance */
@media (max-width: 768px) {

    .video-bg-wrapper.video-loaded #youtube-player-bg,
    .video-bg-wrapper.video-loaded .video-bg {
        filter: blur(3px) !important;
    }

    .video-bg-wrapper.video-loaded #youtube-player-bg iframe,
    .video-bg-wrapper.video-loaded .video-bg iframe {
        filter: blur(3px) !important;
    }
}

.video-placeholder {
    background: linear-gradient(135deg, #792a47 0%, #5a1f35 50%, #792a47 100%);
    cursor: default;
    transition: opacity 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Quando vídeo estiver carregando, suavizar transição */
.video-bg-wrapper.video-loading .video-placeholder {
    opacity: 1;
}

.video-bg-wrapper.video-loaded .video-placeholder {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.05);
}

.video-bg-wrapper.video-loaded .video-placeholder img {
    opacity: 0.3;
    filter: brightness(0.5);
}

/* Optimize image loading */
img[loading="lazy"] {
    content-visibility: auto;
}

/* Optimize rendering performance */
.hero {
    contain: layout style paint;
    will-change: auto;
}

@media (max-width: 1024px) {

    .video-bg,
    .video-placeholder {
        width: 500vw;
        height: 500vh;
    }
}

@keyframes wave {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25px);
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    z-index: 1;
    transition: opacity 1.5s ease-in-out;
}

/* Overlay mais suave enquanto carrega */
.hero:has(.video-bg-wrapper.video-loading) .hero-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(121, 42, 71, 0.3) 50%,
            transparent 100%);
}

.hero:has(.video-bg-wrapper.video-loaded) .hero-overlay {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeInText 1s ease-in-out 0.3s forwards;
}

/* Animação de fade in para o texto - sempre acontece */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--white);
    opacity: 0;
    animation: fadeInText 1s ease-in-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin: 0 0 3rem 0;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    color: var(--white);
    opacity: 0;
    animation: fadeInText 1s ease-in-out 0.7s forwards;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 2.5rem;
}

.hero-cta {
    margin: 0 0 2.5rem 0;
    padding: 0;
}

.hero-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
    line-height: 1.4;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 0.9s forwards;
}

.hero-cta-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 1.1s forwards;
}

.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-btn:hover {
    background: var(--white);
    color: var(--text-dark);
}

.hero-scroll-btn i {
    width: 24px;
    height: 24px;
}




/* Formulário Neomórfico Compacto */
.hero-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    border: none;
    max-width: 480px;
    margin-left: auto;
}

.hero-form .cadastro-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-form .form-group {
    margin-bottom: 0;
}

.hero-form .form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.hero-form .form-group input {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    color: var(--text-dark);
    font-weight: 500;
}

.hero-form .form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(126, 167, 72, 0.15), 0 2px 6px rgba(0, 0, 0, 0.06);
    background: var(--white);
}

.hero-form .form-group input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
    font-weight: 400;
}

.hero-form .btn-primary {
    background: linear-gradient(135deg, #4d7a1f 0%, #3d6518 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 8px rgba(77, 122, 31, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.hero-form .btn-primary:hover {
    background: linear-gradient(135deg, #3d6518 0%, #2d4d12 100%);
}




/* Buttons - Neomorphic (base .btn em global) */
.btn-outline {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    font-weight: 600;
}

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

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Highlights Section - Neomorphic */
.highlights {
    padding: 4rem 0;
    background: var(--bg-light);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.highlights-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.highlight-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    box-sizing: border-box;
}


.highlight-icon {
    width: 70px;
    height: 70px;
    color: var(--secondary-color);
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Section - Neomorphic */
.why-choose {
    padding: 5rem 0;
    background: var(--white);
}

.text-start {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 1rem !important;
}

.why-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.why-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    box-sizing: border-box;
}


.why-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a1f35 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
    margin-top: 3rem;
    box-shadow: var(--shadow-hover);
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* About Section - Neomorphic */
.home-about {
    padding: 5rem 0;
    position: relative;
}

/* Grid container com flex */
.home-about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

/* Content - col-12 col-lg-6 */
.home-about-content {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
}

/* Image - col-12 col-lg-4 */
.home-about-image {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    z-index: 0;
}

.home-about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
}

/* Folhas decorativas - Home About Image */
.home-about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    width: 120px;
    height: 120px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 10;
    transform: rotate(-25deg);
    filter: blur(2px);
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.home-about-image.animate-leaves::before {
    opacity: 0.6;
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.home-about-image::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -35px;
    width: 90px;
    height: 90px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 10;
    transform: rotate(45deg);
    filter: blur(1.5px);
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.home-about-image.animate-leaves::after {
    opacity: 0.5;
    animation: slideInFromRight 1s ease-out 0.5s both;
}

/* Animações de folhas (keyframes) */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-120px) scale(0.8) rotate(-25deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(-25deg);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(120px) scale(0.8) rotate(45deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(45deg);
    }
}

.home-about-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.home-about-subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-about-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Media query para desktop (lg) - ambas com 50% (equivalente a col-6) */
@media (min-width: 992px) {
    .home-about-content {
        width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }

    .home-about-image {
        width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Home Clients Intro - Seção antes dos depoimentos */
.home-clients-intro {
    width: 100%;
    padding: 3rem 0;
    box-sizing: border-box;
}

.home-clients-intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

/* Content - ordem 1 no mobile (vem primeiro) */
.home-clients-intro-content {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
    order: 1;
}

/* Image - ordem 2 no mobile (vem depois) */
.home-clients-intro-image {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    z-index: 0;
    order: 2;
}

.home-clients-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
}

/* Folhas decorativas - Home Clients Intro Image */
.home-clients-intro-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    width: 120px;
    height: 120px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 10;
    transform: rotate(-25deg);
    filter: blur(2px);
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.home-clients-intro-image.animate-leaves::before {
    opacity: 0.6;
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.home-clients-intro-image::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -35px;
    width: 90px;
    height: 90px;
    background-image: url('../assets/images/leaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 10;
    transform: rotate(45deg);
    filter: blur(1.5px);
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.home-clients-intro-image.animate-leaves::after {
    opacity: 0.5;
    animation: slideInFromRight 1s ease-out 0.5s both;
}

.home-clients-intro-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.home-clients-intro-subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-clients-intro-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Media query para desktop (lg) - ordem inversa: imagem primeiro, texto depois */
@media (min-width: 992px) {
    .home-clients-intro-content {
        width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
        order: 2;
        /* Texto vem depois no desktop */
    }

    .home-clients-intro-image {
        width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
        order: 1;
        /* Imagem vem primeiro no desktop */
    }
}

/* About Stats */
.about-stats {
    width: 100%;
    padding: 5rem 0 3rem 0;
    box-sizing: border-box;
}

.about-stats .container {
    padding: 1rem;
}

.about-stats .rich-content {
    margin-bottom: 2rem;
}

.about-stats .rich-content h2 {
    margin-bottom: 1.5rem;
}

.about-stats .btn {
    margin-bottom: 3rem;
    display: inline-block;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem 0.75rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--secondary-color);
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    box-sizing: border-box;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--primary-color-emphasis);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    color: var(--primary-color);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .home-about {
        padding: 1rem 0;
    }

    .home-about .container .animations {
        height: 300px;
    }

    /* About Stats */
    .about-stats {
        padding: 3rem 0 1rem 0;
    }

    .about-stats .rich-content h2 {
        font-size: 2rem;
    }

    .about-stats .rich-content p {
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon svg {
        width: 22px;
        height: 22px;
    }

    .about-stats {
        gap: 16px;
    }
}


.home-services {
    padding: 5rem 0;
    background-image: url("/assets/images/bakery-bg-gradint-mutiply.png");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--white);
}

.home-services .container {
    display: flex;
    flex-wrap: wrap;
}


.home-services .content,
.home-services .icons {
    width: 50%;
    padding: 0 0.75rem;
}

.home-services .icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.home-services .icons>[data-lucide] {
    width: 86px;
    height: 86px;
}

.home-services .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-services .content p {
    line-height: 1.625;
    margin-bottom: 1rem;
}


.home-out-the-box {
    color: var(--white);
    padding: 5rem 0;
    background-image: url("/assets/images/diferencial-bg-multply.png");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.home-out-the-box .container {
    display: flex;
    flex-wrap: wrap;
}


.home-out-the-box .content,
.home-out-the-box .icons {
    width: 50%;
    padding: 0 0.75rem;
}

.home-out-the-box .icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.home-out-the-box .icons>[data-lucide] {
    width: 86px;
    height: 86px;
}

.home-out-the-box .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-out-the-box .content p {
    line-height: 1.625;
    margin-bottom: 1rem;
}


@media (max-width: 768px) {

    .home-about-content,
    .home-about-image {
        width: 100%;
        flex: 0 0 100%;
    }

    .home-about-content h2 {
        font-size: 1.75rem;
    }

    .home-services .content h2 {
        font-size: 1.5rem;
    }

    .home-services .content,
    .home-services .icons,
    .home-out-the-box .content,
    .home-out-the-box .icons {
        width: 100%;
    }

    .home-services .icons,
    .home-out-the-box .icons {
        order: 2;
        margin-top: 2rem;
    }
}

/* Markets Section - Neomorphic */
.markets {
    border-radius: 100px 100px 0 0;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: var(--bg-light);
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

.markets-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

/* Market Card e Embalagem Card styles movidos para swiper-showcase.js */

/* Insights Section - Neomorphic */
.insights {
    padding: 5rem 0;
    background: var(--white);
}

.insights-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-soft);
    width: 100%;
    box-sizing: border-box;
}


.insight-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.insight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.insight-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.insight-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.insight-link:hover {
    color: var(--secondary-color);
    gap: 24px;
}

.insight-link svg {
    width: 16px;
    height: 16px;
}

/* Catalog Section - Neomorphic */
.catalog {
    padding: 5rem 0;
    background: var(--bg-light);
}

.catalog-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: start;
}

.catalog-info {
    flex: 1;
    min-width: 300px;
}

.catalog-form {
    flex: 1;
    min-width: 300px;
}

.catalog-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.catalog-icon {
    width: 70px;
    height: 70px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.catalog-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.catalog-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.catalog-list {
    list-style: none;
}

.catalog-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 24px;
}

.catalog-list svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.catalog-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.catalog-form h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.catalog-form>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}



/* Cadastro Section - Neomorphic */
.cadastro-section {
    padding: 5rem 0;
    background: var(--white);
}

.cadastro-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cadastro-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-inset);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-soft), 0 0 0 3px rgba(126, 167, 72, 0.1);
}

/* Enhanced Focus Styles for Accessibility */
*:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    box-shadow: 0 0 0 2px var(--bg-light), 0 0 0 5px var(--secondary-color);
}

/* Remove outline for mouse users, keep for keyboard */
*:focus:not(:focus-visible) {
    outline: none;
}

.form-group small {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Validação de Campos */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fff5f5;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1), var(--shadow-soft);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: var(--secondary-color);
    background-color: #f0f9f0;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2), var(--shadow-soft);
}

.field-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 24px;
    animation: slideDown 0.3s ease;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Melhorias visuais para campos válidos */
.form-group input:not(.error):not(:placeholder-shown):valid,
.form-group select:not(.error):not([value=""]):valid {
    border-color: var(--secondary-color);
}

/* Input de arquivo melhorado */
.form-group input[type="file"] {
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.form-group input[type="file"]:hover {
    background: var(--bg-neo);
}

.form-group input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.form-group input[type="file"]::file-selector-button:hover {
    background: #6a2340;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}