@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Base Styles */
:root {
  /* Cores da Marca */
  --primary-color: #f8297c;    /* R248 G41 B123 – Pantone 213 C */
  --secondary-color: #ff5a70;  /* R255 G90 B111 – Pantone 178 C */
  --accent-color: #0a9197;     /* R10 G145 B151 – Pantone 321 C */
  --accent-dark: #a07cfd;      /* R160 G124 B253 – Pantone 2655 C */

  /* Tipografia */
  --text-color: #333;          /* Mantido */
  --text-light: #ff7aaf;       /* R255 G122 B175 – Pantone 190 C */

  /* Neutros */
  --white: #fcfcfc;            /* R252 G252 B252 – Pantone 000 C */
  --light-bg: #fafafa;         /* Mantido */
  --gray-bg: #f5f5f5;          /* Mantido */
  --dark-bg: #222;             /* Mantido */

  /* Transições, sombras e bordas */
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

        /* --- Estilos do Widget --- */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
    #nutrition-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: #fcfcfc; /* substituído por --white */
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid #f5f5f5; /* neutro suave */
    overflow: hidden;
    z-index: 9999;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    font-family: 'Poppins', sans-serif;
}

#nutrition-widget.widget-visible {
    transform: translateX(0);
}

.widget-header {
    background: linear-gradient(135deg, #0a9197, #a07cfd); /* substituído por --secondary e --accent-dark */
    color: #fcfcfc; /* --white */
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.widget-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doctor-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.widget-header p {
    margin: 3px 0 0;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 300;
}

#close-widget {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fcfcfc;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1;
}

#close-widget:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.widget-body {
    padding: 22px;
    background: #fafafa; /* neutro suave */
}

.intro-message {
    background: #e0f2f1; /* leve tom de --secondary claro */
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-left: 4px solid #0a9197; /* --secondary */
}

.intro-message p {
    margin: 0;
    color: #0a5c36; /* escuro para contraste */
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    gap: 8px;
}

.input-icon {
    font-size: 16px;
}

input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: #fafafa;
}

input:focus {
    border-color: #0a9197; /* --secondary */
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 145, 151, 0.1);
    background: #fff;
}

.input-value {
    position: absolute;
    right: 12px;
    top: 38px;
    background: #0a9197; /* --secondary */
    color: #fcfcfc;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.input-value.show {
    opacity: 1;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0a9197, #a07cfd); /* --secondary e --accent-dark */
    color: #fcfcfc;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(10, 145, 151, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 145, 151, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 18px;
}

.btn-text {
    flex-grow: 1;
    text-align: center;
}

#result-container {
    padding: 0;
    display: none;
}

#result-container.result-visible {
    display: block;
}

.result-header {
    background: linear-gradient(135deg, #0a9197, #a07cfd); /* --secondary e --accent-dark */
    color: #fcfcfc;
    padding: 20px;
    text-align: center;
}

.result-header h4 {
    margin: 0 0 5px;
    font-weight: 500;
    font-size: 16px;
}

.imc-value {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.classification-box {
    background: #e0f2f1; /* leve tom de --secondary claro */
    margin: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #0a5c36;
    border: 1px dashed #7fdbaf;
}

.result-footer {
    padding: 0 20px 20px;
    text-align: center;
}

.result-footer p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.whatsapp-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0a9197, #a07cfd); /* --secondary e --accent-dark */
    color: #fcfcfc;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(10, 145, 151, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 145, 151, 0.3);
}

.whatsapp-icon {
    font-size: 18px;
}

.back-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #f5f5f5;
}

.error-message {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 6px;
    height: 14px;
}

.is-invalid {
    border-color: #e74c3c !important;
}

/* Animação de carregamento */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 55, 120, 0.3);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title .divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 3px;
}

.section-title p {
    color: var(--text-light);
    font-size: 18px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-circle::before,
.loader-circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 5px solid transparent;
}

.loader-circle::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-top-color: var(--accent-color);
    animation: spin 2s linear infinite;
}

.loader-circle::after {
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border-top-color: var(--secondary-color);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 50px; /* Altura fixa para o container da logo */
}

.logo-img {
    height: 100%; /* A logo ocupará toda a altura do container */
    width: auto; /* Largura ajustada automaticamente para manter proporção */
    transition: var(--transition);
}

/* Versão para header scrolled - opcional */
.header.scrolled .logo-img {
    filter: brightness(0.8); /* Efeito sutil ao rolar */
    /* Ou se quiser uma logo diferente para o estado scrolled: */
    /* content: url('caminho/para/sua-logo-scrolled.png'); */
}
.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: black;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.header.scrolled .nav ul li a {
    color: var(--text-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--white);
}

.header.scrolled .menu-toggle {
    color: var(--secondary-color);
}

    
        /* Hero Moderno */
        .hero-modern {
            position: relative;
            height: 110vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            background-color: white;
            overflow: hidden;
            padding: 0 5%;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0px;
            align-items: center;
            height: 100%;
        }

        /* Coluna da Imagem */
        .hero-image-column {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 72%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
            z-index: 2;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        /* Efeito de borda sofisticado */
        .image-container::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--accent-dark));
            z-index: -1;
            border-radius: 25px;
            animation: borderAnimation 4s linear infinite;
        }

        @keyframes borderAnimation {
            0% { opacity: 0.7; }
            50% { opacity: 1; }
            100% { opacity: 0.7; }
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            filter: brightness(1.05) contrast(1.05);
            border-radius: 20px;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(248, 41, 123, 0.1) 0%, rgba(255, 90, 111, 0.05) 100%);
        }

        .decorative-element {
            position: absolute;
            z-index: -1;
        }

        .decorative-element.circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(248, 41, 123, 0.08) 0%, rgba(255, 90, 111, 0.05) 100%);
            top: -50px;
            left: -50px;
            animation: float 6s ease-in-out infinite;
        }

        .decorative-element.square {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(10, 145, 151, 0.08) 0%, rgba(160, 124, 253, 0.05) 100%);
            bottom: -50px;
            right: -50px;
            transform: rotate(15deg);
            animation: rotate 20s linear infinite;
        }

        /* Partículas flutuantes */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            opacity: 0.3;
            animation: floatParticle 15s infinite linear;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0.3;
            }
        }

        /* Coluna do Conteúdo */
        .hero-content-column {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .content-wrapper {
            max-width: 500px;
            margin-left: auto;
        }

        .professional-tag {
            display: inline-flex;
            align-items: center;
            background: rgba(10, 145, 151, 0.1);
            padding: 8px 15px;
            border-radius: 50px;
            margin-bottom: 0px;
            position: relative;
            overflow: hidden;
        }

        .professional-tag span {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #0a9197;
            position: relative;
            z-index: 1;
        }

        .tag-decoration {
            position: absolute;
            width: 100%;
            height: 8px;
            border-radius: 50%;
            right: 15px;
            opacity: 0.7;
        }

        .hero-title {
            font-size: 4.2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #2a2a2a;
        }

        .title-line {
            display: block;
        }

        .title-line.highlight {
            color: #f8297b;
            position: relative;
            display: inline-block;
        }

        .title-line.highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: rgba(248, 41, 123, 0.2);
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.4;
            color: #555;
            margin-bottom: 0px;
            position: relative;
            min-height: 80px;
        }

        .subtitle-line {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            border-right: 2px solid #f8297b;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #f8297b; }
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 40px;
            max-width: 90%;
        }
          /* Coluna do Conteúdo */
        

        .content-wrapper {
            max-width: 540px;
        }

        .professional-tag {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(10, 145, 151, 0.1) 0%, rgba(160, 124, 253, 0.1) 100%);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .professional-tag span {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--secondary-color);
            position: relative;
            z-index: 1;
        }

        .tag-decoration {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--secondary-color);
            right: 15px;
            opacity: 0.7;
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #2a2a2a;
        }

        .title-line {
            display: block;
        }

        .title-line.highlight {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .title-line.highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: rgba(248, 41, 123, 0.15);
            z-index: -1;
            border-radius: 3px;
        }

        .crn-badge {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: var(--secondary-color);
            background: rgba(10, 145, 151, 0.1);
            padding: 5px 12px;
            border-radius: 4px;
            margin-top: 8px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--text-light);
            margin-bottom: 30px;
            position: relative;
            min-height: 80px;
            line-height: 1.4;
        }

        .subtitle-line {
            display: block;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 90%;
            border-left: 3px solid var(--primary-color);
            padding-left: 20px;
        }

        /* Stats Container */
        .stats-container {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
            position: relative;
            padding: 15px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f8297b;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Botão CTA */
        .hero-cta {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 16px 35px;
            background: linear-gradient(135deg, #f8297b, #ff5a6f);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 10px 30px rgba(248, 41, 123, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff5a6f, #f8297b);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .button-icon {
            width: 20px;
            height: 20px;
            margin-left: 10px;
        }

        /* Botão do WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 100px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Scroll Down */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #2a2a2a;
            animation: bounce 2s infinite;
            z-index: 10;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-15px) translateX(-50%); }
            60% { transform: translateY(-7px) translateX(-50%); }
        }

        /* Efeito Ripple */
        .ripple-effect {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.7);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Animações */
        .wow.fadeInLeft {
            animation: fadeInLeft 1s both;
        }

        .wow.fadeInRight {
            animation: fadeInRight 1s both;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsividade */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.8rem;
            }
        }

        /* Hero Moderno Responsivo - Ajustes para Mobile */
        @media (max-width: 992px) {
            .hero-modern {
                padding: 80px 5% 60px;
                height: auto;
                min-height: auto;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                display: flex;
                flex-direction: column;
            }
            
            /* Inverte a ordem - imagem primeiro */
            .hero-image-column {
                order: -1;
                height: 400px;
                margin-bottom: 30px;
            }
            
            .image-container {
                height: 100%;
            }
            
            .content-wrapper {
                max-width: 100%;
                text-align: center;
                margin: 0 auto;
            }
            
            /* Ajustes de tipografia para mobile */
            .hero-title {
                font-size: 2.8rem;
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
                min-height: auto;
                margin-bottom: 20px;
            }
            
            .hero-description {
                font-size: 1rem;
                max-width: 100%;
                margin-bottom: 30px;
            }
            
            /* Botão CTA em mobile */
            .cta-button {
                padding: 14px 28px;
                font-size: 0.95rem;
            }
            
            /* Botão WhatsApp em mobile */
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 100px;
                right: 30px;
                font-size: 24px;
            }
        }

        /* Ajustes para telas muito pequenas (menos de 576px) */
        @media (max-width: 576px) {
            .hero-image-column {
                height: 350px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .stats-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 15px;
            }
            
            .professional-tag {
                margin-bottom: 20px;
            }
        }

        /* Mantém o scroll-down visível */
        .scroll-down {
            bottom: 20px;
        }
/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row-reverse; /* INVERTE a ordem: imagem vai para a direita, texto para a esquerda */
}


.about-img {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    color: var(--secondary-color);
}

.about-text h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: rgb(72, 72, 72);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color:white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--gray-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon  {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--white);
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-item p {
    color: var(--text-light);
}

/* Approach Section */
.approach {
    padding: 100px 0;
    background-color: var(--white);
}

.approach-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% - 40px);
    background-color: var(--primary-color);
    opacity: 0.3;
}

.step-item:last-child::before {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
}

        :root {
            --primary: #f8297b;        /* R248 G41 B123 – Pantone 213 C */
            --primary-dark: #ff5a6f;   /* R255 G90 B111 – Pantone 178 C */
            --secondary: #0a9197;      /* R10 G145 B151 – Pantone 321 C */
            --text: #333;
            --text-light: #777;
            --white: #fff;
            --light-bg: #f9f9f9;
            --border-radius: 12px;
            --box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: var(--text);
            line-height: 1.6;
        }

        .recipes-section {
            padding: 60px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-title span {
            color: var(--primary);
            font-weight: 600;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .recipes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        
        }

        .recipe-card {
            display: flex;
            flex-direction: column; /* empilha conteúdo em coluna */
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .recipe-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .recipe-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .recipe-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .recipe-card:hover .recipe-image img {
            transform: scale(1.05);
        }

        .recipe-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .recipe-content {
            padding: 25px;
            flex: 1; /* ocupa todo o espaço disponível */
            display: flex;
            flex-direction: column; /* organiza internamente */
                }

        .recipe-title {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .recipe-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .recipe-meta i {
            margin-right: 5px;
            color: var(--primary);
        }

        .recipe-description {
            margin-bottom: 25px;
             flex: 1; /* empurra as ações para baixo */
            color: var(--text);
        }

        .recipe-actions {
            display: flex;
            gap: 15px;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 0.95rem;
            flex: 1;
        }

        .action-btn i {
            margin-right: 8px;
        }

        .action-btn-view {
            background-color: var(--primary);
            color: var(--white);
        }

        .action-btn-view:hover {
            background-color: var(--primary-dark);
        }

        .action-btn-download {
            background-color: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .action-btn-download:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Modal */
        .recipe-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1000;
            overflow-y: auto;
            padding: 40px 20px;
        }

        .recipe-modal-content {
            background-color: var(--white);
            max-width: 800px;
            margin: 0 auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            animation: modalFadeIn 0.4s ease;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .recipe-modal-header {
            background-color: var(--primary);
            color: var(--white);
            padding: 20px 25px;
            position: relative;
        }

        .recipe-modal-title {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .recipe-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .recipe-modal-close:hover {
            transform: rotate(90deg);
        }

        .recipe-modal-body {
            padding: 30px;
        }

        .recipe-full-content {
            white-space: pre-line;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .recipe-full-content h3 {
            color: var(--primary-dark);
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }

        .recipe-full-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .recipe-full-content p {
            margin-bottom: 15px;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .recipes-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .recipe-actions {
                flex-direction: column;
            }
        }
  :root {
            --primary-color: #f8297c;
            --secondary-color: #ff5a70;
            --accent-color: #0a9197;
            --accent-dark: #a07cfd;
            --text-color: #333;
            --white: #fcfcfc;
            --light-bg: #fafafa;
            --transition: all 0.3s ease;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f9f9f9;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .section-blog {
            padding: 100px 5%;
            background: linear-gradient(135deg, #fdfcfc 0%, #f5f7fa 100%);
            position: relative;
            overflow: hidden;
        }
        
        .header-blog {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .title-blog {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .title-blog::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }
        
        .subtitle-blog {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .container-blog {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .card-blog {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .card-blog:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .image-blog {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .image-blog img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .card-blog:hover .image-blog img {
            transform: scale(1.1);
        }
        
        .category-blog {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 2;
        }
        
        .date-blog {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-color);
            display: flex;
            align-items: center;
            z-index: 2;
        }
        
        .date-blog i {
            margin-right: 5px;
            color: var(--accent-color);
        }
        
        .content-blog {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .title-card-blog {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2a2a2a;
            line-height: 1.3;
        }
        
        .excerpt-blog {
            color: #666;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .meta-blog {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .time-blog {
            display: flex;
            align-items: center;
            color: #888;
            font-size: 0.9rem;
        }
        
        .time-blog i {
            margin-right: 5px;
            color: var(--accent-dark);
        }
        
        .readmore-blog {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .readmore-blog:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }
        
        .readmore-blog i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .readmore-blog:hover i {
            transform: translateX(5px);
        }
        
        .container-all-blog {
            text-align: center;
            margin-top: 70px;
        }
        
        .button-all-blog {
            display: inline-flex;
            align-items: center;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(248, 41, 123, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .button-all-blog::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .button-all-blog:hover::before {
            opacity: 1;
        }
        
        .button-all-blog span {
            position: relative;
            z-index: 1;
        }
        
        .button-all-blog i {
            margin-left: 10px;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }
        
        .button-all-blog:hover i {
            transform: translateX(5px);
        }
        
        /* Decorative elements */
        .circle-blog {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(248, 41, 123, 0.05) 0%, rgba(255, 90, 111, 0.03) 100%);
            top: 10%;
            left: 5%;
            z-index: 0;
        }
        
        .square-blog {
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(10, 145, 151, 0.05) 0%, rgba(160, 124, 253, 0.03) 100%);
            bottom: 10%;
            right: 5%;
            transform: rotate(15deg);
            z-index: 0;
        }
        
     
/* Portfolio/Carousel Section */
.portfolio {
    padding: 100px 0;
    background-color: var(--gray-bg);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: block;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.carousel-prev,
.carousel-next {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsividade - 3 imagens por vez */
@media (min-width: 992px) {
    .carousel-slide {
        flex: 0 0 33.333%;
    }
}

/* Responsividade - 2 imagens por vez */
@media (min-width: 768px) and (max-width: 991px) {
    .carousel-slide {
        flex: 0 0 50%;
    }
}

/* Responsividade - 1 imagem por vez (celular) */
@media (max-width: 767px) {
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-controls {
        margin-top: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
    }
    .carousel-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-slide:not(.active) {
    opacity: 0.7;
    transform: scale(0.95);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}
}
/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--gray-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    background-color: var(--gray-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: var(--white);
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    background-color: var(--white);
    padding: 0 5px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--primary-color);
    background-color: var(--gray-bg);
}

.form-group select option {
    padding: 10px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.footer-logo a span {
    color: var(--accent-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom i {
    color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--box-shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}
/* Animate.css - Custom version with only needed animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}
   /* Responsive design */
        @media (max-width: 992px) {
            .container-blog {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }
            
            .title-blog {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-blog {
                padding: 70px 5%;
            }
            
            .header-blog {
                margin-bottom: 50px;
            }
            
            .title-blog {
                font-size: 2rem;
            }
            
            .container-blog {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .circle-blog, .square-blog {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .title-blog {
                font-size: 1.8rem;
            }
            
            .content-blog {
                padding: 20px;
            }
            
            .title-card-blog {
                font-size: 1.3rem;
            }
            
            .button-all-blog {
                padding: 14px 30px;
                font-size: 1rem;
            }
        }
/* Responsive Styles */
@media (max-width: 992px) {
    /* Regra global para impedir overflow lateral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Impede rolagem horizontal */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

    .container,
    .header .container,
    .hero .container,
    .about .container,
    .services .container,
    .contact .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
      /* Regra global para impedir overflow lateral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Impede rolagem horizontal */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

    .header {
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: block;
        right: 20px; /* Garante que o menu hamburguer não fique colado na borda */
    }
    
    .nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 998;
        padding: 0 20px; /* Adiciona espaçamento lateral */
        box-sizing: border-box; /* Garante que o padding não some com a width */
    }
    
    .nav ul.active {
        left: 0;
    }
    
    .nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav ul li a {
        color: var(--text-color);
        font-size: 20px;
        display: block;
        padding: 10px 0;
    }
    
    .header.scrolled .nav ul {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .hero h1 {
        font-size: 36px;
        padding: 0 20px; /* Adiciona espaçamento para não encostar nas bordas */
    }
    
    .hero h2 {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .section-title h2 {
        font-size: 30px;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    /* Garante que todos os containers tenham padding lateral */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
        padding: 0 15px; /* Adiciona espaçamento lateral */
    }
    
    .hero h1 {
        font-size: 32px;
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .section-title h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .testimonial-item {
        min-width: 280px;
        margin: 0 15px; /* Adiciona margem lateral */
    }
    
    /* Ajusta o padding para telas menores */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .nav ul {
        padding: 0 15px;
    }
}

/* Estilos adicionais para garantir que todos os elementos tenham margens adequadas */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Garante que imagens e outros elementos também respeitem as margens */
img, video, iframe {
    max-width: 100%;
    height: auto;
}