/* modelos.css */
.modelo-page {
    padding-top: 120px;
}

/* Banner de Ilustração */
.modelo-illustration-banner {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-bottom: 3px solid #ffc107;
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.modelo-illustration-banner p {
    color: #856404;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modelo-illustration-banner i {
    font-size: 1.3rem;
}

.modelo-header {
    background: linear-gradient(135deg, #002344 0%, #1a3a52 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.modelo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(149, 124, 61, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(149, 124, 61, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.modelo-header > * {
    position: relative;
    z-index: 1;
}

.modelo-header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.modelo-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

.modelo-preview {
    max-width: 1200px;
    margin: 0 auto 100px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.features-section {
    margin: 80px 0 !important;
    padding: 60px 0 !important;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #002344;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.feature-item i {
    font-size: 3rem;
    color: #957c3d;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #002344;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-modelo {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #002344 0%, #1a3a52 100%);
    color: white;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.cta-modelo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(149, 124, 61, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(149, 124, 61, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-modelo > * {
    position: relative;
    z-index: 1;
}

.cta-modelo h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-modelo p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Preview Section Styles */
.preview-container {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 80px 40px;
    border-radius: 15px;
}

.preview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.preview-title {
    font-size: 2.2rem;
    color: #002344;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.preview-description {
    font-size: 1.1rem;
    color: #718096;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.preview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.preview-feature {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.preview-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #957c3d;
}

.preview-feature i {
    font-size: 2.5rem;
    color: #957c3d;
    margin-bottom: 20px;
    display: block;
}

.preview-feature h4 {
    font-size: 1.2rem;
    color: #002344;
    margin-bottom: 12px;
    font-weight: 600;
}

.preview-feature p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Menu Preview Section */
.menu-preview-section {
    padding: 80px 0;
    background: white;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-category {
    padding: 12px 25px;
    background: #f8fafc;
    border-radius: 30px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #002344;
}

.menu-category:hover {
    border-color: #957c3d;
    background: #f0f7ff;
}

.menu-category.active {
    background: #957c3d;
    color: white;
    border-color: #957c3d;
    box-shadow: 0 10px 25px rgba(149, 124, 61, 0.2);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.menu-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #957c3d;
}

.menu-item-image {
    height: 180px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-item-image i {
    font-size: 3.5rem;
    color: #957c3d;
    opacity: 0.8;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.menu-item-title {
    font-size: 1.3rem;
    color: #002344;
    font-weight: 600;
    max-width: 70%;
}

.menu-item-price {
    font-size: 1.4rem;
    color: #957c3d;
    font-weight: 700;
}

.menu-item-desc {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Reservation Widget */
.reservation-widget {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin: 80px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reservation-title {
    text-align: center;
    font-size: 2.2rem;
    color: #002344;
    margin-bottom: 40px;
    font-weight: 700;
}

.reservation-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.reservation-input {
    display: flex;
}

.reservation-input input,
.reservation-input select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.reservation-input input:focus,
.reservation-input select:focus {
    outline: none;
    border-color: #957c3d;
    box-shadow: 0 0 0 3px rgba(149, 124, 61, 0.1);
}

/* Marmoraria Calculator */
.marmoraria-calculator {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.calculator-title {
    text-align: center;
    font-size: 1.5rem;
    color: #002344;
    margin-bottom: 30px;
    font-weight: 600;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.calculator-input {
    display: flex;
    flex-direction: column;
}

.calculator-input label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #002344;
    font-size: 0.95rem;
}

.calculator-input input,
.calculator-input select {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.calculator-input input:focus,
.calculator-input select:focus {
    outline: none;
    border-color: #957c3d;
    box-shadow: 0 0 0 3px rgba(149, 124, 61, 0.1);
}

.calculator-result {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #957c3d;
    text-align: center;
    color: #002344;
    font-weight: 600;
}

/* Button Alignment */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.btn-outline {
    color: #002344;
    border: 2px solid #002344;
    background: white;
}

.btn.btn-outline:hover {
    background: #002344;
    color: white;
}

.btn.btn-primary {
    background: #957c3d;
    color: white;
    border: 2px solid #957c3d;
}

.btn.btn-primary:hover {
    background: #7a5f2f;
    border-color: #7a5f2f;
}

/* Card Alignment */
.portfolio-item,
.service-card,
.menu-item-card,
.feature-item,
.preview-feature {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-content,
.service-card,
.menu-item-content,
.feature-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-content .btn,
.menu-item-content .btn {
    margin-top: auto;
    align-self: stretch;
}

.service-card .btn {
    margin-top: auto;
    align-self: stretch;
}