/* ========================================
   DESIGN PHILOSOPHY: Minimalismo Moderno com Toque Orgânico
   - Espaço em branco generoso
   - Tipografia elegante como protagonista
   - Elementos naturais sutis
   - Paleta restrita mas impactante
   ======================================== */

/* ========================================
   VARIÁVEIS DE COR - Manual de Marca
   ======================================== */
:root {
    --color-branco: #FFFFFE;
    --color-terracota: #5C6232;
    --color-marrom: #5C6232;
    --color-preto: #000000;
    --color-verde: #5C6232;
    --color-cinza-claro: #F5F5F5;
    --color-cinza-medio: #E0E0E0;
    --color-cinza-escuro: #999999;
    
    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1rem;
    --spacing-lg: 1rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Tipografia */
    --font-serif: 'EB Garamond', serif;
    --font-display: 'P22 Allyson Pro', serif;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}
hr{
	    margin: 20px;
    color: var(--color-marrom);
}

@font-face {
  font-family: "P22 Allyson Pro";
    src: url("fontes/p22allyson.woff2") format("woff2"),
       url("fontes/p22allyson.woff") format("woff"),
       url("fontes/p22allyson.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "P22 Allyson Pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

h1, h2, h3 {
  font-family: "P22 Allyson Pro" !important;
	 font-weight: 400 !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    color: var(--color-preto);
    background-color: var(--color-branco);
    line-height: 1.8;
    font-size: 16px;
}
.tip-card img{
	max-width: 100%;
	height: 200px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.container-text-info{
	margin: auto;
	width: 100%;
	max-width: 600px;
	text-align: center;
	margin-top: 20px;
}
.hero-video__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* “corta” para preencher sem distorcer */
  object-position: center;
  z-index: -1;
  transform: translateZ(0); /* ajuda performance em alguns browsers */
}


/* ========================================
   TIPOGRAFIA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-lg);
    color: var(--color-verde);
}

h3 {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-verde);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.8;
}

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

a:hover {
    color: var(--color-marrom);
    text-decoration: underline;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-branco);
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-preto);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
	max-width: 500px;
}
.hero-title img{
	max-width: 100%;
}
.ampersand {
    display: inline-block;
    font-size: 3rem;
    color: var(--color-terracota);
    margin: 0 var(--spacing-sm);
}

.hero-date {
   
    margin-bottom: var(--spacing-sm);
     font-size: 2rem;
    letter-spacing: 0.05em;
	color: #fff;
	font-family: var(--font-serif) !important;
}

.hero-location {
    font-size: 2rem;
    letter-spacing: 0.05em;
   color: #fff;
	font-family: var(--font-serif)  !important;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
	color: #fff;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: #FFF;
}

/* ========================================
   WELCOME SECTION
   ======================================== */
.welcome {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-branco);
	background: url("img/watercolor-paper-texture.png") repeat;
}

.welcome h2 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--color-verde);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.welcome-text h3 {
    color: var(--color-marrom);
    margin-bottom: var(--spacing-md);
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
	   color: var(--color-marrom);
}

.intro-text {
    color: var(--color-marrom);
	    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: var(--spacing-md);
    font-style: normal !important;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.8s ease-out;
}

/* ========================================
   CEREMONY SECTION COM PARALLAX
   ======================================== */
.ceremony-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ceremony-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.ceremony-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.ceremony-overlay {
    position: relative;
    z-index: 2;
    padding: var(--spacing-2xl) 0;
    width: 100%;
}

.ceremony-overlay h2 {
    text-align: center;
    color: #5C6232;
    margin-bottom: var(--spacing-2xl);
}

.ceremony-details {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.detail-card {
      text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--color-cinza-claro);
    border-radius: 8px;
    background: url(img/watercolor-paper-texture.png) repeat;
    max-width: 600px;
    margin: auto;
    width: 100%;
    padding: 30px;
}

.detail-card h3 {
    color: var(--color-verde);
    margin-bottom: 0;
}

.detail-card p {
	color: var(--color-verde);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.detail-card small {
	color: var(--color-verde);
    font-size: 0.9rem;
}

.ceremony-note {
    text-align: center;
    font-size: 1.1rem;
    color: #FFF;
    font-style: italic;
}

/* ========================================
   DRESS CODE SECTION
   ======================================== */
.dress-code {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-cinza-claro);
	background: url("img/watercolor-paper-texture.png") repeat;
}

.dress-code h2 {
    text-align: center;
    color: var(--color-verde);
    margin-bottom: var(--spacing-2xl);
}

.dress-code-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.dress-code-text {
    padding: var(--spacing-lg);
}

.dress-code-main {
    font-size: 1.5rem;
    color: var(--color-terracota);
    margin-bottom: var(--spacing-md);
}

.dress-code-text ul {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.dress-code-text li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

/*.dress-code-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-terracota);
    font-weight: bold;
}*/

.dress-code-closing {
    margin-top: var(--spacing-lg);
    font-style: italic;
    color: var(--color-marrom);
}

.dress-code-birds {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dresscode {
  border: 10px solid transparent;   /* borda transparente (espaço) */
  outline: 1px solid var(--color-verde);       /* borda verde externa */
  outline-offset: 0;               /* encosta na borda transparente */
	width: 100%;
	max-width: 300px;
}

.bird-decoration {
    max-width: 100%;
    height: auto;
    
}

/* ========================================
   HOW TO ARRIVE SECTION
   ======================================== */
.how-to-arrive {
	background-size: cover;
    padding: var(--spacing-2xl) 0;
	position: relative;
	background: url("img/bg4.jpg");
	background-size: cover;
}
#botaoconfirma{
	padding: 10px;
	width: 100%;
	text-align: center;
	position: fixed;
	bottom: 0px;
	right: 0px;
	z-index: 1000;
	background: url("img/watercolor-paper-texture.png");
}
.how-to-arrive h2 {
    text-align: center;
	color: #5C6232;
    margin-bottom: var(--spacing-2xl);
}
.arrival-content {
    display: grid;
    gap: var(--spacing-lg);
}

.arrival-card {
	margin: auto;
	max-width: 600px;
	padding: 30px;
	width: 100%;
    padding: var(--spacing-lg);
    background-color: var(--color-cinza-claro);
    border-left: 4px solid var(--color-terracota);
    border-radius: 4px;
    text-align: center;
	background: url(img/watercolor-paper-texture.png) repeat;
}

.arrival-card h3 {
    color: var(--color-terracota);
    margin-bottom: var(--spacing-sm);
}

.arrival-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   ACCOMMODATION SECTION
   ======================================== */
.accommodation {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-cinza-claro);
	background: url("img/watercolor-paper-texture.png") repeat;
}

.accommodation h2 {
    text-align: center;
    color: var(--color-verde);
    margin-bottom: var(--spacing-lg);
}

.accommodation-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.accommodation-card {
    padding: var(--spacing-lg);
    background-color: var(--color-branco);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.accommodation-card h3 {
    color: var(--color-terracota);
    margin-bottom: var(--spacing-sm);
}

.accommodation-card p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.accommodation-card .phone {
    font-weight: 600;
    color: var(--color-marrom);
}

/* ========================================
   SCHEDULE SECTION
   ======================================== */
.schedule {
    padding: var(--spacing-2xl) 0;
	background: url("img/santabarbara2.png");
	background-size: cover;
}

.schedule h2 {
    text-align: center;
	color: #fff;
    margin-bottom: var(--spacing-lg);
}

.schedule-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
	color: #fff;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.schedule-card {
    padding: var(--spacing-lg);
    background-color: var(--color-cinza-claro);
    border-radius: 8px;
    border-top: 4px solid var(--color-terracota);
    text-align: center;
	background: url("img/watercolor-paper-texture.png") repeat;
}

.schedule-day {
    display: inline-block;
    background-color: var(--color-terracota);
    color: var(--color-branco);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.schedule-card h3 {
    color: var(--color-marrom);
    margin-bottom: var(--spacing-sm);
}

.schedule-time {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-terracota);
    margin-bottom: var(--spacing-sm);
}

.schedule-location {
    color: var(--color-cinza-escuro);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.schedule-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   TIPS SECTION
   ======================================== */
.tips {
    padding: var(--spacing-2xl) 0;
	padding-bottom: 0;
    background-color: var(--color-cinza-claro);
    position: relative;
	background: url("img/watercolor-paper-texture.png") repeat;
    overflow: hidden;
}

.tips h2 {
    text-align: center;
    color: var(--color-verde);
    margin-bottom: var(--spacing-lg);
}

.gallery h2 {
    text-align: center;
    color: var(--color-verde);
    margin-bottom: var(--spacing-2xl);
}

.tips-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.tip-card {
    padding: var(--spacing-lg);
    background-color: var(--color-branco);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.tip-card h3 {
    color: var(--color-terracota);
    margin-bottom: var(--spacing-sm);
}

.tip-note {
    font-size: 0.85rem;
    color: var(--color-cinza-escuro);
    font-style: italic;
}

.flowers-decoration {
    position: relative;
    height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: var(--spacing-2xl);
}

.flower-1, .flower-2 {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
}

.flower-1 {
    animation: float 4s ease-in-out infinite;
}

.flower-2 {
    animation: float 4s ease-in-out infinite 0.5s;
}

/* ========================================
   GIFTS SECTION
   ======================================== */
.gifts {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-cinza-claro);
    background: url("img/watercolor-paper-texture.png") repeat;
	    padding-top: 0;
}

.gifts h2 {
    text-align: center;
    color: var(--color-verde);
    margin-bottom: var(--spacing-lg);
}

.gifts-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gifts-link-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gifts-button {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--color-verde);
    color: var(--color-branco);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.gifts-button:hover {
    background-color: #4a7030;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--color-branco);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-branco);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--color-marrom);
    color: var(--color-branco);
    padding: var(--spacing-2xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--color-branco);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 254, 0.2);
    padding-top: var(--spacing-lg);
    text-align: center;
    font-size: 0.9rem;
}
	.detail-card h3, .tips h3, .accommodation-card h3, .arrival-card h3{
		font-family:  var(--font-serif) !important;
        letter-spacing: 5px;
        text-transform: uppercase;
        font-size: 12px !important;
        margin-top: 11px;
	}
/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .ampersand {
        font-size: 2rem;
    }
    
    .welcome-content,
    .dress-code-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .ceremony-details,
    .arrival-content {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    h1 {
        font-size: 6rem;
    }
    
    h2 {
        font-size: 5rem;
    }
	h3 {
        font-size: 3.5rem;
    }
	.detail-card h3, .tips h3, .accommodation-card h3, .arrival-card h3{
		font-family:  var(--font-serif) !important;
        letter-spacing: 5px;
        text-transform: uppercase;
        font-size: 12px !important;
        margin-top: 11px;
	}
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-date {
        font-size: 1rem;
    }
	.hero-location {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.95rem;
    }
	.welcome-text{
		text-align: center;
	}
	.dresscode{
		margin: auto;
	}
	.footer{
		text-align: center;
	}
}
.wrap{
  background:#666;           /* só pra você ver o “vazado” */
  padding:60px;
}

.ticket{
  --r: 26px;                 /* raio do recorte */
  width: 420px;
  padding: 40px;
  background: #fff;
  border: 2px solid #fff;    /* opcional */
  box-shadow: 0 14px 30px rgba(0,0,0,.25);

  /* recortes nos 4 cantos */
  -webkit-mask:
    radial-gradient(var(--r) at 0 0,      transparent 99%, #000 100%) 0   0/50% 50% no-repeat,
    radial-gradient(var(--r) at 100% 0,   transparent 99%, #000 100%) 100% 0/50% 50% no-repeat,
    radial-gradient(var(--r) at 0 100%,   transparent 99%, #000 100%) 0 100%/50% 50% no-repeat,
    radial-gradient(var(--r) at 100% 100%,transparent 99%, #000 100%) 100% 100%/50% 50% no-repeat,
    linear-gradient(#000 0 0);

  mask:
    radial-gradient(var(--r) at 0 0,      transparent 99%, #000 100%) 0   0/50% 50% no-repeat,
    radial-gradient(var(--r) at 100% 0,   transparent 99%, #000 100%) 100% 0/50% 50% no-repeat,
    radial-gradient(var(--r) at 0 100%,   transparent 99%, #000 100%) 0 100%/50% 50% no-repeat,
    radial-gradient(var(--r) at 100% 100%,transparent 99%, #000 100%) 100% 100%/50% 50% no-repeat,
    linear-gradient(#000 0 0);
}

.p-normal{
	font-size: 15px !important;
	color: #000 !important;
}
.p-branco{
	color: #FFF !important;	
}