:root {
    --gold: #d4af37;
    --dark-gold: #aa892e;
    --bg-black: #0a0a0a;
    --card-bg: #161616;
    --text-gray: #b0b0b0;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: var(--white);
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Hero */
.hero-section {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(10,10,10,1)), url('sua-imagem-hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-family: 'Rye', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
}

/* Navegação */
nav {
    background: rgba(22, 22, 22, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--gold);
}

/* Seções e Cards */
h2 {
    font-family: 'Rye', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin: 50px 0 30px;
    text-align: center;
}

.grid-destilarias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #222;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

/* Bloco de Informação e Comparação */
.info-block {
    background: #111;
    padding: 60px;
    border-radius: 20px;
    margin: 60px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.comp-item {
    padding: 30px;
    border-left: 3px solid var(--gold);
    background: #161616;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
}

/* Seção Galeria de Rótulos */
.whisky-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 80px;
}

.whisky-card {
    background: #1c1c1c;
    width: 320px;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    border: 1px solid #333;
    transition: var(--transition);
}

.whisky-card:hover {
    border-color: var(--gold);
    background: #222;
}

.whisky-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.whisky-img {
    height: 220px;
    width: auto;
    margin: 20px 0;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.whisky-card:hover .whisky-img {
    transform: scale(1.1);
}

.whisky-info h3 {
    font-family: 'Inter', sans-serif; /* Título do card mais moderno */
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--white);
}

.whisky-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    min-height: 45px;
}

.tasting-notes {
    text-align: left;
    background: #111;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.note {
    margin-bottom: 5px;
    color: var(--text-gray);
}

.note span {
    color: var(--gold);
    font-weight: bold;
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
}
/* Seção de Contato */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-black), #111);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text h2 {
    text-align: left;
    margin-top: 0;
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .contact-text h2 { text-align: center; }
}
/* Customização para a página EUA */
.hero-eua {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(10,10,10,1)), url('sua-imagem-eua.jpg') center/cover;
}

/* Opcional: Um toque de "cobre" para as bordas dos EUA, lembrando os alambiques americanos */
#eua .whisky-card:hover {
    border-color: #cd7f32; /* Cor de cobre */
}
/* Customização para a página Escócia */
.hero-escocia {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(10,10,10,1)), url(' Highlands-Scotland.jpg') center/cover;
}

.regions-info {
    margin: 80px 0;
}

#escocia .comp-item:hover {
    border-color: #4682b4; /* Azul escocês para os destaques */
    background: #1a1a1a;
}
/*  */
/* Ajuste para 5 regiões na Escócia */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.highlight-region {
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.05); /* Um leve destaque dourado no fundo */
}

/* No mobile, todos ocupam 100% */
@media (max-width: 768px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }
}
/* Customização para a página Irlanda */
.hero-irlanda {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(10,10,10,1)), url('ireland-landscape.jpg') center/cover;
}

#irlanda .whisky-card:hover {
    border-color: #006400; /* Verde esmeralda para a Irlanda */
    box-shadow: 0 0 15px rgba(0, 100, 0, 0.3);
}

#irlanda .btn-submit:hover {
    background: #006400;
    color: var(--white);
}
/* Home Estilo */
.hero-main {
    height: 100vh; /* Ocupa a tela inteira no início */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(10,10,10,1)), url('whisky-hero-home.jpg') center/cover;
}

.btn-main {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-main:hover {
    background: var(--white);
    transform: scale(1.05);
}

.intro-main {
    text-align: center;
    padding: 80px 0 40px;
}

/* Grid de Nações */
.nations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
}

.nation-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.nation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.nation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    z-index: 1;
}

.nation-content {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.nation-content h3 {
    font-family: 'Rye', cursive;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.nation-content p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.3;
}

.nation-card:hover {
    transform: translateY(-10px);
}

.nation-card:hover img {
    transform: scale(1.1);
}

/* Quote Section */
.quote-section {
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid #222;
}

blockquote {
    font-family: 'Rye', cursive;
    font-size: 2.5rem;
    color: #333; /* Texto discreto no fundo */
}

cite {
    display: block;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--gold);
    margin-top: 10px;
}
/* Estilo da Página de Agradecimento */
#agradecimento {
    background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-container {
    max-width: 600px;
    padding: 40px;
}

.glass-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

#agradecimento h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

#agradecimento h2 {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: none;
}

#agradecimento p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.return-links p {
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-secondary {
    padding: 12px 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold);
    color: #000;
}

.footer-fixed {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: #333;
}
/* Customização para a página Brasil */
.hero-brasil {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(10,10,10,1)), url('brasil-distillery-landscape.jpg') center/cover;
}

#brasil .whisky-card:hover {
    border-color: #228b22; /* Verde floresta para o Brasil */
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.3);
}

#brasil .btn-submit:hover {
    background: #228b22;
    color: var(--white);
}