/* ================================================
   CARMINATI FELINOS - ESTILOS PRINCIPAIS
   Paleta: Bordô #8C1414 aplicado de forma elegante
   ================================================ */

:root {
    /* Cores Primárias (Bordô institucional) */
    --primary: #8C1414;
    --primary-dark: #6B0F0F;
    --primary-light: #B01A1A;

    /* Bordô elegante - paleta completa */
    --rose: #F5E5E5;
    --rose-lighter: #FAF0F0;
    --rose-light: #FDF8F8;
    --rose-medium: #D4A0A0;
    --rose-dark: #B85555;
    --rose-accent: #8C1414;

    /* Dourado suave - cor de apoio */
    --green: #8C6B14;
    --green-light: #A88019;

    /* Cores de status */
    --secondary: #5C6BC0;
    --accent: #FF7043;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #8C1414;
    --info: #5BA4CF;

    /* Tons neutros (60%) */
    --white: #FFFFFF;
    --off-white: #FDF8F8;
    --light: #FAFAFA;
    --dark: #2D2A2B;

    /* Escala de cinzas */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #4A4A4A;
    --gray-900: #212121;

    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Sombras suaves */
    --shadow-sm: 0 1px 2px rgba(45, 42, 43, 0.04);
    --shadow: 0 2px 8px rgba(45, 42, 43, 0.06), 0 1px 2px rgba(45, 42, 43, 0.04);
    --shadow-md: 0 4px 12px rgba(45, 42, 43, 0.08), 0 2px 4px rgba(45, 42, 43, 0.04);
    --shadow-lg: 0 12px 24px rgba(45, 42, 43, 0.1), 0 4px 8px rgba(45, 42, 43, 0.04);
    --shadow-rose: 0 4px 12px rgba(254, 224, 234, 0.5);

    /* Bordas */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transições */
    --transition: all 0.25s ease;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ================================================
   SITE INSTITUCIONAL
   ================================================ */

/* Header Bar - Logo e Menu */
.site-header {
    margin-bottom: 100px;
}

.header-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-bar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-bar .main-nav a {
    color: var(--white);
}

.header-bar .main-nav a:hover,
.header-bar .main-nav a.active {
    color: var(--white);
    opacity: 0.8;
}

.logo-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.logo-header {
    height: 100px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.logo-header:hover {
    transform: scale(1.05);
}

/* Barra Superior Persiana */
.top-bar {
    display: flex;
    width: 100%;
    height: 8px;
    position: relative;
    z-index: 1001;
}

.top-bar-stripe {
    flex: 1;
    height: 100%;
}

.top-bar-stripe:nth-child(1) {
    background: #6B0F0F;
}

.top-bar-stripe:nth-child(2) {
    background: #8C1414;
}

.top-bar-stripe:nth-child(3) {
    background: #B01A1A;
}

/* Header */
.site-header {
    background: var(--off-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top a {
    color: var(--white);
    opacity: 0.9;
}

.header-top a:hover {
    opacity: 1;
    color: var(--white);
}

.header-main {
    padding: 20px 0;
    background: var(--off-white);
    position: relative;
}

.header-main > .container {
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 80px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Logo Flutuante */
.logo-floating {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.logo-floating img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
    background: #F5E5E5;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid var(--rose-medium);
    transition: var(--transition);
}

.logo-floating:hover img {
    transform: scale(1.05);
    border-color: var(--rose-medium);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2));
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-500);
}

/* Navigation */
.main-nav {
    display: inline-block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-medium), var(--rose-dark));
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--rose-dark);
}

/* Hero Section */
.hero {
    background-color: #F5E5E5;
    color: var(--primary-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(254, 224, 234, 0.6) 0%, rgba(245, 183, 199, 0.65) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 2;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    z-index: 2;
}

.carousel-slides {
    position: relative;
    min-height: 120px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(199, 107, 135, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot:hover {
    background: rgba(199, 107, 135, 0.7);
}

.carousel-dots .dot.active {
    background: var(--primary-dark);
    transform: scale(1.2);
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(255,255,255,0.5);
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.hero p {
    font-size: 20px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--rose-dark);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(232, 154, 175, 0.3);
}

.btn-primary:hover {
    background: #8C1414;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 154, 175, 0.4);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(46, 125, 90, 0.25);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--rose-medium);
    color: #C96A82;
}

.btn-outline:hover {
    background: var(--rose-light);
    border-color: var(--rose-dark);
}

.btn-outline-white {
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
}

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

.btn-rose {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(199, 107, 135, 0.4);
    font-weight: 600;
}

.btn-rose:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 107, 135, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1DA851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-info {
    background: var(--info);
    color: var(--white);
}

.btn-info:hover {
    background: #4A93BE;
    color: var(--white);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #43A047;
    color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: #D64D5D;
    color: var(--white);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--rose);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-medium);
}

.card-body {
    padding: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-800);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-800);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-medium), var(--rose-dark));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
}

.service-card:hover {
    background: var(--rose-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
    border: 2px solid var(--gray-200);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--rose-light);
    border-color: var(--rose-medium);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #A85670 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-medium), var(--rose-dark));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* ================================================
   SISTEMA ADMINISTRATIVO
   ================================================ */

/* Login */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--rose-light) 100%);
    padding: 20px;
}

.login-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    height: 120px;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: var(--gray-800);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 130, 155, 0.15);
    background: var(--white);
}

.form-control:hover:not(:focus) {
    border-color: var(--gray-400);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(232, 90, 107, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236C757D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

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

/* Admin Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #A85670 100%);
    color: var(--white);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.sidebar-logo img {
    height: 40px;
}

.sidebar-menu {
    padding: 20px 0;
}

.menu-section {
    padding: 0 20px;
    margin-bottom: 20px;
}

.menu-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-400);
    border-radius: var(--radius);
    margin: 2px 10px;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.menu-item.active {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.menu-item i {
    width: 20px;
    text-align: center;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
    background: var(--light);
}

/* Top Header */
.top-header {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--gray-200);
}

.page-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Content Area */
.content-area {
    padding: 30px;
}

/* Panels */
.panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.panel-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    color: var(--primary);
}

.panel-body {
    padding: 24px;
}

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

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.primary {
    background: rgba(217, 130, 155, 0.15);
    color: var(--primary);
}

.stat-icon.info {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: var(--info);
}

.stat-icon.warning {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    color: #F9A825;
}

.stat-icon.danger {
    background: rgba(232, 90, 107, 0.1);
    color: var(--danger);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-800);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Tables */
.table-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.table-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.table-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: var(--gray-100);
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--gray-200);
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.data-table tr:hover {
    background: var(--gray-50);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.badge-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    color: #2E7D32;
}

.badge-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.2) 100%);
    color: #F57F17;
}

.badge-danger {
    background: rgba(232, 90, 107, 0.1);
    color: var(--danger);
}

.badge-info {
    background: linear-gradient(135deg, rgba(91, 164, 207, 0.1) 0%, rgba(91, 164, 207, 0.15) 100%);
    color: #1976D2;
}

.badge-secondary {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* Action Buttons */
.btn-action {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-100);
    color: var(--gray-600);
}

.btn-action:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-action.danger:hover {
    background: var(--danger);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(76, 175, 80, 0.12) 100%);
    color: #2E7D32;
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: linear-gradient(135deg, var(--rose-lighter) 0%, var(--rose-light) 100%);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.15) 100%);
    color: #F57F17;
    border-left: 4px solid var(--warning);
}

.alert-info {
    background: linear-gradient(135deg, rgba(91, 164, 207, 0.08) 0%, rgba(91, 164, 207, 0.12) 100%);
    color: #1976D2;
    border-left: 4px solid var(--info);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 48px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.empty-state h3 {
    color: var(--gray-700);
    margin-bottom: 8px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* Special Sections */
.section-rose {
    background: var(--rose-light);
}

.section-white {
    background: var(--white);
}

.section-soft {
    background: var(--off-white);
}

.section-light {
    background: var(--light);
}

/* Cat Friendly Section */
.cat-friendly-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--rose-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Highlight Box */
.highlight-box {
    background: var(--rose-light);
    border: 1px solid var(--rose-medium);
    border-radius: var(--radius-lg);
    padding: 24px;
}

/* Feature List */
.feature-check {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-check i {
    color: var(--green);
    font-size: 18px;
    margin-top: 2px;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-medium), transparent);
    margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Print Styles */
@media print {
    .sidebar,
    .top-header,
    .btn,
    .btn-action {
        display: none !important;
    }

    .main-content {
        margin-left: 0;
    }

    .content-area {
        padding: 0;
    }
}

/* ================================================
   ESTILOS RESPONSIVOS COMPLETOS
   ================================================ */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-700);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .logo-floating img {
        width: 120px;
        height: 120px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    /* Mobile Menu Toggle - mostrar */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Header Mobile */
    .header-top {
        padding: 8px 0;
        font-size: 12px;
    }

    .header-top .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .header-main {
        padding: 15px 0;
    }

    .header-main > .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    /* Logo Mobile */
    .logo-floating {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }

    .logo-floating img {
        width: 70px;
        height: 70px;
    }

    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--gray-200);
    }

    .main-nav a {
        padding: 15px 10px;
        display: block;
        font-size: 16px;
    }

    .main-nav a::after {
        display: none;
    }

    /* Mobile Menu Overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Mobile Menu Close Button */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--gray-600);
        cursor: pointer;
    }

    /* Hero Mobile */
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 15px;
        padding: 0 10px;
    }

    .carousel-slides {
        min-height: 100px;
    }

    /* Buttons Mobile */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }

    /* Sections Mobile */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site-footer img {
        height: 100px !important;
    }

    .site-footer div[style*="display: flex"] {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 13px;
    }

    /* Cards Mobile */
    .card-body {
        padding: 16px;
    }

    .card-title {
        font-size: 18px;
    }

    /* WhatsApp Button Mobile */
    .btn-whatsapp[style*="position: fixed"] {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    /* Forms Mobile */
    .form-control {
        padding: 10px 14px;
        font-size: 16px; /* Previne zoom no iOS */
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-value {
        font-size: 24px;
    }

    /* Tables Mobile - Horizontal Scroll */
    .table-container {
        overflow-x: auto;
    }

    .data-table {
        min-width: 600px;
    }

    /* Panels Mobile */
    .panel-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .panel-body {
        padding: 16px;
    }

    /* Content Area Mobile */
    .content-area {
        padding: 15px;
    }

    /* Login Mobile */
    .login-box {
        padding: 30px 20px;
        margin: 10px;
    }

    .login-logo img {
        height: 80px;
    }
}

/* Small Mobile (até 480px) */
@media (max-width: 480px) {
    .header-top {
        font-size: 11px;
    }

    .header-top .container > span,
    .header-top .container > a {
        display: block;
        margin: 3px 0;
    }

    .logo-floating img {
        width: 60px;
        height: 60px;
    }

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

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

    .section-title {
        font-size: 22px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .footer-grid {
        gap: 25px;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .alert {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .empty-state {
        padding: 40px 15px;
    }

    .empty-state i {
        font-size: 36px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 26px;
    }

    .main-nav {
        width: 60%;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }

    .card:hover {
        transform: none;
    }

    .btn-action:hover {
        transform: none;
    }

    .main-nav a::after {
        display: none;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-floating img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .site-footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }

    .btn-whatsapp[style*="position: fixed"] {
        bottom: max(15px, env(safe-area-inset-bottom)) !important;
        right: max(15px, env(safe-area-inset-right)) !important;
    }
}
