/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
}

/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BANNER HERO ===== */
.banner-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 24px;
    margin-bottom: 8px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 16px;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== HEADER ===== */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-simple h1,
header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--secondary-color);
}

/* ===== MAIN ===== */
main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 0.6s ease-in;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero p {
    font-size: 16px;
    color: var(--text-light);
}

/* ===== SEÇÃO DE CATEGORIAS ===== */
.categorias-section {
    margin-bottom: 50px;
    padding: 30px 0;
}

.categorias-section h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.categoria-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
    background-color: var(--light-bg);
}

.categoria-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.categoria-card span {
    font-weight: 600;
    font-size: 14px;
    display: block;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--border-color);
}

/* ===== CATEGORIA HEADER ===== */
.categoria-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.categoria-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.categoria-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* ===== ANÚNCIOS GRID ===== */
.anuncios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.anuncio-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.5s ease-in;
}

.anuncio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.anuncio-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    overflow: hidden;
}

.anuncio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anuncio-content {
    padding: 20px;
}

.categoria-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.anuncio-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.anuncio-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.preco {
    font-size: 18px;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 15px;
}

.contato-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--light-bg);
    color: var(--text-light);
    font-size: 14px;
}

/* ===== LOGIN SECTION ===== */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-box {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
}

.login-box h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.login-box p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-login {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-login input[type="password"] {
    font-size: 16px;
}

/* ===== ADMIN SECTION ===== */
.admin-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.admin-header p {
    color: var(--text-light);
}

/* ===== FORMULÁRIO ===== */
.form-section {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-anuncio {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background-color: var(--secondary-color);
}

.form-group small {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.2);
}

/* ===== BOTÕES ===== */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100%;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.btn-danger {
    background-color: #e74c3c;
    color: var(--white);
    padding: 8px 15px;
    font-size: 12px;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.btn-edit {
    background-color: var(--warning-color);
    color: var(--white);
    padding: 8px 15px;
    font-size: 12px;
}

.btn-edit:hover {
    background-color: #e67e22;
}

/* ===== LISTA DE ANÚNCIOS ADMIN ===== */
.admin-list-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.admin-list-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.admin-anuncios-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admin-anuncio-item {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-anuncio-info h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.admin-anuncio-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.admin-anuncio-actions {
    display: flex;
    gap: 10px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-light);
}

.empty-state p {
    font-size: 16px;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .banner-hero {
        height: 320px;
    }

    .banner-content h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .header-simple {
        flex-direction: column;
        gap: 10px;
    }

    .header-simple h1 {
        font-size: 24px;
        text-align: center;
    }

    nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-content p {
        font-size: 18px;
    }

    .banner-subtitle {
        font-size: 14px;
        max-width: 500px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    header h1 {
        font-size: 24px;
    }

    nav {
        justify-content: center;
    }

    .hero h2 {
        font-size: 24px;
    }

    .anuncios-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .admin-anuncio-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-anuncio-actions {
        width: 100%;
    }

    .admin-anuncio-actions .btn {
        flex: 1;
    }

    .login-box {
        padding: 30px 20px;
    }

    .admin-header-content {
        flex-direction: column;
        gap: 15px;
    }

    .admin-header-content button {

            .city-image {
                max-width: 120px;
            }
        width: 100%;
    }

    .categorias-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .categoria-card {
        padding: 15px 10px;
    }

    .categoria-icon {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .categoria-card span {
        font-size: 12px;
    }

    .categoria-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header h1 {
        font-size: 20px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    main {
        padding: 20px 0;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero p {
        font-size: 14px;
    }

    .anuncios-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admin-container {
        padding: 15px;
    }

    .form-section {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 16px;
    }

    .btn-primary {
        padding: 10px 20px;
    }

    .admin-anuncio-item {
        padding: 10px;
    }

    .login-box {
        padding: 20px;
        margin: 10px;
    }

    .login-box h2 {
        font-size: 22px;
    }

    .admin-header-content {
        flex-direction: column;
    }

    .admin-header-content button {
        width: 100%;
    }

    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .categoria-card {
        padding: 12px 8px;
    }

    .categoria-icon {
        font-size: 28px;
    }

    .categoria-card span {
        font-size: 11px;
    }

    .banner-hero {
        height: 240px;
    }

    .banner-content h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-subtitle {
        font-size: 12px;
        max-width: 90%;
    }    .categoria-header h2 {
        font-size: 20px;
    }

    .breadcrumb {
        font-size: 12px;
        gap: 5px;

        .city-image {
            max-width: 100px;
        }

        header h1 {
            font-size: 24px;
        }
    }
}

/* ===== PÁGINA SOBRE NÓS ===== */
.sobre-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.sobre-content {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sobre-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 15px;
}

.sobre-texto {
    margin-bottom: 40px;
    line-height: 1.8;
}

.sobre-texto p {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.sobre-texto h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.sobre-lista {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 20px;
}

.sobre-lista li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.sobre-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.sobre-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.sobre-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 10px;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-voltar {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 10px;
}

.btn-voltar:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-anunciar {
    background-color: var(--success-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
}

.btn-anunciar:hover {
    background-color: #219150;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(39, 174, 96, 0.3);
}

/* ===== RESPONSIVO SOBRE NÓS ===== */
@media (max-width: 768px) {
    .sobre-content {
        padding: 25px;
    }

    .sobre-content h2 {
        font-size: 2rem;
    }

    .sobre-texto h3 {
        font-size: 1.3rem;
    }

    .sobre-cta {
        padding: 20px;
    }

    .sobre-cta h3 {
        font-size: 1.5rem;
    }
}

/* ===== IMAGEM DE ANÚNCIO ===== */
.container-imagem img {
    max-width: 100%; /* Garante que a imagem não ultrapasse a largura do contêiner */
    height: auto;    /* Mantém a proporção da imagem */
    display: block;  /* Trata a imagem como um bloco */
    margin-left: auto;  /* Centraliza horizontalmente */
    margin-right: auto; /* Centraliza horizontalmente */
}

@media (max-width: 480px) {
    .sobre-container {
        margin: 20px auto;
    }

    .sobre-content {
        padding: 20px;
    }

    .sobre-content h2 {
        font-size: 1.6rem;
    }

    .sobre-texto p,
    .sobre-lista li {
        font-size: 0.95rem;
    }

    .sobre-cta h3 {
        font-size: 1.3rem;
    }
}

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-size: 0;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Modal de contato WhatsApp */
.whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 998;
    width: 300px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.whatsapp-modal.active {
    display: block;
}

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

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-modal-header button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
}

.whatsapp-modal-body {
    padding: 15px;
}

.whatsapp-modal-body p {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.whatsapp-modal-body input,
.whatsapp-modal-body textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    resize: vertical;
    min-height: 60px;
}

.whatsapp-modal-body button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.whatsapp-modal-body button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}

@media (max-width: 600px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-modal {
        bottom: 80px;
        right: 20px;
        width: calc(100% - 40px);
        max-width: 280px;
    }
}

/* ===== PÁGINA DELIVERY ===== */
.delivery-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

.delivery-banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.delivery-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
}

.delivery-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.delivery-hero {
    text-align: center;
    margin-bottom: 50px;
}

.delivery-hero h2 {
    color: #ff6b6b;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.delivery-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.delivery-section {
    margin-bottom: 50px;
}

.delivery-section h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 15px;
}

/* Feature Cards */
.delivery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #fff9f9 0%, #ffe9e9 100%);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ff6b6b;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #ff6b6b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Menu Items */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.menu-item {
    background: white;
    border: 2px solid #ff6b6b;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.2);
}

.menu-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.menu-item h4 {
    color: #ff6b6b;
    margin-bottom: 8px;
}

.menu-item p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.delivery-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.delivery-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.delivery-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-delivery {
    background: white;
    color: #ff6b6b;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delivery:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Info Grid */
.delivery-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.delivery-info h3 {
    color: #ff6b6b;
    margin-bottom: 30px;
    text-align: center;
}

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

.info-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

.info-item h4 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.delivery-testimonials {
    margin-top: 50px;
}

.delivery-testimonials h3 {
    color: #ff6b6b;
    margin-bottom: 30px;
    text-align: center;
}

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

.testimonial {
    background: linear-gradient(135deg, #fff9f9 0%, #ffe9e9 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    font-style: italic;
}

.testimonial p {
    color: #555;
    margin-bottom: 15px;
}

.testimonial strong {
    color: #ff6b6b;
    display: block;
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .delivery-banner-content h1 {
        font-size: 2.5rem;
    }

    .delivery-subtitle {
        font-size: 1.2rem;
    }

    .delivery-section h3 {
        font-size: 1.5rem;
    }

    .delivery-hero h2 {
        font-size: 1.8rem;
    }

    .delivery-content {
        padding: 20px;
    }

    .delivery-cta {
        padding: 30px 20px;
    }
}

.container-imagem img {
  max-width: 100%; /* A imagem não ultrapassará a largura do contêiner */
  height: auto;    /* Mantém a proporção da imagem */
  display: block;  /* Remove espaço extra abaixo da imagem */
}
.banner-hero {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Y2l0eSUyMGJhbm5lcnxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}