/* Pousada Modernização - Design CSS */

:root {
    --pousada-primary: #202533;
    --pousada-accent: #af271d;
}

/* Tipografia */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Hero Section */
.et_pb_section_0,
.et_pb_section.et_pb_fullwidth_section {
    background: linear-gradient(135deg, #202533 0%, #1a1f2e 100%);
    color: white;
}

.et_pb_section_0 .et_pb_text_inner,
.et_pb_section_0 h1,
.et_pb_section_0 h2,
.et_pb_section_0 p {
    color: white;
}

/* Botões - Estilo moderno */
.et_pb_button,
button,
input[type='button'],
input[type='submit'],
.button,
a.button {
    background-color: #af271d;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.et_pb_button:hover,
button:hover,
input[type='button']:hover,
input[type='submit']:hover,
.button:hover,
a.button:hover {
    background-color: #8a1f16;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(175, 39, 29, 0.3);
}

.et_pb_button:active,
button:active,
input[type='button']:active,
input[type='submit']:active {
    transform: translateY(0);
}

/* Links */
a {
    color: #af271d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8a1f16;
    text-decoration: underline;
}

/* Cabeçalho */
#main-header,
header {
    background-color: #202533;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#main-header a,
header a {
    color: white;
    transition: color 0.3s ease;
}

#main-header a:hover,
header a:hover {
    color: #af271d;
}

#main-header nav a,
header nav a {
    font-weight: 500;
    font-size: 14px;
}

/* Menu */
.menu,
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li,
nav ul li {
    display: inline-block;
    margin-right: 20px;
}

.menu a,
nav a {
    display: block;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.menu a:hover,
nav a:hover {
    border-bottom-color: #af271d;
}

/* Seções */
.et_pb_section {
    padding: 60px 0;
}

.et_pb_section:nth-child(even) {
    background-color: #f9f9f9;
}

.et_pb_section:nth-child(odd) {
    background-color: white;
}

/* Cards */
.et_pb_box,
.card,
.box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #af271d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.et_pb_box:hover,
.card:hover,
.box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Texto */
.et_pb_text_inner {
    color: #333;
}

.et_pb_text_inner h2,
.et_pb_text_inner h3 {
    color: #202533;
    margin-bottom: 15px;
}

/* Rodapé */
footer,
.footer {
    background-color: #202533;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

footer a,
.footer a {
    color: #af271d;
}

footer a:hover,
.footer a:hover {
    color: #ff6b6b;
}

footer p {
    color: #ccc;
    margin-bottom: 10px;
}

/* Destaques */
.accent-color {
    color: #af271d;
}

.bg-primary {
    background-color: #202533;
    color: white;
}

.bg-accent {
    background-color: #af271d;
    color: white;
}

.text-primary {
    color: #202533;
}

.text-accent {
    color: #af271d;
}

/* Imagens */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Tabelas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th {
    background-color: #202533;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

table tr:hover {
    background-color: #f9f9f9;
}

/* Formulários */
input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='number']:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #af271d;
    box-shadow: 0 0 0 3px rgba(175, 39, 29, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .et_pb_section {
        padding: 40px 0;
    }
    
    .menu li,
    nav ul li {
        margin-right: 10px;
    }
    
    .et_pb_button,
    button,
    input[type='button'],
    input[type='submit'] {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Animações suaves */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Classe para elementos modernizados */
.pousada-modernizado {
    /* Espaço para estilos adicionais */
}
