/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f0;
}

/* Cores do tema café */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --dark-brown: #5D4037;
    --light-cream: #F5F5DC;
    --white: #FFFFFF;
    --text-dark: #2E2E2E;
    --text-light: #666;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Container para centralizar conteúdo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="1.8" fill="rgba(255,255,255,0.07)"/></svg>');
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateX(-100px) translateY(-100px); }
    100% { transform: translateX(100px) translateY(100px); }
}

.logo-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    animation: steamAnimation 3s ease-in-out infinite;
}

@keyframes steamAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(45deg, var(--white), var(--light-cream), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

.logo-domain {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.logo p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    color: var(--light-cream);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-features {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.logo-feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Header e Navegação */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
}

nav li {
    margin: 0 1rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

section {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

section h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Seção Home */
#home {
    background: linear-gradient(135deg, var(--light-cream), var(--white));
    border: 2px solid var(--accent-color);
}

#home h1 {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Banner CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    transform: none !important;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="45" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="45" cy="75" r="1.5" fill="rgba(255,255,255,0.06)"/><circle cx="15" cy="65" r="2.5" fill="rgba(255,255,255,0.05)"/><circle cx="85" cy="15" r="1.8" fill="rgba(255,255,255,0.07)"/></svg>');
    animation: float 25s infinite linear;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border: none;
    padding: 0;
    color: var(--white);
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-align: center;
    color: var(--white);
}

.cta-button-container {
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--light-cream);
    border-color: var(--white);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-button span {
    margin: 0 0.5rem;
}

.cta-banner small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    color: var(--light-cream);
}

/* Responsividade para banner CTA */
@media (max-width: 768px) {
    .cta-banner {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-banner p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border-radius: 40px;
    }
    
    .cta-banner small {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
}

/* Seção de Localização */
.location-section {
    background: linear-gradient(135deg, var(--light-cream), var(--white));
    margin-bottom: 3rem;
}

.location-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Coluna do Mapa */
.map-column {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    border-radius: 15px;
    filter: sepia(10%) saturate(110%) hue-rotate(5deg);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-marker {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    text-align: center;
    animation: bounce 2s infinite;
    position: relative;
}

.pin-marker span {
    font-size: 1.8rem;
    display: block;
}

.pin-label {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Coluna de Informações */
.info-column {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.visit-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--light-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(245, 245, 220, 0.8);
}

.info-icon {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
    color: var(--secondary-color);
}

.info-content {
    flex: 1;
}

.info-content strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-content p {
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.visit-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1.5rem;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.visit-cta p {
    margin: 0;
    font-size: 1rem;
    color: var(--white);
    text-align: center;
}

/* Responsividade para Localização */
@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .info-column {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .pin-marker {
        padding: 0.6rem;
    }
    
    .pin-marker span {
        font-size: 1.5rem;
    }
    
    .pin-label {
        font-size: 0.7rem;
        top: -40px;
    }
}

@media (max-width: 480px) {
    .location-section {
        margin-bottom: 2rem;
    }
    
    .location-section h2 {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .info-column {
        padding: 1rem;
    }
    
    .info-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .visit-cta {
        padding: 1rem;
    }
    
    .visit-cta p {
        font-size: 0.9rem;
    }
}

/* Seção de Serviços */
#servicos {
    background-color: var(--light-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item:hover {
    border-left-width: 8px;
    box-shadow: 0 8px 25px var(--shadow);
    transform: translateY(-5px);
}

.service-item h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    text-align: left;
    padding: 0;
}

.service-item > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 0.8rem;
    padding-left: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-cta {
    margin-top: auto;
    text-align: center;
}

.service-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Seção de Diferenciais */
.differentials-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.differentials-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.differential-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

.differential-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.differential-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.differential-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

/* Seção de Contato */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background-color: var(--light-cream);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

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

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px var(--shadow);
}

.contact-item strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Formulário de Contato */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-submit:active {
    transform: translateY(0);
}

/* Mensagens do formulário */
.form-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: slideInDown 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu ativo */
nav a.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 8px var(--shadow);
}

/* Animações de entrada */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Menu mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin: 0 auto;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 4px 6px var(--shadow);
        border-radius: 10px;
        padding: 1rem;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    nav a {
        display: block;
        padding: 0.75rem;
        border-radius: 8px;
    }
}

/* Responsividade para contato */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-color));
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-cream);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.footer-section li::before {
    content: "☕";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color);
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo {
        padding: 2rem 0;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .logo p {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        font-size: 2.5rem;
    }
    
    .logo-features {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-feature {
        font-size: 0.8rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 0.25rem 0;
    }
    
    section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    section h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    main {
        padding: 1rem 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 1.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo p {
        font-size: 0.9rem;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .logo-main {
        gap: 0.5rem;
    }
    
    .logo-features {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .logo-feature {
        font-size: 0.7rem;
    }
    
    .logo-domain {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    section {
        padding: 1rem;
    }
    
    section h1 {
        font-size: 1.5rem;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animações e efeitos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} 

/* Footer melhorado */
.footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--light-cream);
}

.footer-section ul li a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.schedule-info {
    color: var(--light-cream);
}

.schedule-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.cnpj-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color);
}

.cnpj-info small {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Responsividade para serviços */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .differential-item {
        padding: 1.2rem;
    }
} 

/* Cards de Produtos */
.product-section {
    margin-bottom: 4rem;
}

.product-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.product-image {
    font-size: 4rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-cream), var(--white));
    border-bottom: 1px solid #f0f0f0;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 8px;
}

.product-weight {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.buy-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    width: 100%;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.buy-button:active {
    transform: translateY(0);
}

/* Cafés Especiais */
.specialty-card {
    position: relative;
}

.specialty-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.specialty-badge.exclusive {
    background: linear-gradient(135deg, #8B008B, #4B0082);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.specialty-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.note {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.exclusive {
    border: 2px solid #8B008B;
    background: linear-gradient(135deg, var(--white), #faf0ff);
}

.buy-button.exclusive {
    background: linear-gradient(135deg, #8B008B, #4B0082);
    box-shadow: 0 4px 15px rgba(139, 0, 139, 0.3);
}

.buy-button.exclusive:hover {
    background: linear-gradient(135deg, #4B0082, #8B008B);
    box-shadow: 0 6px 20px rgba(139, 0, 139, 0.4);
}

/* Responsividade para produtos */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        margin: 0 1rem;
    }
    
    .product-image {
        font-size: 3rem;
        padding: 1.5rem;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-details {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .specialty-notes {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-section h2 {
        font-size: 1.5rem;
    }
    
    .product-image {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .specialty-badge {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
} 

/* ============ CASES PAGE STYLES ============ */
.case-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.case-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.case-header {
    background: linear-gradient(135deg, var(--primary-color), #2d5a31);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.case-header h2 {
    margin: 0;
    font-size: 1.4rem;
}

.case-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.case-badge.success {
    background: #28a745;
}

.case-badge.premium {
    background: #ffc107;
    color: #000;
}

.case-badge.growth {
    background: #17a2b8;
}

.case-content {
    padding: 2rem;
}

.case-info h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.case-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.case-info li {
    margin-bottom: 0.5rem;
}

.general-stats {
    margin: 4rem 0;
}

/* ============ DOWNLOADS PAGE STYLES ============ */
.downloads-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.download-category {
    margin-bottom: 4rem;
}

.download-category h2 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.download-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.download-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.download-icon {
    font-size: 2.5rem;
    background: var(--accent-color);
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.download-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.download-info {
    color: #666;
    font-size: 0.9rem;
}

.download-content {
    margin-top: 1rem;
}

.download-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.download-content li {
    margin-bottom: 0.3rem;
    color: #555;
}

.download-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.download-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.download-button:hover {
    background: #2d5a31;
}

/* Compact download items for checklists */
.download-item.compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.download-item.compact .download-icon {
    font-size: 1.8rem;
    min-width: 45px;
    height: 45px;
}

.download-info-compact {
    flex: 1;
}

.download-info-compact h4 {
    margin: 0 0 0.3rem 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.download-info-compact span {
    color: #666;
    font-size: 0.8rem;
}

.download-button-small {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: background-color 0.3s ease;
}

.download-button-small:hover {
    background: #ffdd4a;
}

.newsletter-section {
    margin: 4rem 0;
}

.download-stats-section {
    margin: 4rem 0;
}

/* ============ RESPONSIVE ADJUSTMENTS ============ */
@media (max-width: 768px) {
    .case-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-header h2 {
        font-size: 1.2rem;
    }
    
    .download-item.compact {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .download-stats {
        justify-content: center;
    }
    
    .case-content {
        padding: 1rem;
    }
} 

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c5530 0%, #1a3d1e 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #ffd700;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c5530;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #fff7a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn.customize {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
}

.cookie-btn.customize:hover {
    background: linear-gradient(135deg, #357abd 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Cookie Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #2c5530;
    font-size: 1.3rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category h4 {
    margin: 0 0 0.5rem 0;
    color: #2c5530;
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Switch Toggle */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

input:disabled + .slider {
    background: #2c5530;
    cursor: not-allowed;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.75rem;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
} 